HomeSort by relevance Sort by last modified time
    Searched defs:strings (Results 1 - 25 of 814) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/lzma/CPP/7zip/UI/Common/
SortUtils.cpp 10 const UStringVector &strings = *(const UStringVector *)param; local
11 return CompareFileNames(strings[*p1], strings[*p2]);
14 void SortFileNames(const UStringVector &strings, CIntVector &indices)
17 int numItems = strings.Size();
21 indices.Sort(CompareStrings, (void *)&strings);
  /external/v8/test/intl/collator/
de-sort.js 30 var strings = ['März', 'Fuße', 'FUSSE', 'Fluße', 'Flusse', variable
34 var result = strings.sort(collator.compare);
en-sort.js 30 var strings = ['blood', 'bull', 'ascend', 'zed', 'down']; variable
33 var result = strings.sort(collator.compare);
sr-sort.js 30 var strings = ['??????', '??????', '??????', '??????', '???????', variable
34 var result = strings.sort(collator.compare);
  /frameworks/native/opengl/tools/glgen/stubs/gles11/
glShaderSource.cpp 14 const char* strings[] = {nativeString}; local
15 glShaderSource(shader, 1, strings, 0);
  /external/lldb/test/functionalities/data-formatter/data-formatter-stl/libstdcpp/vector/
main.cpp 21 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.
  /system/bt/osi/test/
array_test.cpp 58 char strings[][128] = { local
71 array_append_ptr(array, strings[i % 8]);
74 EXPECT_TRUE(!memcmp(array_at(array, i), strings[i % 8], 128));
  /external/lldb/test/functionalities/data-formatter/data-formatter-stl/libcxx/vector/
main.cpp 25 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();
  /libnativehelper/
toStringArray.cpp 25 const char* const* strings; member in struct:ArrayCounter
26 ArrayCounter(const char* const* strings) : strings(strings) {}
29 while (strings[count] != NULL) {
37 const char* const* strings; member in struct:ArrayGetter
38 ArrayGetter(const char* const* strings) : strings(strings) {}
40 return strings[i]
    [all...]
  /art/runtime/mirror/
dex_cache.cc 34 void DexCache::Init(const DexFile* dex_file, String* location, ObjectArray<String>* strings,
39 CHECK(strings != nullptr);
46 SetFieldObject<false>(StringsOffset(), strings); local
  /libnativehelper/include/nativehelper/
toStringArray.h 49 const std::vector<std::string>& strings; member in struct:VectorCounter
50 VectorCounter(const std::vector<std::string>& strings) : strings(strings) {}
52 return strings.size();
56 const std::vector<std::string>& strings; member in struct:VectorGetter
57 VectorGetter(const std::vector<std::string>& strings) : strings(strings) {}
59 return strings[i].c_str()
    [all...]
  /dalvik/dx/src/com/android/dx/dex/file/
StringIdsSection.java 28 * Strings list section of a {@code .dex} file.
36 private final TreeMap<CstString, StringIdItem> strings; field in class:StringIdsSection
46 strings = new TreeMap<CstString, StringIdItem>();
52 return strings.values();
64 IndexedItem result = strings.get((CstString) cst);
81 int sz = strings.size();
128 StringIdItem already = strings.get(value);
134 strings.put(value, string);
162 StringIdItem s = strings.get(string);
176 for (StringIdItem s : strings.values())
    [all...]
  /external/dexmaker/src/dx/java/com/android/dx/dex/file/
StringIdsSection.java 29 * Strings list section of a {@code .dex} file.
37 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())
    [all...]
  /art/runtime/
utils_test.cc 273 std::vector<std::string> strings; local
275 strings.clear();
276 EXPECT_EQ("", Join(strings, ':'));
278 strings.clear();
279 strings.push_back("foo");
280 EXPECT_EQ("foo", Join(strings, ':'));
282 strings.clear();
283 strings.push_back("");
284 strings.push_back("foo");
285 EXPECT_EQ(":foo", Join(strings, ':'))
    [all...]
  /external/icu/icu4c/source/common/unicode/
bytestriebuilder.h 167 CharString *strings; // Pointer not object so we need not #include internal charstr.h. member in class:BytesTrieBuilder
ucharstriebuilder.h 123 strings.remove();
171 UnicodeString strings; member in class:UCharsTrieBuilder
  /external/icu/icu4c/source/test/intltest/
colldata.h 174 * @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/protobuf/src/google/protobuf/stubs/
substitute.cc 39 namespace strings { namespace in namespace:google::protobuf
85 << "strings::Substitute format string invalid: asked for \"$"
98 << "Invalid strings::Substitute() format string: \""
132 } // namespace strings
substitute.h 32 // 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.",
66 // * Strings (const char*, const string&)
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
    [all...]
  /libcore/luni/src/test/java/libcore/java/lang/
DoubleTest.java 82 String[] strings = { local
90 for (String string : strings) {
  /ndk/tests/device/test-gnustl-full/unit/
istmit_test.cpp 101 vector<string> strings; local
109 copy_n(istream_string_ite(istr), 2, back_inserter(strings));
110 CPPUNIT_ASSERT( strings.size() == 2 );
111 CPPUNIT_ASSERT( strings[0] == "AA" );
112 CPPUNIT_ASSERT( strings[1] == "BB" );
113 strings.clear();
123 * again it fails as int can be converted to strings.
130 copy_n(istream_string_ite(istr), 2, back_inserter(strings));
131 CPPUNIT_ASSERT( strings.size() == 2 );
132 CPPUNIT_ASSERT( strings[0] == "CC" )
    [all...]
  /ndk/tests/device/test-stlport/unit/
istmit_test.cpp 101 vector<string> strings; local
109 copy_n(istream_string_ite(istr), 2, back_inserter(strings));
110 CPPUNIT_ASSERT( strings.size() == 2 );
111 CPPUNIT_ASSERT( strings[0] == "AA" );
112 CPPUNIT_ASSERT( strings[1] == "BB" );
113 strings.clear();
123 * again it fails as int can be converted to strings.
130 copy_n(istream_string_ite(istr), 2, back_inserter(strings));
131 CPPUNIT_ASSERT( strings.size() == 2 );
132 CPPUNIT_ASSERT( strings[0] == "CC" )
    [all...]
  /dalvik/dexgen/src/com/android/dexgen/dex/file/
StringIdsSection.java 30 * Strings list section of a {@code .dex} file.
38 private final TreeMap<CstUtf8, StringIdItem> strings; field in class:StringIdsSection
48 strings = new TreeMap<CstUtf8, StringIdItem>();
54 return strings.values();
70 IndexedItem result = strings.get((CstUtf8) cst);
87 int sz = strings.size();
146 StringIdItem already = strings.get(value);
152 strings.put(value, string);
180 StringIdItem s = strings.get(string);
205 for (StringIdItem s : strings.values())
    [all...]
  /external/guava/guava-tests/benchmark/com/google/common/util/concurrent/
MonitorBenchmark.java 38 private String[] strings; field in class:MonitorBenchmark
49 strings = new String[capacity];
51 strings[i] = String.valueOf(Math.random());
58 String[] strings = this.strings; local
61 queue.add(strings[j]);
  /external/skia/src/animator/
SkGetCondensedInfo.cpp 22 static int _searchByName(const unsigned char* lengths, int count, const char* strings, const char target[]) {
27 if (strcmp(&strings[lengths[mid << 2]], target) < 0)
32 if (strcmp(&strings[lengths[hi << 2]], target) != 0)
83 const char* strings = gInfoNames[lookup]; local
84 int index = _searchByName(&info->fName, count, strings, match);

Completed in 360 milliseconds

1 2 3 4 5 6 7 8 91011>>