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

12345678910

/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/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/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);
H A Doctal-001.js51 var strings = new Array();
117 strings[i] = string;
129 testRegExp(statusmessages, patterns, strings, actualmatches, expectedmatches);
H A Dregress-105972.js37 var strings = new Array();
122 strings[i] = string;
134 testRegExp(statusmessages, patterns, strings, actualmatches, expectedmatches);
H A Dregress-123437.js53 var strings = new Array();
93 strings[i] = string;
105 testRegExp(statusmessages, patterns, strings, actualmatches, expectedmatches);
H A Dregress-165353.js51 var strings = new Array();
103 strings[i] = string;
115 testRegExp(statusmessages, patterns, strings, actualmatches, expectedmatches);
H A Dregress-187133.js65 var strings = new Array();
123 strings[i] = string;
135 testRegExp(statusmessages, patterns, strings, actualmatches, expectedmatches);
H A Dregress-209919.js52 var strings = new Array();
155 strings[i] = string;
167 testRegExp(statusmessages, patterns, strings, actualmatches, expectedmatches);
H A Dregress-72964.js37 var strings = new Array();
86 strings[i] = string;
98 testRegExp(statusmessages, patterns, strings, actualmatches, expectedmatches);
H A Dregress-78156.js27 * The m flag means a regular expression should search strings
39 var strings = new Array();
46 * All patterns have an m flag; all strings are multiline.
88 strings[i] = string;
100 testRegExp(statusmessages, patterns, strings, actualmatches, expectedmatches);
/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/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/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/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/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/WebCore/bridge/
H A DtestM.js27 var strings = [ "one", "two", "three" ]; variable
29 myInterface.logMessages (strings)
/external/clearsilver/cs/
H A Dtest4.cs79 <?cs # --- explicit strings --- ?>
82 ERROR "9" > "14" (strings)
84 right "9" < "14" (strings)
87 <?cs # --- hdf strings --- ?>
/external/qemu/android/utils/
H A Dmisc.h19 ** prints a list of strings in row/column format
23 extern void print_tabular( const char** strings, int count,
28 ** converts one character into another in strings

Completed in 147 milliseconds

12345678910