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

1234567891011

/external/chromium_org/components/omnibox/
H A Dautocomplete_match_type.cc11 const char* strings[] = { local
32 COMPILE_ASSERT(arraysize(strings) == AutocompleteMatchType::NUM_TYPES,
34 return strings[type];
/external/chromium_org/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/chromium_org/third_party/icu/source/common/unicode/
H A Dbytestriebuilder.h169 CharString *strings; // Pointer not object so we need not #include internal charstr.h. member in class:BytesTrieBuilder
H A Ducharstriebuilder.h123 strings.remove();
173 UnicodeString strings; member in class:UCharsTrieBuilder
/external/chromium_org/third_party/icu/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/chromium_org/third_party/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/chromium_org/tools/json_schema_compiler/test/
H A Dchoices_unittest.cc7 #include "base/strings/string_piece.h"
47 Dictionary("strings", new base::StringValue("asdf")).release())));
49 EXPECT_FALSE(params->string_info.strings.as_strings);
50 EXPECT_EQ("asdf", *params->string_info.strings.as_string);
56 Dictionary("strings", new base::StringValue("asdf"),
59 EXPECT_FALSE(params->string_info.strings.as_strings);
60 EXPECT_EQ("asdf", *params->string_info.strings.as_string);
73 object_param->SetWithoutPathExpansion("strings",
83 object_param->SetWithoutPathExpansion("strings",
106 std::vector<std::string> strings local
[all...]
/external/chromium_org/ui/views/examples/
H A Dexample_combobox_model.cc7 #include "base/strings/utf_string_conversions.h"
12 ExampleComboboxModel::ExampleComboboxModel(const char** strings, int count) argument
13 : strings_(strings), count_(count) {
/external/icu/icu4c/source/common/unicode/
H A Dbytestriebuilder.h169 CharString *strings; // Pointer not object so we need not #include internal charstr.h. member in class:BytesTrieBuilder
/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/java/test/com/android/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/smack/src/org/xbill/DNS/
H A DSPFRecord.java26 * @param strings The text strings
27 * @throws IllegalArgumentException One of the strings has invalid escapes
30 SPFRecord(Name name, int dclass, long ttl, List strings) { argument
31 super(name, Type.SPF, dclass, ttl, strings);
H A DTXTRecord.java8 * Text - stores text strings
26 * @param strings The text strings
27 * @throws IllegalArgumentException One of the strings has invalid escapes
30 TXTRecord(Name name, int dclass, long ttl, List strings) { argument
31 super(name, Type.TXT, dclass, ttl, strings);
/external/stlport/test/unit/
H A Distmit_test.cpp101 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[
[all...]
/external/chromium_org/chromeos/dbus/
H A Dshill_profile_client_unittest.cc25 const std::vector<std::string>& strings) {
28 variant_writer.AppendArrayOfStrings(strings);
24 AppendVariantOfArrayOfStrings(dbus::MessageWriter* writer, const std::vector<std::string>& strings) argument
/external/chromium_org/device/bluetooth/
H A Dbluetooth_gatt_descriptor.cc24 static const char* const strings[] = { local
28 for (size_t i = 0; i < arraysize(strings); ++i)
29 uuids.push_back(BluetoothUUID(strings[i]));
/external/chromium_org/third_party/WebKit/Source/web/
H A DWebIDBKeyPath.cpp43 Vector<String> strings; local
45 strings.append(keyPath[i]);
46 return WebIDBKeyPath(IDBKeyPath(strings));
/external/chromium_org/third_party/libjingle/source/talk/xmpp/
H A Dxmppauth.cc56 static bool contains(const std::vector<std::string>& strings, argument
58 return std::find(strings.begin(), strings.end(), string) != strings.end();
/external/chromium_org/third_party/ots/src/
H A Dpost.cc41 // We have a version 2 table with a list of Pascal strings at the end
84 // Now we have an array of Pascal strings. We have to check that they are all
87 const uint8_t *strings = data + strings_offset; local
91 if (strings == strings_end) break;
92 const unsigned string_length = *strings;
93 if (strings + 1 + string_length > strings_end) {
96 if (std::memchr(strings + 1, '\0', string_length)) {
100 std::string(reinterpret_cast<const char*>(strings + 1), string_length));
101 strings += 1 + string_length;
159 // Now we just have to write out the strings i
[all...]

Completed in 2941 milliseconds

1234567891011