/external/boringssl/src/util/ |
all_tests.go | 26 "strings" 250 if test[0] == "crypto/evp/evp_test" || !strings.HasSuffix(arg, ".txt") { 254 return strings.Join(args, " ") 263 fmt.Printf("%s\n", strings.Join([]string(test), " ")) 289 fmt.Printf("\t%s\n", strings.Join([]string(test), " "))
|
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/asn1/x500/style/ |
IETFUtils.java | 18 import org.bouncycastle.util.Strings; 264 if (Strings.toUpperCase(name).startsWith("OID.")) 273 ASN1ObjectIdentifier oid = (ASN1ObjectIdentifier)lookUp.get(Strings.toLowerCase(name)); 444 String value = Strings.toLowerCase(s); 452 value = Strings.toLowerCase(((ASN1String)obj).getString());
|
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/x509/ |
X509Util.java | 41 import org.bouncycastle.util.Strings; 154 algorithmName = Strings.toUpperCase(algorithmName); 173 algorithmName = Strings.toUpperCase(algorithmName); 330 algorithm = Strings.toUpperCase(algorithm); 393 Implementation imp = getImplementation(baseName, Strings.toUpperCase(algorithm), prov[i]);
|
/external/emma/core/java12/com/vladium/emma/ |
Command.java | 19 import com.vladium.util.Strings; 134 setPropertyOverride (AppLoggers.PROPERTY_VERBOSITY_FILTER, Strings.toListForm (Strings.merge (opt.getValues (), COMMA_DELIMITERS, true), ',')); 266 return Strings.mergeAT (opt.getValues (), delimiters, processAtFiles); 295 protected static final String COMMA_DELIMITERS = "," + Strings.WHITE_SPACE;
|
/external/fonttools/Lib/fontTools/ttLib/tables/ |
_p_o_s_t.py | 257 strings = [] 262 strings.append(tostr(data[index+1:index+1+length], encoding="latin1")) 264 return strings 267 def packPStrings(strings): 269 for s in strings:
|
/external/icu/icu4c/source/common/unicode/ |
usetiter.h | 29 * multicharacter strings of the UnicodeSet, if any. 35 * <p>To iterate over code points and strings, use a loop like this: 43 * consisting of single code points are returned as strings containing 182 * followed by all strings sorted order. Do not mix 201 * order, followed by all strings sorted order. Ranges are
|
utf.h | 34 * in and out of UTF-8/16 strings. 38 * ICU mostly processes 16-bit Unicode strings. 39 * Most of the time, such strings are well-formed UTF-16. 100 * For more information see the ICU User Guide Strings chapter 101 * (http://userguide.icu-project.org/strings).
|
normlzr.h | 38 * - static functions that normalize strings or test if strings are normalized 342 * Concatenate normalized strings, making sure that the result is normalized as well. 344 * If both the left and the right strings are in 377 * Compare two strings for canonical equivalence. 381 * Canonical equivalence between two strings is defined as their normalized 383 * This function compares strings incrementally instead of normalizing 384 * (and optionally case-folding) both strings entirely, 387 * Bulk normalization is only necessary if the strings do not fulfill the FCD 388 * conditions. Only in this case, and only if the strings are relatively long [all...] |
/external/icu/icu4c/source/i18n/ |
reldtfmt.h | 30 // internal structure used for caching strings 216 * Apply the given unlocalized date & time pattern strings to this relative date format. 228 * the various strings and other symbols used in formatting: e.g., month 229 * names and abbreviations, time zone names, AM/PM strings, etc.) 261 URelativeString *fDates; // array of strings
|
/external/icu/icu4c/source/i18n/unicode/ |
format.h | 49 * localized or contain localized characters or strings. For example, 58 * govern the interconversion between values and strings. For example, 61 * currency values, yielding strings such as "$1,234.45" for 1234.45, 72 * as strings. For instance, 0 may be represented as "no files", 1 as 187 * polymorphic parsing of strings into Formattable objects.
|
/external/icu/icu4c/source/tools/genrb/ |
read.c | 113 merge adjacent strings. It looks forward a bit, and if the next 115 well. If two adjacent strings are quoted, they are merged without 169 /* Unterminated quoted strings */ 222 warning(lineCount, "Mixing quoted and unquoted strings"); 233 * quoted and unquoted strings
|
/external/llvm/include/llvm/ADT/ |
SmallString.h | 1 //===- llvm/ADT/SmallString.h - 'Normally small' strings --------*- C++ -*-===// 98 /// the relative ordering of inequal strings isn't needed. 108 /// Compare two strings; the result is -1, 0, or 1 if this string is 114 /// compare_lower - Compare two strings, ignoring case. 119 /// compare_numeric - Compare two strings, treating sequences of digits as
|
/external/pcre/dist/doc/ |
pcreposix.3 | 100 \fInmatch\fP and \fIpmatch\fP arguments are ignored, and no captured strings 120 strings used for matching it to be treated as UTF-8 strings. Note that REG_UTF8 212 strings is returned. The \fInmatch\fP and \fIpmatch\fP arguments of 216 no data about any matched strings is returned.
|
/external/v8/test/mjsunit/ |
string-slices.js | 84 // Then two-byte strings. 101 // Keep creating strings to to force allocation failure on substring creation. 113 // Same with two-byte strings 142 // Test charAt for different strings. 195 // Externalizing strings.
|
/external/icu/icu4c/source/common/ |
unormcmp.cpp | 38 * Compare two strings for canonical equivalence. 43 * If canonical equivalence is tested, then both strings must fulfill 50 * String comparisons almost always yield results before processing both strings 54 * on the entire strings first. 111 * un-FCD any strings. 114 * This requires that case-folding does not un-NFD strings either. 118 * If this happens, then a simple solution is to case-fold both strings up front 120 * We already do this when not both strings are in FCD because makeFCD 270 return 0; /* c1==c2==-1 indicating end of strings */ 547 * If both strings were not in FCD, then they were both NFD'ed [all...] |
/external/mockito/cglib-and-asm/src/org/mockito/cglib/core/ |
EmitUtils.java | 164 public static void string_switch(CodeEmitter e, String[] strings, int switchStyle, ObjectSwitchCallback callback) { 168 string_switch_trie(e, strings, callback); 171 string_switch_hash(e, strings, callback, false); 174 string_switch_hash(e, strings, callback, true); 189 String[] strings, 193 final Map buckets = CollectionUtils.bucket(Arrays.asList(strings), new Transformer() { 216 List strings, 221 final int len = ((String)strings.get(0)).length(); 222 final Map buckets = CollectionUtils.bucket(strings, new Transformer() { 257 final String[] strings, [all...] |
/external/fonttools/Windows/ |
fonttools-win-setup.iss | 118 s := Dirs.Strings[Index]; 150 if (uppercase(Dirs.Strings[i]) = uppercase(DirName)) then 159 if (((Method and pmRemoveSubdirsAlso) > 0) and (pos(uppercase(DirName)+'\', uppercase(Dirs.Strings[i])) = 1)) or 160 (((Method and (pmRemove) or (pmRemoveSubdirsAlso)) > 0) and (uppercase(DirName) = uppercase(Dirs.Strings[i]))) 217 ActualLine := AutoexecLines.Strings[LineNo]; 249 FirstPathLineNo := StrToInt(PathLineNos.Strings[0]) 261 AutoexecLines.Delete(StrToInt(PathLineNos.Strings[Index]));
|
/external/libxml2/ |
testdict.c | 80 * Now do the same with the second pool of strings 167 * All the strings are based on a different seeds subset so we know 200 * At this point allocate all the strings 235 * Also verify that all strings from the parent are seen from the subdict 288 * check the QName lookups for strings from the parent 361 * At this point allocate all the strings 436 printf("dictionary tests succeeded %d strings\n", 2 * NB_STRINGS_MAX);
|
/external/mesa3d/src/mesa/drivers/dri/intel/ |
intel_regions.c | 74 char **strings = NULL; local 79 strings = backtrace_symbols(trace, traceSize); 80 if (strings == NULL) { 85 /* Spit out all the strings with a colon separator. Ignore 91 char *p = strings[i], *slash = strings[i]; 102 free(strings);
|
/libcore/luni/src/test/java/libcore/java/lang/ |
OldStringTest.java | 84 assertTrue("Returned false for equals strings.", hwlc 87 assertFalse("Returned true for different strings.", hwlc 476 String[][] strings = { local 495 for (int j = 0; j < strings[i].length; j++) { 497 + strings[i][j], strings[i][j].matches(patterns[i])); 498 assertFalse("" + i, strings[i][j].matches(patternsInc[i]));
|
StringTest.java | 176 * Test that strings interned manually and then later loaded as literals 340 // For strings where a character differs, the result is 347 // For strings where the characters match up to the length of the shorter, 348 // the result is the difference between the strings' lengths. 366 // For strings where a character differs, the result is 377 // For strings where the characters match up to the length of the shorter, 378 // the result is the difference between the strings' lengths.
|
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/ |
StringIO.py | 49 The StringIO object can accept either Unicode or 8-bit strings, but 50 mixing the two may take some care. If both are used, 8-bit strings that 242 """Write a sequence of strings to the file. The sequence can be any 243 iterable object producing strings, typically a list of strings. There 263 The StringIO object can accept either Unicode or 8-bit strings, 265 strings that cannot be interpreted as 7-bit ASCII (that use the
|
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/ |
StringIO.py | 49 The StringIO object can accept either Unicode or 8-bit strings, but 50 mixing the two may take some care. If both are used, 8-bit strings that 242 """Write a sequence of strings to the file. The sequence can be any 243 iterable object producing strings, typically a list of strings. There 263 The StringIO object can accept either Unicode or 8-bit strings, 265 strings that cannot be interpreted as 7-bit ASCII (that use the
|
/external/google-breakpad/src/testing/gtest/include/gtest/ |
gtest-printers.h | 381 // types, strings, plain arrays, and pointers). 407 // Overloads for C strings. 434 // Overloads for wide C strings 704 typedef ::std::vector<string> Strings; 728 static void TersePrintPrefixToStrings(const Tuple& t, Strings* strings) { 729 TuplePrefixPrinter<N - 1>::TersePrintPrefixToStrings(t, strings); 732 strings->push_back(ss.str()); 743 static void TersePrintPrefixToStrings(const Tuple&, Strings*) {} 759 static void TersePrintPrefixToStrings(const Tuple& t, Strings* strings) [all...] |
/external/gtest/include/gtest/ |
gtest-printers.h | 381 // types, strings, plain arrays, and pointers). 407 // Overloads for C strings. 434 // Overloads for wide C strings 760 typedef ::std::vector<string> Strings; 784 static void TersePrintPrefixToStrings(const Tuple& t, Strings* strings) { 785 TuplePrefixPrinter<N - 1>::TersePrintPrefixToStrings(t, strings); 788 strings->push_back(ss.str()); 799 static void TersePrintPrefixToStrings(const Tuple&, Strings*) {} 815 static void TersePrintPrefixToStrings(const Tuple& t, Strings* strings) [all...] |