Searched defs:strs (Results 1 - 25 of 30) sorted by relevance

12

/external/clang/test/CodeGenCXX/
H A Dnoinline-template.cpp14 Vector<int> strs; local
15 strs.growStorageBy();
/external/dagger2/compiler/src/it/producers-functional-tests/src/main/java/producerstest/
H A DMultibindingComponent.java26 ListenableFuture<Set<String>> strs(); method in interface:MultibindingComponent
H A DMultibindingProducerModule.java50 static Set<String> strs() { method in class:MultibindingProducerModule
55 static int strCount(Set<String> strs) { argument
56 return strs.size();
/external/compiler-rt/test/asan/TestCases/Darwin/
H A Dcrashlog-stacktraces.c19 char** strs = backtrace_symbols(callstack, frames); local
21 fprintf(stderr, "%s\n", strs[i]);
23 free(strs);
/external/chromium-trace/catapult/third_party/gsutil/third_party/boto/tests/db/
H A Dtest_lists.py29 strs = ListProperty(str) variable in class:SimpleListModel
50 t.strs = ["B", "C", "A", "D", "Foo"]
56 assert(t.strs == ["B", "C", "A", "D", "Foo"])
65 item['strs'] = ["A", "B", "C"]
69 i1 = sorted(item['strs'])
70 i2 = t.strs
78 t.strs = ["Bizzle", "Bar"]
82 assert(SimpleListModel.find(strs="Bizzle").count() == 1)
83 assert(SimpleListModel.find(strs="Bar").count() == 1)
84 assert(SimpleListModel.find(strs
[all...]
H A Dtest_query.py29 strs = ListProperty(str) variable in class:SimpleModel
46 o.strs = ["B", "A", "C", "Foo"]
143 assert(SimpleModel.find(strs="A").next().id == self.objs[0].id)
144 assert(SimpleModel.find(strs="B").next().id == self.objs[0].id)
145 assert(SimpleModel.find(strs="C").next().id == self.objs[0].id)
150 query.filter("strs like", "%oo%")
/external/clang/test/CodeGen/
H A Dstaticinit.c14 static char* strs[] = { "one", "two", "three", "four" }; local
/external/icu/icu4c/source/tools/toolutil/
H A Ddbgutil.cpp23 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/jemalloc/test/unit/
H A Dckh.c24 const char *strs[] = { local
42 for (i = 0; i < sizeof(strs)/sizeof(const char *); i++) {
43 ckh_insert(tsd, &ckh, strs[i], strs[i]);
50 for (i = 0; i < sizeof(strs)/sizeof(const char *); i++) {
62 assert_false(ckh_search(&ckh, strs[i], kp, vp),
65 ks = (i & 1) ? strs[i] : (const char *)NULL;
66 vs = (i & 2) ? strs[i] : (const char *)NULL;
76 for (i = 0; i < sizeof(strs)/sizeof(const char *); i++) {
88 assert_false(ckh_remove(tsd, &ckh, strs[
[all...]
/external/marisa-trie/tests/
H A Dtrie-test.cc168 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/lib/marisa/
H A Dtrie-build.cc263 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 Dtrie-build.cc277 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/marisa-trie/v0_1_5/tests/
H A Dtrie-test.cc170 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/clang/tools/arcmt-test/
H A Darcmt-test.cpp250 SmallVector<StringRef, 8> strs; local
251 inputBuf.get()->getBuffer().split(strs, "\n", /*MaxSplit=*/-1,
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/lldb/source/Host/linux/
H A DHost.cpp474 char** strs = ::backtrace_symbols (&frame_buffer[0], num_frames); local
475 if (strs)
479 strm.Printf("%s\n", strs[i]);
480 ::free (strs);
/external/valgrind/coregrind/m_debuginfo/
H A Dreadmacho.c904 DiCursor strs = DiCursor_INVALID; local
921 strs = ML_(cur_plus)(ML_(cur_from_sli)(msli), symcmd.stroff);
941 dysymcmd.nextdefsym, strs, symcmd.strsize);
947 dysymcmd.nlocalsym, strs, symcmd.strsize);
/external/icu/icu4c/source/common/
H A Duloc.cpp2293 char **strs; local
2397 strs = static_cast<char **>(uprv_malloc((size_t)(sizeof(strs[0])*n)));
2399 if (strs == NULL) {
2408 strs[i]=j[i].locale;
2411 (const char**)strs, n, availableLocales, status);
2413 uprv_free(strs[i]);
2415 uprv_free(strs);
/external/icu/icu4c/source/test/intltest/
H A Ddtfmttst.cpp3676 UnicodeString strf, strl, strm, strs; local
3697 strs = fmts->format(dt, strs);
3704 logln("strs.charAt(10)=%04X wanted 0x20\n", strs.charAt(8));
3705 if (strs.charAt(10) != UChar(0x0020)) {
3706 errln((UnicodeString)"FAIL: Improper formatted date: " + strs);
/external/owasp/sanitizer/tools/findbugs/lib/
H A Dcommons-lang-2.6.jarMETA-INF/ META-INF/MANIFEST.MF org/ org/apache/ org/apache/commons/ org/apache/commons/lang/ ...
/external/guice/extensions/struts2/lib/
H A Dxwork-core-2.2.1.jarMETA-INF/ META-INF/MANIFEST.MF xwork-validator-definition-1.0.dtd xwork ...
H A Dant-1.6.5.jar ... theClass java.lang.reflect.Constructor[] cons String[] strs Throwable t public void addSystemPackageRoot (java.lang.String ...
/external/dagger2/lib/
H A Dauto-value-1.0.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/google/ com/google/auto/ com/google/auto/value/ ...
/external/guice/extensions/persist/lib/
H A Dlog4j-1.2.14.jarMETA-INF/ META-INF/MANIFEST.MF org/ org/apache/ org/apache/log4j/ org/apache/log4j/Appender ...
/external/slf4j/log4j-over-slf4j/compatibility/lib/
H A Dlog4j-1.2.14.jarMETA-INF/ META-INF/MANIFEST.MF org/ org/apache/ org/apache/log4j/ org/apache/log4j/Appender ...
/external/testng/ant/
H A Divy-2.1.0.jarMETA-INF/ META-INF/MANIFEST.MF META-INF/LICENSE META-INF/NOTICE fr/ fr/ ...

Completed in 451 milliseconds

12