Home
last modified time | relevance | path

Searched refs:testChar (Results 1 – 11 of 11) 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/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/chromium_org/third_party/WebKit/Source/platform/fonts/android/
DFontCacheAndroidTest.cpp17 const UChar32 testChar = 228; in TEST() local
25 …RefPtr<SimpleFontData> fontData = fontCache->fallbackFontForCharacter(fontDescription, testChar, 0… in TEST()
/external/clang/test/Sema/
Dformat-strings-enum-fixed-type.cpp78 void testChar(CharEnum input) { in testChar() function
/external/chromium_org/net/tools/tld_cleanup/
Dmake_dafsa_unittest.py92 def testChar(self): member in ToDafsaTest
622 def testChar(self): member in EncodePrefixTest
636 def testChar(self): member in EncodeLabelTest
/external/chromium_org/third_party/icu/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/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/guava/guava-tests/test/com/google/common/hash/
DAbstractStreamingHasherTest.java70 public void testChar() { in testChar() method in AbstractStreamingHasherTest
/external/icu/icu4c/source/test/intltest/
Dustrtest.cpp701 UChar testChar = 0x74; in TestSearching() local
761 (startPos = test1.indexOf(testChar, startPos)) != -1 ? (++occurrences, startPos += 1) : 0) in TestSearching()
769 (startPos = test1.indexOf(testChar, startPos)) != -1 ? (++occurrences, startPos += 1) : 0) in TestSearching()
777 …(startPos = test1.indexOf(testChar, startPos, endPos - startPos)) != -1 ? (++occurrences, startPos… in TestSearching()
829 (startPos = test1.lastIndexOf(testChar, 5, startPos - 5)) != -1 ? ++occurrences : 0) in TestSearching()
/external/chromium_org/third_party/icu/source/test/intltest/
Dustrtest.cpp701 UChar testChar = 0x74; in TestSearching() local
761 (startPos = test1.indexOf(testChar, startPos)) != -1 ? (++occurrences, startPos += 1) : 0) in TestSearching()
769 (startPos = test1.indexOf(testChar, startPos)) != -1 ? (++occurrences, startPos += 1) : 0) in TestSearching()
777 …(startPos = test1.indexOf(testChar, startPos, endPos - startPos)) != -1 ? (++occurrences, startPos… in TestSearching()
829 (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