Home
last modified time | relevance | path

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

/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/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.java62 public void testChar() { in testChar() method in AbstractByteHasherTest
DAbstractStreamingHasherTest.java81 public void testChar() { in testChar() method in AbstractStreamingHasherTest
/external/icu/icu4c/source/test/iotest/
Dfiletst.c1516 UChar testChar = 0xBEEF; in TestFileWriteRetval() local
1519 testChar = 0x65; /* 'A' - otherwise read test will fail */ in TestFileWriteRetval()
1535 u_memset(buffer, testChar, expected); in TestFileWriteRetval()
1555 if(gotChar != testChar) { in TestFileWriteRetval()
1556 … log_err("u_fgetc returned unexpected character U+%04X expected U+%04X\n", gotChar, testChar); in TestFileWriteRetval()
/external/icu/icu4c/source/test/intltest/
Dustrtest.cpp699 UChar testChar = 0x74; in TestSearching() local
759 (startPos = test1.indexOf(testChar, startPos)) != -1 ? (++occurrences, startPos += 1) : 0) in TestSearching()
767 (startPos = test1.indexOf(testChar, startPos)) != -1 ? (++occurrences, startPos += 1) : 0) in TestSearching()
775 …(startPos = test1.indexOf(testChar, startPos, endPos - startPos)) != -1 ? (++occurrences, startPos… in TestSearching()
827 (startPos = test1.lastIndexOf(testChar, 5, startPos - 5)) != -1 ? ++occurrences : 0) in TestSearching()
/external/javassist/src/test/test/javassist/convert/
DArrayAccessReplaceTest.java70 public void testChar() throws Exception { in testChar() method in ArrayAccessReplaceTest