Home
last modified time | relevance | path

Searched refs:hasNullByte (Results 1 – 2 of 2) sorted by relevance

/dports/devel/hs-hoogle/hoogle-5.0.18.2/_cabal_deps/foundation-0.0.25/Foundation/VFS/
H A DFilePath.hs169 fromString xs | hasNullByte xs = throw ContainsNullByte
173 hasNullByte :: [Char] -> Bool
174 hasNullByte = Data.List.elem '\0' function
/dports/cad/kicad-devel/kicad-a17a58203b33e08b966075833b177dad5740c236/common/plugins/altium/
H A Daltium_parser.cpp112 bool hasNullByte = m_pos[length - 1] == '\0'; in ReadProperties() local
114 if( !hasNullByte ) in ReadProperties()
122 std::string str = std::string( m_pos, length - ( hasNullByte ? 1 : 0 ) ); in ReadProperties()