Lines Matching refs:failed

37 …sh Utils::calculateStringHash( const ParserChar** text, const ParserChar* bufferEnd, bool& failed )  in calculateStringHash()  argument
39 failed = false; in calculateStringHash()
46 failed = true; in calculateStringHash()
53 failed = true; in calculateStringHash()
63 failed = true; in calculateStringHash()
150 GeneratedSaxParser::StringHash Utils::calculateStringHash( const ParserChar* text, bool& failed ) in calculateStringHash() argument
152 failed = false; in calculateStringHash()
183 …ntType Utils::toFloatingPoint(const ParserChar** buffer, const ParserChar* bufferEnd, bool& failed) in toFloatingPoint() argument
188 failed = true; in toFloatingPoint()
194 failed = true; in toFloatingPoint()
205 failed = true; in toFloatingPoint()
217 failed = false; in toFloatingPoint()
223 failed = true; in toFloatingPoint()
246 failed = false; in toFloatingPoint()
252 failed = true; in toFloatingPoint()
264 failed = false; in toFloatingPoint()
270 failed = true; in toFloatingPoint()
297 failed = false; in toFloatingPoint()
303 failed = true; in toFloatingPoint()
322 failed = true; in toFloatingPoint()
334 failed = true; in toFloatingPoint()
341 failed = false; in toFloatingPoint()
350 FloatingPointType Utils::toFloatingPoint(const ParserChar* buffer, bool& failed) in toFloatingPoint() argument
355 failed = true; in toFloatingPoint()
361 failed = true; in toFloatingPoint()
371 failed = true; in toFloatingPoint()
381 failed = false; in toFloatingPoint()
386 failed = true; in toFloatingPoint()
408 failed = false; in toFloatingPoint()
413 failed = true; in toFloatingPoint()
423 failed = false; in toFloatingPoint()
448 failed = true; in toFloatingPoint()
453 failed = false; in toFloatingPoint()
471 failed = true; in toFloatingPoint()
482 failed = true; in toFloatingPoint()
488 failed = false; in toFloatingPoint()
495 FloatingPointType Utils::toFloatingPoint(const ParserChar** buffer, bool& failed) in toFloatingPoint() argument
500 failed = true; in toFloatingPoint()
506 failed = true; in toFloatingPoint()
517 failed = true; in toFloatingPoint()
529 failed = false; in toFloatingPoint()
535 failed = true; in toFloatingPoint()
558 failed = false; in toFloatingPoint()
564 failed = true; in toFloatingPoint()
576 failed = false; in toFloatingPoint()
582 failed = true; in toFloatingPoint()
609 failed = false; in toFloatingPoint()
615 failed = true; in toFloatingPoint()
634 failed = true; in toFloatingPoint()
646 failed = true; in toFloatingPoint()
653 failed = false; in toFloatingPoint()
660 float Utils::toFloat( const ParserChar** buffer, const ParserChar* bufferEnd, bool& failed ) in toFloat() argument
662 return toFloatingPoint<float>(buffer, bufferEnd, failed); in toFloat()
667 float Utils::toFloat( const ParserChar* buffer, bool& failed ) in toFloat() argument
669 return toFloatingPoint<float>(buffer, failed); in toFloat()
674 float Utils::toFloat( const ParserChar** buffer, bool& failed ) in toFloat() argument
676 return toFloatingPoint<float>(buffer, failed); in toFloat()
681 double Utils::toDouble( const ParserChar** buffer, const ParserChar* bufferEnd, bool& failed ) in toDouble() argument
683 return toFloatingPoint<double>(buffer, bufferEnd, failed); in toDouble()
688 double Utils::toDouble( const ParserChar* buffer, bool& failed ) in toDouble() argument
690 return toFloatingPoint<double>(buffer, failed); in toDouble()
695 double Utils::toDouble( const ParserChar** buffer, bool& failed ) in toDouble() argument
697 return toFloatingPoint<double>(buffer, failed); in toDouble()
701 …tring Utils::toStringListItem(const ParserChar** buffer, const ParserChar* bufferEnd, bool& failed) in toStringListItem() argument
708 failed = true; in toStringListItem()
714 failed = true; in toStringListItem()
725 failed = true; in toStringListItem()
738 failed = false; in toStringListItem()
744 failed = true; in toStringListItem()
768 failed = false; in toStringListItem()
773 failed = true; in toStringListItem()
782 ParserString Utils::toStringListItem(const ParserChar** buffer, bool& failed) in toStringListItem() argument
789 failed = true; in toStringListItem()
795 failed = true; in toStringListItem()
806 failed = true; in toStringListItem()
819 failed = false; in toStringListItem()
825 failed = true; in toStringListItem()
849 failed = false; in toStringListItem()
854 failed = true; in toStringListItem()
864 … COLLADABU::URI Utils::toURI(const ParserChar** buffer, const ParserChar* bufferEnd, bool& failed) in toURI() argument
868 failed = false; in toURI()
871 const ParserString& string = toStringListItem(buffer, bufferEnd, failed); in toURI()
881 COLLADABU::URI Utils::toURI(const ParserChar** buffer, bool& failed) in toURI() argument
885 failed = false; in toURI()
889 const ParserString& string = toStringListItem(buffer, failed); in toURI()
901 IntegerType Utils::toInteger(const ParserChar** buffer, const ParserChar* bufferEnd, bool& failed)
906 failed = true;
912 failed = true;
923 failed = true;
951 failed = false;
960 failed = true;
978 failed = false;
986 failed = true;
995 IntegerType Utils::toInteger(const ParserChar* buffer, bool& failed)
1000 failed = true;
1006 failed = true;
1016 failed = true;
1041 failed = false;
1058 failed = false;
1066 failed = true;
1073 IntegerType Utils::toInteger(const ParserChar** buffer, bool& failed)
1078 failed = true;
1084 failed = true;
1095 failed = true;
1123 failed = false;
1132 failed = true;
1150 failed = false;
1158 failed = true;
1165 sint8 Utils::toSint8( const ParserChar** buffer, const ParserChar* bufferEnd, bool& failed ) in toSint8() argument
1167 return toInteger<sint8, true>(buffer, bufferEnd, failed); in toSint8()
1171 sint8 Utils::toSint8( const ParserChar* buffer, bool& failed ) in toSint8() argument
1173 return toInteger<sint8, true>(buffer, failed); in toSint8()
1177 sint8 Utils::toSint8( const ParserChar** buffer, bool& failed ) in toSint8() argument
1179 return toInteger<sint8, true>(buffer, failed); in toSint8()
1183 uint8 Utils::toUint8( const ParserChar** buffer, const ParserChar* bufferEnd, bool& failed ) in toUint8() argument
1185 return toInteger<uint8, false>(buffer, bufferEnd, failed); in toUint8()
1189 uint8 Utils::toUint8( const ParserChar* buffer, bool& failed ) in toUint8() argument
1191 return toInteger<uint8, false>(buffer, failed); in toUint8()
1195 uint8 Utils::toUint8( const ParserChar** buffer, bool& failed ) in toUint8() argument
1197 return toInteger<uint8, false>(buffer, failed); in toUint8()
1201 sint16 Utils::toSint16( const ParserChar** buffer, const ParserChar* bufferEnd, bool& failed ) in toSint16() argument
1203 return toInteger<sint16, true>(buffer, bufferEnd, failed); in toSint16()
1207 sint16 Utils::toSint16( const ParserChar* buffer, bool& failed ) in toSint16() argument
1209 return toInteger<sint16, true>(buffer, failed); in toSint16()
1213 sint16 Utils::toSint16( const ParserChar** buffer, bool& failed ) in toSint16() argument
1215 return toInteger<sint16, true>(buffer, failed); in toSint16()
1219 uint16 Utils::toUint16( const ParserChar** buffer, const ParserChar* bufferEnd, bool& failed ) in toUint16() argument
1221 return toInteger<uint16, false>(buffer, bufferEnd, failed); in toUint16()
1225 uint16 Utils::toUint16( const ParserChar* buffer, bool& failed ) in toUint16() argument
1227 return toInteger<uint16, false>(buffer, failed); in toUint16()
1231 uint16 Utils::toUint16( const ParserChar** buffer, bool& failed ) in toUint16() argument
1233 return toInteger<uint16, false>(buffer, failed); in toUint16()
1237 sint32 Utils::toSint32( const ParserChar** buffer, const ParserChar* bufferEnd, bool& failed ) in toSint32() argument
1239 return toInteger<sint32, true>(buffer, bufferEnd, failed); in toSint32()
1243 sint32 Utils::toSint32( const ParserChar* buffer, bool& failed ) in toSint32() argument
1245 return toInteger<sint32, true>(buffer, failed); in toSint32()
1249 sint32 Utils::toSint32( const ParserChar** buffer, bool& failed ) in toSint32() argument
1251 return toInteger<sint32, true>(buffer, failed); in toSint32()
1255 uint32 Utils::toUint32( const ParserChar** buffer, const ParserChar* bufferEnd, bool& failed ) in toUint32() argument
1257 return toInteger<uint32, false>(buffer, bufferEnd, failed); in toUint32()
1261 uint32 Utils::toUint32( const ParserChar* buffer, bool& failed ) in toUint32() argument
1263 return toInteger<uint32, false>(buffer, failed); in toUint32()
1267 uint32 Utils::toUint32( const ParserChar** buffer, bool& failed ) in toUint32() argument
1269 return toInteger<uint32, false>(buffer, failed); in toUint32()
1273 sint64 Utils::toSint64( const ParserChar** buffer, const ParserChar* bufferEnd, bool& failed ) in toSint64() argument
1275 return toInteger<sint64, true>(buffer, bufferEnd, failed); in toSint64()
1279 sint64 Utils::toSint64( const ParserChar* buffer, bool& failed ) in toSint64() argument
1281 return toInteger<sint64, true>(buffer, failed); in toSint64()
1285 sint64 Utils::toSint64( const ParserChar** buffer, bool& failed ) in toSint64() argument
1287 return toInteger<sint64, true>(buffer, failed); in toSint64()
1291 uint64 Utils::toUint64( const ParserChar** buffer, const ParserChar* bufferEnd, bool& failed ) in toUint64() argument
1293 return toInteger<uint64, false>(buffer, bufferEnd, failed); in toUint64()
1297 uint64 Utils::toUint64( const ParserChar* buffer, bool& failed ) in toUint64() argument
1299 return toInteger<uint64, false>(buffer, failed); in toUint64()
1303 uint64 Utils::toUint64( const ParserChar** buffer, bool& failed ) in toUint64() argument
1305 return toInteger<uint64, false>(buffer, failed); in toUint64()
1309 bool Utils::toBool( const ParserChar* buffer, bool& failed ) in toBool() argument
1313 failed = false; in toBool()
1319 failed = false; in toBool()
1323 failed = true; in toBool()
1328 bool Utils::toBool( const ParserChar** buffer, const ParserChar* bufferEnd, bool& failed ) in toBool() argument
1333 failed = true; in toBool()
1343 failed = true; in toBool()
1352 failed = false; in toBool()
1358 failed = false; in toBool()
1371 failed = false; in toBool()
1377 failed = true; in toBool()
1388 failed = true; in toBool()
1403 failed = false; in toBool()
1409 failed = true; in toBool()
1420 failed = true; in toBool()
1427 failed = true; in toBool()
1432 bool Utils::toBool( const ParserChar** buffer, bool& failed ) in toBool() argument
1437 failed = true; in toBool()
1447 failed = true; in toBool()
1456 failed = false; in toBool()
1462 failed = false; in toBool()
1475 failed = false; in toBool()
1481 failed = true; in toBool()
1492 failed = true; in toBool()
1507 failed = false; in toBool()
1513 failed = true; in toBool()
1524 failed = true; in toBool()
1531 failed = true; in toBool()