Searched defs:strings (Results 1 - 25 of 157) sorted by relevance

1234567

/external/v8/test/intl/collator/
H A Dde-sort.js30 var strings = ['März', 'Fuße', 'FUSSE', 'Fluße', 'Flusse', variable
34 var result = strings.sort(collator.compare);
H A Den-sort.js30 var strings = ['blood', 'bull', 'ascend', 'zed', 'down']; variable
33 var result = strings.sort(collator.compare);
H A Dsr-sort.js30 var strings = ['новине', 'ограда', 'жирафа', 'Никола', 'Андрија', variable
34 var result = strings.sort(collator.compare);
/external/lldb/test/functionalities/data-formatter/data-formatter-stl/libstdcpp/vector/
H A Dmain.cpp21 string_vect strings; // Set break point at this line. local
22 strings.push_back(std::string("goofy"));
23 strings.push_back(std::string("is"));
24 strings.push_back(std::string("smart"));
26 strings.push_back(std::string("!!!")); // Set break point at this line.
28 strings.clear(); // Set break point at this line.
/external/lldb/test/functionalities/data-formatter/data-formatter-stl/libcxx/vector/
H A Dmain.cpp25 string_vect strings; local
26 (strings.push_back(std::string("goofy")));
27 (strings.push_back(std::string("is")));
28 (strings.push_back(std::string("smart")));
30 (strings.push_back(std::string("!!!"))); // Set second break point at this line.
32 strings.clear();
/external/lzma/CPP/7zip/UI/Common/
H A DSortUtils.cpp10 const UStringVector &strings = *(const UStringVector *)param; local
11 return CompareFileNames(strings[*p1], strings[*p2]);
14 void SortFileNames(const UStringVector &strings, CIntVector &indices) argument
17 int numItems = strings.Size();
21 indices.Sort(CompareStrings, (void *)&strings);
/external/guava/guava-tests/benchmark/com/google/common/util/concurrent/
H A DMonitorBenchmark.java38 private String[] strings; field in class:MonitorBenchmark
49 strings = new String[capacity];
51 strings[i] = String.valueOf(Math.random());
58 String[] strings = this.strings;
61 queue.add(strings[j]);
/external/icu/icu4c/source/common/
H A Dulistformatter.cpp43 const UChar* const strings[],
53 if (stringCount < 0 || (strings == NULL && stringCount > 0) || ((result == NULL)? resultCapacity != 0 : resultCapacity < 0)) {
68 ustrings[stringIndex].setTo(TRUE, strings[stringIndex], -1);
72 ustrings[stringIndex].setTo(stringLengths[stringIndex] < 0, strings[stringIndex], stringLengths[stringIndex]);
42 ulistfmt_format(const UListFormatter* listfmt, const UChar* const strings[], const int32_t * stringLengths, int32_t stringCount, UChar* result, int32_t resultCapacity, UErrorCode* status) argument
/external/icu/icu4c/source/common/unicode/
H A Dbytestriebuilder.h167 CharString *strings; // Pointer not object so we need not #include internal charstr.h. member in class:BytesTrieBuilder
H A Ducharstriebuilder.h123 strings.remove();
171 UnicodeString strings; member in class:UCharsTrieBuilder
/external/icu/icu4c/source/test/intltest/
H A Dcolldata.h174 * @return the number of strings in the list.
179 UnicodeString *strings; member in class:StringList
231 * Get a list of all the strings which generate a list
238 * no such strings.
/external/libphonenumber/internal/prefixmapper/test/com/google/i18n/phonenumbers/prefixmapper/
H A DMappingFileProviderTest.java53 private static HashSet<String> newHashSet(String... strings) { argument
55 set.addAll(Arrays.asList(strings));
/external/protobuf/src/google/protobuf/stubs/
H A Dsubstitute.h32 // from google3/strings/substitute.h
43 namespace strings { namespace in namespace:google::protobuf
46 // strings::Substitute()
47 // strings::SubstituteAndAppend()
52 // return strings::Substitute("My name is $0 $1 and I am $2 years old.",
68 // your strings. In fact, you shouldn't; it will be slower.
77 // strings::SubstituteAndAppend(&str,
82 // large strings, it may be orders of magnitude faster.
166 } // namespace strings
/external/dexmaker/src/dx/java/com/android/dx/dex/file/
H A DStringIdsSection.java37 private final TreeMap<CstString, StringIdItem> strings; field in class:StringIdsSection
47 strings = new TreeMap<CstString, StringIdItem>();
53 return strings.values();
65 IndexedItem result = strings.get((CstString) cst);
82 int sz = strings.size();
129 StringIdItem already = strings.get(value);
135 strings.put(value, string);
163 StringIdItem s = strings.get(string);
177 for (StringIdItem s : strings.values()) {
/external/emma/core/java12/com/vladium/util/
H A DStrings.java33 public static String toListForm (final String [] strings, final char delimiter) argument
35 if (strings == null) return null;
36 if (strings.length == 0) return "";
39 for (int i = 0, iLimit = strings.length; i < iLimit; ++ i)
42 s.append (strings [i]);
48 public static String [] removeDuplicates (final String [] strings, final boolean removeNull) argument
50 if (strings == null) return strings;
52 final int length = strings.length;
53 if (length == 0) return strings;
86 merge(final String [] strings, final String delimiters, final boolean removeNull) argument
126 mergeAT(final String [] strings, final String delimiters, final boolean processAtFiles) argument
[all...]
/external/lldb/source/API/
H A DSBStringList.cpp99 SBStringList::AppendList (const SBStringList &strings) argument
101 if (strings.IsValid())
105 m_opaque_ap->AppendList (*(strings.m_opaque_ap));
/external/antlr/antlr-3.4/tool/src/main/java/org/antlr/codegen/
H A DCTarget.java39 ArrayList strings = new ArrayList(); field in class:CTarget
51 outputFileST.add("literals", strings);
65 // to it as we cannot assign into strings in Java.
210 // invalid strings if not, which is what the input would be of course - invalid
263 index = strings.indexOf(bytes);
266 strings.add(bytes);
267 index = strings.indexOf(bytes);
/external/freetype/src/sfnt/
H A Dttbdf.c55 bdf->strings = NULL;
87 FT_ULong strings = FT_NEXT_ULONG ( p ); local
93 strings < 8 ||
94 ( strings - 8 ) / 4 < num_strikes ||
95 strings + 1 > length )
101 bdf->strings = bdf->table + strings;
102 bdf->strings_size = length - strings;
122 if ( strike > bdf->strings )
205 (const char*)bdf->strings
[all...]
/external/guava/guava-tests/benchmark/com/google/common/base/
H A DUtf8Benchmark.java38 * decimal numerals, hex strings, and some symbolic names
89 private String[] strings; field in class:Utf8Benchmark
101 strings = new String[stringCount];
114 strings[i] = sb.toString();
115 byteArrays[i] = strings[i].getBytes(Charsets.UTF_8);
136 * Benchmarks {@link Utf8#length} on valid strings containing
143 for (String string : strings) {
/external/icu/icu4c/source/test/cintltst/
H A Dulistfmttest.c33 static const UChar* strings[] = { str0, str1, str2, str3, str4 }; variable
70 int32_t ulenActual = ulistfmt_format(listfmt, strings, stringLengths, lftep->stringCount, ubufActual, kUBufMax, &status);
83 ulenActual = ulistfmt_format(listfmt, strings, stringLengthsNeg, lftep->stringCount, ubufActual, kUBufMax, &status);
96 ulenActual = ulistfmt_format(listfmt, strings, NULL, lftep->stringCount, ubufActual, kUBufMax, &status);
112 log_err("ERROR: ulistfmt_format for locale %s count %d with NULL strings, expected U_ILLEGAL_ARGUMENT_ERROR, got %s, result %d\n", lftep->locale,
116 ulenActual = ulistfmt_format(listfmt, strings, NULL, lftep->stringCount, NULL, kUBufMax, &status);
/external/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/format/
H A DListFormatterTest.java97 public void checkData(ListFormatter listFormat, String[] strings) { argument
98 assertEquals("0", strings[0], listFormat.format());
99 assertEquals("1", strings[1], listFormat.format("A"));
100 assertEquals("2", strings[2], listFormat.format("A", "B"));
101 assertEquals("3", strings[3], listFormat.format("A", "B", "C"));
102 assertEquals("4", strings[4], listFormat.format("A", "B", "C", "D"));
103 assertEquals("5", strings[5], listFormat.format("A", "B", "C", "D", "E"));
/external/jarjar/src/main/com/tonicsystems/jarjar/
H A DMain.java57 public void strings(String cp) throws IOException { method in class:Main
H A DWildcard.java34 private final String[] strings; field in class:Wildcard
82 strings = new String[size];
88 strings[i] = ((String)v).replace('.', '/');
106 for (int i = 0; i < strings.length; i++)
107 sb.append((refs[i] >= 0) ? matcher.group(refs[i]) : strings[i]);
/external/libxml2/
H A DtestXPath.c145 int strings = 0; local
196 strings ++;
199 if (strings == 0) {
202 printf("\tParse the XPath strings and output the result of the parsing\n");
/external/lldb/test/lang/c/array_types/
H A Dmain.c21 char *strings[] = { "Hello", "Hola", "Bonjour", "Guten Tag" }; local

Completed in 1410 milliseconds

1234567