Searched refs:strings (Results 1 - 25 of 287) 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/bluetooth/glib/tests/
H A Dunicode-caseconv.c14 char **strings; local
40 strings = g_strsplit (buffer, "\t", -1);
42 locale = strings[0];
59 test = strings[1];
63 * is nonsense for multicharacter strings, it would make more sense
70 expected = strings[4][0] ? strings[4] : test;
80 expected = strings[2][0] ? strings[2] : test;
90 g_strfreev (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/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/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/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/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...]
/external/chromium/chrome/browser/ui/gtk/infobars/
H A Dafter_translate_infobar_gtk.cc27 std::vector<string16> strings; local
29 &strings, &swapped_language_combos);
30 DCHECK(strings.size() == 3U);
46 gtk_box_pack_start(GTK_BOX(hbox), CreateLabel(UTF16ToUTF8(strings[0])),
52 gtk_box_pack_start(GTK_BOX(hbox), CreateLabel(UTF16ToUTF8(strings[1])),
58 gtk_box_pack_start(GTK_BOX(hbox), CreateLabel(UTF16ToUTF8(strings[2])),
/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/webkit/Source/JavaScriptCore/tests/mozilla/js1_6/Array/
H A Dregress-290592.js174 var strings = ['hello', 'Array', 'WORLD']; variable
194 strings.map();
207 actual = strings.map(identity).toString();
219 actual = strings.map(mutate).toString();
227 strings = ['hello', 'Array', 'WORLD'];
233 actual = strings.map(makeUpperCase).toString();
246 actual = strings.map(obj.makeUpperCase, obj).toString();
258 actual = strings.map(obj.makeUpperCase, obj).toString();
294 strings.forEach();
308 strings
[all...]
/external/webkit/Source/WebCore/bridge/
H A DtestM.js27 var strings = [ "one", "two", "three" ]; variable
29 myInterface.logMessages (strings)
/external/webkit/Tools/Scripts/
H A Dcheck-inspector-strings46 _log = logging.getLogger("check-inspector-strings")
55 self.strings = []
57 self.strings.append([])
71 self.strings[index].append(decode_unicode_escapes(string))
107 ui_strings = frozenset(strings_extractor.strings[0])
108 strings = frozenset(strings_extractor.strings[1]) variable in class:LocalizedStringsExtractor
115 suspicious_strings = strings & old_strings
118 unused_strings = old_strings - strings

Completed in 550 milliseconds

1234567891011>>