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

123

/external/webkit/WebCore/bridge/
H A DtestM.js27 var strings = [ "one", "two", "three" ]; variable
29 myInterface.logMessages (strings)
/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/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
H A Dsubstitute.cc39 namespace strings { namespace in namespace:google::protobuf
85 << "strings::Substitute format string invalid: asked for \"$"
98 << "Invalid strings::Substitute() format string: \""
132 } // namespace 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/webkit/WebKitTools/DumpRenderTree/qt/
H A Dmain.cpp84 char** strings = backtrace_symbols(array, size); local
88 QLatin1String(strings[i]) + QLatin1String("\n");
91 if (strings)
92 free (strings);
/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/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/chromium/third_party/icu/public/common/unicode/
H A Duniset.h33 * A mutable set of Unicode characters and multicharacter strings. Objects of this class
99 * <td valign="top">The character 'a' and the multicharacter strings &quot;ab&quot; and
292 UVector* strings; // maintained in sorted order member in class:UnicodeSet
727 * codepoints and strings.
771 * Returns true if this set contains all the characters and strings
799 * Returns true if this set contains none of the characters and strings
828 * and strings of the given set.
846 * consists only of characters and strings that are contained in this set
848 * or only of characters and strings that are not contained
866 * consists only of characters and strings tha
[all...]
/external/chromium/third_party/icu/public/i18n/unicode/
H A Dcolldata.h215 * @return the number of strings in the list.
231 UnicodeString *strings; member in class:StringList
304 * Get a list of all the strings which generate a list
311 * no such strings.
/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/icu4c/i18n/unicode/
H A Dcolldata.h225 * @return the number of strings in the list.
243 UnicodeString *strings; member in class:StringList
317 * Get a list of all the strings which generate a list
324 * no such strings.
/external/skia/src/animator/
H A DSkGetCondensedInfo.cpp30 static int _searchByName(const unsigned char* lengths, int count, const char* strings, const char target[]) { argument
35 if (strcmp(&strings[lengths[mid << 2]], target) < 0)
40 if (strcmp(&strings[lengths[hi << 2]], target) != 0)
91 const char* strings = gInfoNames[lookup]; local
92 int index = _searchByName(&info->fName, count, strings, match);
/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/chromium/third_party/icu/source/common/
H A Dunisetspan.h26 * Implement span() etc. for a set with strings.
65 * Do the strings need to be checked in span() etc.?
66 * @return TRUE if strings need to be checked (call span() here),
101 // Set for span(). Same as parent but without strings.
105 // Same as spanSet, plus characters that start or end strings.
108 // The strings of the parent set.
109 const UVector &strings; member in class:UnicodeSetStringSpan
121 // the UTF-8 versions of the parent set's strings.
124 // Number of bytes for all UTF-8 versions of strings together.
127 // Maximum lengths of relevant strings
[all...]
H A Dustrenum.cpp305 uenum_openCharStringsEnumeration(const char* const* strings, int32_t count, argument
308 if (U_SUCCESS(*ec) && count >= 0 && (count == 0 || strings != 0)) {
315 result->uenum.context = (void*)strings;
/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/icu4c/common/unicode/
H A Duniset.h33 * A mutable set of Unicode characters and multicharacter strings. Objects of this class
99 * <td valign="top">The character 'a' and the multicharacter strings &quot;ab&quot; and
292 UVector* strings; // maintained in sorted order member in class:UnicodeSet
727 * codepoints and strings.
771 * Returns true if this set contains all the characters and strings
799 * Returns true if this set contains none of the characters and strings
828 * and strings of the given set.
846 * consists only of characters and strings that are contained in this set
848 * or only of characters and strings that are not contained
880 * consists only of characters and strings tha
[all...]
/external/icu4c/common/
H A Dunisetspan.h26 * Implement span() etc. for a set with strings.
65 * Do the strings need to be checked in span() etc.?
66 * @return TRUE if strings need to be checked (call span() here),
101 // Set for span(). Same as parent but without strings.
105 // Same as spanSet, plus characters that start or end strings.
108 // The strings of the parent set.
109 const UVector &strings; member in class:UnicodeSetStringSpan
121 // the UTF-8 versions of the parent set's strings.
124 // Number of bytes for all UTF-8 versions of strings together.
127 // Maximum lengths of relevant strings
[all...]
/external/openssl/crypto/ui/
H A Dui_locl.h142 STACK_OF(UI_STRING) *strings; /* We might want to prompt for more member in struct:ui_st
/external/bluetooth/glib/gio/tests/
H A Dg-file.c262 const struct TestPathsWithOper strings[] = local
272 for (i = 0; i < G_N_ELEMENTS (strings); i++)
274 gboolean equal = parse_check_utf8 (strings[i].use_uri, strings[i].path1, strings[i].path2);
516 /* Testing whether the g_file_new_for_path() correctly canonicalizes strings and two files equals (g_file_equal()) */
519 /* Testing whether the g_file_new_for_uri() correctly canonicalizes strings and two files equals (g_file_equal()) */
/external/bluetooth/glib/glib/
H A Dgtestutils.h246 gchar **strings; /* NULL terminated */ member in struct:__anon578
/external/chromium/third_party/icu/source/i18n/
H A Dreldtfmt.cpp195 // Linear search the relative strings
247 // Linear search the held strings
378 UResourceBundle *strings = calData.getByKey3("fields", "day", "relative", status); local
388 fDatesLen = ures_getSize(strings);
396 while(ures_hasNext(strings) && U_SUCCESS(status)) { // iterate over items
397 subString = ures_getNextResource(strings, subString, &status);
/external/chromium/third_party/icu/source/test/intltest/
H A Dthcoll.cpp362 UChar strings[LINES][20]; local
380 len = u_unescape(tests[i], strings[i], 20);
381 strings[i][len] = 0;
382 toSort[i] = strings[i];
394 errln("Inconsistent ordering between strings %i and %i", i, j);
H A Dtsdtfmsy.cpp333 const UnicodeString **strings = en.getZoneStrings(rowCount, columnCount); local
334 fr.setZoneStrings(strings, rowCount, columnCount);
338 if( strings[i][j] != strings1[i][j] ) {

Completed in 915 milliseconds

123