/external/hamcrest/hamcrest-library/src/test/java/org/hamcrest/text/ |
IsEmptyStringTest.java | 8 import static org.hamcrest.text.IsEmptyString.emptyString; 14 Matcher<String> matcher = emptyString(); 23 assertMatches(emptyString(), ""); 29 assertDoesNotMatch(emptyString(), null); 34 assertDoesNotMatch(emptyString(), " "); 40 assertDoesNotMatch(emptyString(), "a"); 46 assertDescription("an empty string", emptyString()); 52 assertMismatchDescription("was \"a\"", emptyString(), "a");
|
/device/linaro/bootloader/edk2/QuarkPlatformPkg/Platform/Dxe/Setup/ |
processor.c | 27 CHAR16 EmptyString[] = L" ";
43 AssetTags[Index] = EmptyString;
|
/external/hamcrest/hamcrest-library/src/main/java/org/hamcrest/text/ |
IsEmptyString.java | 36 * @deprecated use is(emptyString()) instead 40 return emptyString(); 46 * <pre>assertThat("", is(emptyString()))</pre> 49 public static Matcher<String> emptyString() {
|
/external/apache-xml/src/main/java/org/apache/xpath/functions/ |
FuncNamespace.java | 66 return XString.EMPTYSTRING; 71 return XString.EMPTYSTRING; 74 return XString.EMPTYSTRING; 76 return ((null == s) ? XString.EMPTYSTRING : new XString(s));
|
FuncLocalPart.java | 49 return XString.EMPTYSTRING; 53 return XString.EMPTYSTRING;
|
FuncQname.java | 54 val = (null == qname) ? XString.EMPTYSTRING : new XString(qname); 58 val = XString.EMPTYSTRING;
|
FuncSystemProperty.java | 90 return XString.EMPTYSTRING; 113 return XString.EMPTYSTRING; 121 return XString.EMPTYSTRING; 141 return XString.EMPTYSTRING; 149 return XString.EMPTYSTRING;
|
FuncSubstringAfter.java | 52 ? XString.EMPTYSTRING
|
FuncSubstringBefore.java | 51 ? XString.EMPTYSTRING : new XString(s1.substring(0, index));
|
/prebuilts/go/darwin-x86/src/syscall/ |
asm_plan9_386.s | 41 LEAL ·emptystring(SB), SI 79 LEAL ·emptystring(SB), SI 146 LEAL ·emptystring(SB), SI
|
asm_plan9_amd64.s | 40 LEAQ ·emptystring(SB), SI 78 LEAQ ·emptystring(SB), SI 144 LEAQ ·emptystring(SB), SI
|
/prebuilts/go/linux-x86/src/syscall/ |
asm_plan9_386.s | 41 LEAL ·emptystring(SB), SI 79 LEAL ·emptystring(SB), SI 146 LEAL ·emptystring(SB), SI
|
asm_plan9_amd64.s | 40 LEAQ ·emptystring(SB), SI 78 LEAQ ·emptystring(SB), SI 144 LEAQ ·emptystring(SB), SI
|
/external/icu/android_icu4j/src/main/tests/android/icu/dev/data/ |
TestDataElements_testtypes.java | 53 "emptystring",
|
/external/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/data/ |
TestDataElements_testtypes.java | 50 "emptystring",
|
/tools/tradefederation/core/tests/src/com/android/tradefed/util/ |
SimplePerfStatResultParserTest.java | 31 String emptyString = ""; 32 List<String> result = SimplePerfStatResultParser.parseSingleLine(emptyString); 95 String emptyString = "\n\n\n\n\n\n"; 96 SimplePerfResult result = SimplePerfStatResultParser.parseRawOutput(emptyString);
|
/external/python/cpython3/Lib/email/ |
base64mime.py | 42 EMPTYSTRING = '' 101 return EMPTYSTRING.join(encvec)
|
/external/apache-xml/src/main/java/org/apache/xml/serializer/ |
SerializerConstants.java | 40 static final String EMPTYSTRING = "";
|
/system/core/libutils/tests/ |
Unicode_test.cpp | 138 char16_t* const emptyString = (char16_t* const)((char*)memptr + alignment - 4); 139 *emptyString = (char16_t)0; 143 ASSERT_EQ(strstr16((char16_t*)memptr, emptyString), (char16_t*)memptr)
|
/device/linaro/bootloader/edk2/EdkCompatibilityPkg/Sample/Tools/Source/StrGather/ |
StringDB.c | 385 STRING_LIST EmptyString;
417 memset (&EmptyString, 0, sizeof (EmptyString));
418 EmptyString.Size = sizeof (ZeroString);
419 EmptyString.Str = ZeroString;
503 EmptyString.Flags = STRING_FLAGS_UNDEFINED;
528 CurrString = &EmptyString;
529 EmptyString.Flags |= StringIdentifier->Flags;
614 EmptyString.LanguageName = Lang->LanguageName;
616 CurrString = &EmptyString;
[all...] |
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/email/ |
feedparser.py | 36 EMPTYSTRING = ''
231 self._cur.set_payload(EMPTYSTRING.join(lines))
296 self._cur.set_payload(EMPTYSTRING.join(lines))
334 self._cur.preamble = EMPTYSTRING.join(preamble)
394 self._cur.set_payload(EMPTYSTRING.join(preamble))
400 self._cur.epilogue = EMPTYSTRING.join(epilogue)
421 self._cur.epilogue = EMPTYSTRING.join(epilogue)
431 self._cur.set_payload(EMPTYSTRING.join(lines))
451 lhdr = EMPTYSTRING.join(lastvalue)[:-1].rstrip('\r\n')
486 self._cur[lastheader] = EMPTYSTRING.join(lastvalue).rstrip('\r\n') [all...] |
/external/python/cpython2/Lib/email/ |
feedparser.py | 36 EMPTYSTRING = '' 252 self._cur.set_payload(EMPTYSTRING.join(lines)) 317 self._cur.set_payload(EMPTYSTRING.join(lines)) 355 self._cur.preamble = EMPTYSTRING.join(preamble) 415 self._cur.set_payload(EMPTYSTRING.join(preamble)) 421 self._cur.epilogue = EMPTYSTRING.join(epilogue) 442 self._cur.epilogue = EMPTYSTRING.join(epilogue) 452 self._cur.set_payload(EMPTYSTRING.join(lines)) 472 lhdr = EMPTYSTRING.join(lastvalue)[:-1].rstrip('\r\n') 507 self._cur[lastheader] = EMPTYSTRING.join(lastvalue).rstrip('\r\n' [all...] |
/prebuilts/gdb/darwin-x86/lib/python2.7/email/ |
feedparser.py | 36 EMPTYSTRING = '' 231 self._cur.set_payload(EMPTYSTRING.join(lines)) 296 self._cur.set_payload(EMPTYSTRING.join(lines)) 334 self._cur.preamble = EMPTYSTRING.join(preamble) 394 self._cur.set_payload(EMPTYSTRING.join(preamble)) 400 self._cur.epilogue = EMPTYSTRING.join(epilogue) 421 self._cur.epilogue = EMPTYSTRING.join(epilogue) 431 self._cur.set_payload(EMPTYSTRING.join(lines)) 451 lhdr = EMPTYSTRING.join(lastvalue)[:-1].rstrip('\r\n') 486 self._cur[lastheader] = EMPTYSTRING.join(lastvalue).rstrip('\r\n' [all...] |
/prebuilts/gdb/linux-x86/lib/python2.7/email/ |
feedparser.py | 36 EMPTYSTRING = '' 231 self._cur.set_payload(EMPTYSTRING.join(lines)) 296 self._cur.set_payload(EMPTYSTRING.join(lines)) 334 self._cur.preamble = EMPTYSTRING.join(preamble) 394 self._cur.set_payload(EMPTYSTRING.join(preamble)) 400 self._cur.epilogue = EMPTYSTRING.join(epilogue) 421 self._cur.epilogue = EMPTYSTRING.join(epilogue) 431 self._cur.set_payload(EMPTYSTRING.join(lines)) 451 lhdr = EMPTYSTRING.join(lastvalue)[:-1].rstrip('\r\n') 486 self._cur[lastheader] = EMPTYSTRING.join(lastvalue).rstrip('\r\n' [all...] |
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/email/ |
feedparser.py | 36 EMPTYSTRING = '' 231 self._cur.set_payload(EMPTYSTRING.join(lines)) 296 self._cur.set_payload(EMPTYSTRING.join(lines)) 334 self._cur.preamble = EMPTYSTRING.join(preamble) 394 self._cur.set_payload(EMPTYSTRING.join(preamble)) 400 self._cur.epilogue = EMPTYSTRING.join(epilogue) 421 self._cur.epilogue = EMPTYSTRING.join(epilogue) 431 self._cur.set_payload(EMPTYSTRING.join(lines)) 451 lhdr = EMPTYSTRING.join(lastvalue)[:-1].rstrip('\r\n') 486 self._cur[lastheader] = EMPTYSTRING.join(lastvalue).rstrip('\r\n' [all...] |