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

12345678910

/external/chromium_org/chrome/common/
H A Dautocomplete_match_type.cc11 const char* strings[] = { local
30 COMPILE_ASSERT(arraysize(strings) == AutocompleteMatchType::NUM_TYPES,
32 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/chromium/chrome/browser/sync/
H A Dsync_ui_util_unittest.cc19 DictionaryValue strings; local
38 sync_ui_util::ConstructAboutInformation(&service, &strings);
40 EXPECT_TRUE(strings.HasKey("unrecoverable_error_detected"));
/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/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/icu4c/common/unicode/
H A Dbytestriebuilder.h163 CharString *strings; // Pointer not object so we need not #include internal charstr.h. member in class:BytesTrieBuilder
H A Ducharstriebuilder.h117 strings.remove();
167 UnicodeString strings; member in class:UCharsTrieBuilder
/external/icu4c/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/geocoding/
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/third_party/WebKit/Source/web/
H A DWebIDBKeyPath.cpp45 Vector<String> strings; local
47 strings.append(keyPath[i]);
48 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...]
/external/chromium_org/tools/gn/
H A Dtokenizer_unittest.cc77 TokenExpectation strings[] = { local
83 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/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);

Completed in 665 milliseconds

12345678910