/external/clang/test/CodeGenCXX/ |
H A D | noinline-template.cpp | 14 Vector<int> strs; local 15 strs.growStorageBy();
|
/external/stlport/test/unit/ |
H A D | collate_facets_test.cpp | 58 string strs[] = {"abdd", "ab�d", "abbd", "abcd"}; local 62 transformed[i] = col.transform(strs[i].data(), strs[i].data() + strs[i].size()); 65 sort(strs, strs + 4, loc); 66 CPPUNIT_ASSERT( strs[0] == "abbd" ); 67 CPPUNIT_ASSERT( strs[1] == "abcd" ); 68 CPPUNIT_ASSERT( strs[2] == "ab�d" ); 69 CPPUNIT_ASSERT( strs[ 109 wstring strs[] = {L"abdd", L"abcd", L"abbd", L"abcd"}; local 234 string strs[] = {"abdd", /* "ab�d",*/ "abbd", "abcd"}; local [all...] |
H A D | mvctor_test.cpp | 625 vector<string> strs; local 630 strs.push_back(it->front()); 639 CPPUNIT_ASSERT( strs.size() == 10 * 10 ); 640 vector<string>::iterator it(strs.begin()), itEnd(strs.end()); 654 vector<string> strs; local 659 strs.push_back(it->front()); 668 CPPUNIT_ASSERT( strs.size() == 10 * 10 ); 669 vector<string>::iterator it(strs.begin()), itEnd(strs 678 vector<string> strs; local 703 vector<string> strs; local 732 vector<string> strs; local 762 vector<string> strs; local [all...] |
/external/chromium_org/third_party/icu/source/tools/toolutil/ |
H A D | dbgutil.cpp | 23 static UnicodeString **strs = NULL; variable 36 if(strs != NULL) { 38 delete [] strs[t]; 40 delete[] strs; 41 strs = NULL; 57 if(strs == NULL) { 71 strs = newStrs; 78 if(strs == NULL ) { 85 return strs[UDBG_ENUM_COUNT][0]; 91 return strs[typ [all...] |
/external/icu4c/tools/toolutil/ |
H A D | dbgutil.cpp | 23 static UnicodeString **strs = NULL; variable 36 if(strs != NULL) { 38 delete [] strs[t]; 40 delete[] strs; 41 strs = NULL; 57 if(strs == NULL) { 71 strs = newStrs; 78 if(strs == NULL ) { 85 return strs[UDBG_ENUM_COUNT][0]; 91 return strs[typ [all...] |
/external/clang/test/CodeGen/ |
H A D | staticinit.c | 14 static char* strs[] = { "one", "two", "three", "four" }; local
|
/external/smack/src/org/jivesoftware/smackx/workgroup/util/ |
H A D | ModelUtil.java | 151 public static final String concat(String[] strs) {
argument 152 return concat(strs, " "); //NOTRANS
163 public static final String concat(String[] strs, String delim) {
argument 164 if (strs != null) {
166 final int n = strs.length;
168 final String str = strs[i];
|
/external/marisa-trie/tests/ |
H A D | trie-test.cc | 168 std::vector<std::string> strs; local 169 ASSERT(trie.predict("a", &ids, &strs) == 3); 174 ASSERT(strs[0] == "app"); 175 ASSERT(strs[1] == "apple"); 176 ASSERT(strs[2] == "and"); 353 std::vector<std::string> strs; local 354 ASSERT(trie.predict("ca", &ids, &strs, 1) == 1); 357 ASSERT(strs.size() == 1); 358 ASSERT(strs[0] == "car"); 360 ASSERT(trie.predict_callback("", PredictCallback(&ids, &strs)) 387 std::string strs[10]; local 559 std::vector<std::string> strs; local 626 std::vector<std::string> strs; local [all...] |
/external/marisa-trie/v0_1_5/tests/ |
H A D | trie-test.cc | 170 std::vector<std::string> strs; local 171 ASSERT(trie.predict("a", &ids, &strs) == 3); 176 ASSERT(strs[0] == "app"); 177 ASSERT(strs[1] == "apple"); 178 ASSERT(strs[2] == "and"); 355 std::vector<std::string> strs; local 356 ASSERT(trie.predict("ca", &ids, &strs, 1) == 1); 359 ASSERT(strs.size() == 1); 360 ASSERT(strs[0] == "car"); 362 ASSERT(trie.predict_callback("", PredictCallback(&ids, &strs)) 389 std::string strs[10]; local 577 std::vector<std::string> strs; local 646 std::vector<std::string> strs; local [all...] |
/external/chromium_org/chrome/third_party/chromevox/chromevox/background/mathmaps/ |
H A D | math_map.js | 174 var strs = cvox.MathMap.loadFiles(files); 176 return [].concat.apply([], strs.map(
|
/external/clang/tools/arcmt-test/ |
H A D | arcmt-test.cpp | 251 SmallVector<StringRef, 8> strs; local 252 inputBuf->getBuffer().split(strs, "\n", /*MaxSplit=*/-1, /*KeepEmpty=*/false); 254 if (strs.empty()) { 258 if (strs.size() % 2 != 0) { 263 for (unsigned i = 0, e = strs.size(); i != e; i += 2) { 264 StringRef inputOrigFname = strs[i]; 265 StringRef inputResultFname = strs[i+1];
|
/external/dropbear/libtomcrypt/testprof/ |
H A D | der_tests.c | 23 unsigned char strs[10][10], outbuf[128]; local 41 LTC_SET_ASN1(list, 0, LTC_ASN1_BIT_STRING, strs[1], sizeof(strs[1])); 43 LTC_SET_ASN1(list, 2, LTC_ASN1_OCTET_STRING, strs[0], sizeof(strs[0])); 51 if (memcmp(strs[0], oct_str, sizeof(oct_str))) { 56 if (memcmp(strs[1], bin_str, sizeof(bin_str))) { 66 strcpy((char*)strs[0], "one"); 67 strcpy((char*)strs[1], "one2"); 68 strcpy((char*)strs[ [all...] |
/external/marisa-trie/lib/marisa/ |
H A D | trie-build.cc | 263 Vector<String> strs; local 264 strs.resize(keys.size()); 265 for (UInt32 i = 0; i < strs.size(); ++i) { 266 strs[i] = keys[i].str(); 268 tail_.build(strs, terminals, progress.tail()); 286 Vector<String> strs; local 287 strs.resize(rkeys.size()); 288 for (UInt32 i = 0; i < strs.size(); ++i) { 289 strs[i] = String(rkeys[i].str().ptr(), rkeys[i].str().length()); 291 tail_.build(strs, terminal [all...] |
/external/marisa-trie/v0_1_5/lib/marisa_alpha/ |
H A D | trie-build.cc | 277 Vector<String> strs; local 278 strs.resize(keys.size()); 279 for (UInt32 i = 0; i < strs.size(); ++i) { 280 strs[i] = keys[i].str(); 282 tail_.build(strs, terminals, progress.tail()); 300 Vector<String> strs; local 301 strs.resize(rkeys.size()); 302 for (UInt32 i = 0; i < strs.size(); ++i) { 303 strs[i] = String(rkeys[i].str().ptr(), rkeys[i].str().length()); 305 tail_.build(strs, terminal [all...] |
/external/chromium_org/chromeos/dbus/ |
H A D | shill_client_unittest_base.cc | 213 std::vector<std::string> strs; local 214 ASSERT_TRUE(reader->PopArrayOfStrings(&strs)); 215 EXPECT_EQ(expected_strings, strs);
|
/external/elfutils/libcpu/ |
H A D | i386_parse.y | 890 static void *strs[3]; 925 if (tfind (&search, &strs[i], compare_argstring) == NULL) 930 if (tsearch (newp, &strs[i], compare_argstring) == NULL) 1178 twalk (strs[i], print_op_str); 1183 twalk (strs[i], print_op_str_idx); 1220 struct argstring **res = tfind (&search, &strs[i],
|
H A D | i386_parse.c | 2495 static void *strs[3]; 2530 if (tfind (&search, &strs[i], compare_argstring) == NULL) 2535 if (tsearch (newp, &strs[i], compare_argstring) == NULL) 2783 twalk (strs[i], print_op_str); 2788 twalk (strs[i], print_op_str_idx); 2825 struct argstring **res = tfind (&search, &strs[i], 2492 static void *strs[3]; variable
|
/external/chromium_org/third_party/icu/source/common/ |
H A D | uloc.c | 2273 char **strs; local 2377 strs = uprv_malloc((size_t)(sizeof(strs[0])*n)); 2379 if (strs == NULL) { 2388 strs[i]=j[i].locale; 2391 (const char**)strs, n, availableLocales, status); 2393 uprv_free(strs[i]); 2395 uprv_free(strs);
|
/external/icu4c/common/ |
H A D | uloc.cpp | 2251 char **strs; local 2355 strs = static_cast<char **>(uprv_malloc((size_t)(sizeof(strs[0])*n))); 2357 if (strs == NULL) { 2366 strs[i]=j[i].locale; 2369 (const char**)strs, n, availableLocales, status); 2371 uprv_free(strs[i]); 2373 uprv_free(strs);
|
/external/valgrind/main/coregrind/m_debuginfo/ |
H A D | readmacho.c | 846 UChar *strs; local 863 strs = (UChar *)(ii.macho_img + symcmd->stroff); 883 strs, symcmd->strsize); 888 strs, symcmd->strsize);
|
/external/chromium_org/third_party/icu/source/test/intltest/ |
H A D | dtfmttst.cpp | 3225 UnicodeString strf, strl, strm, strs; local 3246 strs = fmts->format(dt, strs); 3261 logln("strs.charAt(10)=%04X wanted 0x20\n", strs.charAt(8)); 3262 if (strs.charAt(8) != UChar(0x0020)) { 3263 errln((UnicodeString)"FAIL: Improper formatted date: " + strs);
|
/external/icu4c/test/intltest/ |
H A D | dtfmttst.cpp | 3517 UnicodeString strf, strl, strm, strs; local 3538 strs = fmts->format(dt, strs); 3545 logln("strs.charAt(10)=%04X wanted 0x20\n", strs.charAt(8)); 3546 if (strs.charAt(10) != UChar(0x0020)) { 3547 errln((UnicodeString)"FAIL: Improper formatted date: " + strs);
|
/external/libvpx/libvpx/examples/includes/geshi/ |
H A D | geshi.php | 3021 // OPTIMISE - move $strs out. Make an array:
|
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.apache.ant_1.7.1.v20090120-1145/lib/ |
H A D | ant.jar | ... void initializeClass (java.lang.Class) Exception e
String[] strs
Class theClass
java.lang.reflect.Constructor[] cons ... |