Home
last modified time | relevance | path

Searched refs:testChar (Results 1 – 12 of 12) sorted by relevance

/external/apache-xml/src/main/java/org/apache/xml/serializer/utils/
DURI.java415 char testChar = '\0'; in initialize() local
419 testChar = uriSpec.charAt(index); in initialize()
421 if (testChar == '/' || testChar == '?' || testChar == '#') in initialize()
586 char testChar = '\0'; in initializeScheme() local
590 testChar = p_uriSpec.charAt(index); in initializeScheme()
592 if (testChar == ':' || testChar == '/' || testChar == '?' in initializeScheme()
593 || testChar == '#') in initializeScheme()
628 char testChar = '\0'; in initializeAuthority() local
636 testChar = p_uriSpec.charAt(index); in initializeAuthority()
638 if (testChar == '@') in initializeAuthority()
[all …]
/external/apache-xml/src/main/java/org/apache/xml/utils/
DURI.java435 char testChar = '\0'; in initialize() local
439 testChar = uriSpec.charAt(index); in initialize()
441 if (testChar == '/' || testChar == '?' || testChar == '#') in initialize()
606 char testChar = '\0'; in initializeScheme() local
610 testChar = p_uriSpec.charAt(index); in initializeScheme()
612 if (testChar == ':' || testChar == '/' || testChar == '?' in initializeScheme()
613 || testChar == '#') in initializeScheme()
648 char testChar = '\0'; in initializeAuthority() local
656 testChar = p_uriSpec.charAt(index); in initializeAuthority()
658 if (testChar == '@') in initializeAuthority()
[all …]
/external/icu/icu4c/source/test/cintltst/
Dcldrtest.c761 UChar32 testChar; in findStringSetMismatch() local
762 U16_NEXT(string, strIdx, langSize, testChar); in findStringSetMismatch()
763 if (!uset_contains(exemplarSet, testChar) in findStringSetMismatch()
764 …&& testChar != 0x0020 && testChar != 0x00A0 && testChar != 0x002e && testChar != 0x002c && testCha… in findStringSetMismatch()
765 …&& testChar != 0x005B && testChar != 0x005D && testChar != 0x2019 && testChar != 0x0f0b && testCha… in findStringSetMismatch()
766 if (!ignoreNumbers || (ignoreNumbers && (testChar < 0x30 || testChar > 0x39))) { in findStringSetMismatch()
769 *badCharPtr = testChar; in findStringSetMismatch()
/external/clang/test/Sema/
Dformat-strings-enum-fixed-type.cpp78 void testChar(CharEnum input) { in testChar() function
/external/guava/guava-tests/test/com/google/common/hash/
DAbstractByteHasherTest.java61 public void testChar() { in testChar() method in AbstractByteHasherTest
DAbstractStreamingHasherTest.java80 public void testChar() { in testChar() method in AbstractStreamingHasherTest
/external/python/pyasn1/tests/codec/native/
Dtest_encoder.py81 def testChar(self): member in RealEncoderTestCase
/external/icu/icu4c/source/test/iotest/
Dfiletst.c1519 UChar testChar = 0xBEEF; in TestFileWriteRetval() local
1522 testChar = 0x65; /* 'A' - otherwise read test will fail */ in TestFileWriteRetval()
1538 u_memset(buffer, testChar, expected); in TestFileWriteRetval()
1558 if(gotChar != testChar) { in TestFileWriteRetval()
1559 … log_err("u_fgetc returned unexpected character U+%04X expected U+%04X\n", gotChar, testChar); in TestFileWriteRetval()
/external/icu/icu4c/source/test/intltest/
Dustrtest.cpp700 UChar testChar = 0x74; in TestSearching() local
760 (startPos = test1.indexOf(testChar, startPos)) != -1 ? (++occurrences, startPos += 1) : 0) in TestSearching()
768 (startPos = test1.indexOf(testChar, startPos)) != -1 ? (++occurrences, startPos += 1) : 0) in TestSearching()
776 …(startPos = test1.indexOf(testChar, startPos, endPos - startPos)) != -1 ? (++occurrences, startPos… in TestSearching()
828 (startPos = test1.lastIndexOf(testChar, 5, startPos - 5)) != -1 ? ++occurrences : 0) in TestSearching()
/external/python/pyasn1/tests/codec/ber/
Dtest_encoder.py366 def testChar(self): member in RealEncoderTestCase
430 def testChar(self): member in RealEncoderWithSchemaTestCase
Dtest_decoder.py412 def testChar(self): member in RealDecoderTestCase
/external/mockito/src/test/java/org/mockito/internal/matchers/apachecommons/
DEqualsBuilderTest.java324 @Test public void testChar() { in testChar() method in EqualsBuilderTest