Searched refs:strings (Results 1 - 25 of 355) sorted by relevance

1234567891011>>

/external/chromium/chrome/browser/ui/webui/chromeos/
H A Denterprise_enrollment_ui.cc181 DictionaryValue strings; local
184 AddString(&strings, "loginHeader",
186 AddString(&strings, "loginExplain",
189 AddString(&strings, "cloudHeader",
191 AddString(&strings, "cloudExplain",
193 AddString(&strings, "accesscontrolHeader",
195 AddString(&strings, "accesscontrolExplain",
197 AddString(&strings, "confirmationHeader",
199 AddString(&strings, "confirmationMessage",
201 AddString(&strings, "confirmationClos
[all...]
H A Dsystem_info_ui.cc110 DictionaryValue strings; local
111 strings.SetString("title", l10n_util::GetStringUTF16(IDS_ABOUT_SYS_TITLE));
112 strings.SetString("description",
114 strings.SetString("table_title",
116 strings.SetString("expand_all_btn",
118 strings.SetString("collapse_all_btn",
120 strings.SetString("expand_btn",
122 strings.SetString("collapse_btn",
124 SetFontAndTextDirection(&strings);
128 strings
[all...]
/external/chromium/chrome/browser/resources/shared/js/cr/
H A Dlocale.js16 * Construct a new Locale object with a set of strings.
18 * The strings object maps symbolic string names to translated strings
19 * for the locale. Lists of translated strings are delimited with the caret
28 function Locale(strings) {
30 dayShort: strings.LOCALE_DAYS_SHORT.split('^'),
31 monthShort: strings.LOCALE_MONTHS_SHORT.split('^'),
32 shortDateFormat: strings.LOCALE_FMT_DATE_SHORT
93 var strings = this.dateStrings_;
136 case 'a': return fmt(strings
[all...]
/external/dropbear/
H A Dcompat.c86 static char **curshell, **shells, *strings; variable
222 if (strings != NULL)
223 free(strings);
224 strings = NULL;
243 if (strings != NULL)
244 free(strings);
245 strings = NULL;
252 if ((strings = malloc((u_int)statb.st_size + 1)) == NULL) {
259 free(strings);
260 strings
[all...]
/external/webkit/Source/JavaScriptCore/tests/mozilla/ecma_3/RegExp/
H A Dregress-31316.js37 var strings = new Array();
61 strings[i] = string;
73 testRegExp(statusmessages, patterns, strings, actualmatches, expectedmatches);
H A D15.10.6.2-1.js71 var strings = new Array();
105 strings[i] = string;
117 testRegExp(statusmessages, patterns, strings, actualmatches, expectedmatches);
H A Dregress-169497.js53 var strings = new Array();
86 strings[i] = string;
98 testRegExp(statusmessages, patterns, strings, actualmatches, expectedmatches);
H A Dregress-202564.js42 * to hold |undefined| instead of the empty strings one gets in Perl and IE6.
56 var strings = new Array();
82 strings[i] = string;
94 testRegExp(statusmessages, patterns, strings, actualmatches, expectedmatches);
H A Dregress-216591.js52 var strings = new Array();
98 strings[i] = string;
110 testRegExp(statusmessages, patterns, strings, actualmatches, expectedmatches);
H A Dregress-220367-001.js52 var strings = new Array();
85 strings[i] = string;
97 testRegExp(statusmessages, patterns, strings, actualmatches, expectedmatches);
H A Dregress-76683.js36 var strings = new Array();
79 strings[i] = string;
91 testRegExp(statusmessages, patterns, strings, actualmatches, expectedmatches);
/external/icu4c/common/
H A Dbytestriebuilder.cpp37 void setTo(const StringPiece &s, int32_t val, CharString &strings, UErrorCode &errorCode);
39 StringPiece getString(const CharString &strings) const {
43 length=(uint8_t)strings[offset++];
46 length=((int32_t)(uint8_t)strings[offset]<<8)|(uint8_t)strings[offset+1];
49 return StringPiece(strings.data()+offset, length);
51 int32_t getStringLength(const CharString &strings) const {
54 return (uint8_t)strings[offset];
57 return ((int32_t)(uint8_t)strings[offset]<<8)|(uint8_t)strings[offse
88 setTo(const StringPiece &s, int32_t val, CharString &strings, UErrorCode &errorCode) argument
180 const CharString *strings=reinterpret_cast<const CharString *>(context); local
[all...]
H A Ducharstriebuilder.cpp37 void setTo(const UnicodeString &s, int32_t val, UnicodeString &strings, UErrorCode &errorCode);
39 UnicodeString getString(const UnicodeString &strings) const {
40 int32_t length=strings[stringOffset];
41 return strings.tempSubString(stringOffset+1, length);
43 int32_t getStringLength(const UnicodeString &strings) const {
44 return strings[stringOffset];
47 UChar charAt(int32_t index, const UnicodeString &strings) const {
48 return strings[stringOffset+1+index];
53 int32_t compareStringTo(const UCharsTrieElement &o, const UnicodeString &strings) const;
56 // The first strings uni
63 setTo(const UnicodeString &s, int32_t val, UnicodeString &strings, UErrorCode &errorCode) argument
133 const UnicodeString *strings=reinterpret_cast<const UnicodeString *>(context); local
[all...]
/external/chromium/chrome/browser/chromeos/offline/
H A Doffline_load_page.cc40 void SetString(DictionaryValue* strings, const char* name, int resource_id) { argument
41 strings->SetString(name, l10n_util::GetStringUTF16(resource_id));
79 DictionaryValue strings; local
85 strings.SetInteger("time_to_wait", static_cast<int>(time_to_wait));
87 SetString(&strings, "heading", IDS_OFFLINE_LOAD_HEADLINE);
88 SetString(&strings, "try_loading", IDS_OFFLINE_TRY_LOADING);
89 SetString(&strings, "network_settings", IDS_OFFLINE_NETWORK_SETTINGS);
92 strings.SetBoolean("show_activation", ShowActivationMessage());
95 strings.SetString("textdirection", rtl ? "rtl" : "ltr");
100 strings
[all...]
/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/openfst/src/include/fst/extensions/far/
H A Dfarlib.h25 #include <fst/extensions/far/compile-strings.h>
29 #include <fst/extensions/far/print-strings.h>
/external/chromium/chrome/browser/ssl/
H A Dssl_blocking_page.cc66 DictionaryValue strings; local
68 strings.SetString("headLine", error_info.title());
69 strings.SetString("description", error_info.details());
71 strings.SetString("moreInfoTitle",
73 SetExtraInfo(&strings, error_info.extra_information());
78 strings.SetString("title",
80 strings.SetString("proceed",
82 strings.SetString("exit",
87 strings.SetString("title",
89 strings
156 SetExtraInfo( DictionaryValue* strings, const std::vector<string16>& extra_info) argument
[all...]
/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/apache-harmony/luni/src/test/api/common/org/apache/harmony/luni/tests/java/util/
H A DArrays2Test.java366 String[] strings = new String[] { "a", "B", "c", "D" };
367 Arrays.sort(strings, String.CASE_INSENSITIVE_ORDER);
368 assertEquals(0, Arrays.binarySearch(strings, "a",
370 assertEquals(0, Arrays.binarySearch(strings, "A",
372 assertEquals(1, Arrays.binarySearch(strings, "b",
374 assertEquals(1, Arrays.binarySearch(strings, "B",
376 assertEquals(2, Arrays.binarySearch(strings, "c",
378 assertEquals(2, Arrays.binarySearch(strings, "C",
380 assertEquals(3, Arrays.binarySearch(strings, "d",
382 assertEquals(3, Arrays.binarySearch(strings, "
[all...]
/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/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/eclipse-windowbuilder/propertysheet/src/org/eclipse/wb/internal/core/utils/ui/dialogs/
H A DStringsDialog.java64 List<String> strings = Lists.newArrayList();
71 strings.add(s);
73 return strings.toArray(new String[strings.size()]);
/external/openfst/src/extensions/far/
H A Dcompile-strings.cc17 #include <fst/extensions/far/compile-strings.h>
/external/webkit/Source/WebCore/css/
H A DWebKitCSSKeyframeRule.cpp71 Vector<String> strings; local
72 s.split(',', strings);
74 for (size_t i = 0; i < strings.size(); ++i) {
76 String cur = strings[i].stripWhiteSpace();
/external/chromium/chrome/browser/safe_browsing/
H A Dsafe_browsing_blocking_page.cc164 DictionaryValue strings; local
174 PopulateMultipleThreatStringDictionary(&strings);
179 PopulateMalwareStringDictionary(&strings);
184 PopulatePhishingStringDictionary(&strings);
188 return jstemplate_builder::GetTemplatesHtml(html, &strings, "template_root");
192 DictionaryValue* strings,
198 strings->SetString("title", title);
199 strings->SetString("headLine", headline);
200 strings->SetString("description1", description1);
201 strings
191 PopulateStringDictionary( DictionaryValue* strings, const string16& title, const string16& headline, const string16& description1, const string16& description2, const string16& description3) argument
205 PopulateMultipleThreatStringDictionary( DictionaryValue* strings) argument
287 PopulateMalwareStringDictionary( DictionaryValue* strings) argument
364 PopulatePhishingStringDictionary( DictionaryValue* strings) argument
562 DictionaryValue strings; local
[all...]

Completed in 1121 milliseconds

1234567891011>>