HomeSort by relevance Sort by last modified time
    Searched refs:strs (Results 1 - 25 of 135) sorted by null

1 2 3 4 5 6

  /external/clang/test/CodeGenCXX/
noinline-template.cpp 14 Vector<int> strs; local
15 strs.growStorageBy();
  /external/ltp/testscripts/build/
default_runtest_set.awk 37 split ($0,strs," ")
38 for (str in strs) {
  /packages/inputmethods/LatinIME/java/src/com/android/inputmethod/keyboard/internal/
CodesArrayParser.java 50 final String[] strs = codesArraySpec.split(VERTICAL_BAR_REGEX, -1); local
51 if (strs.length <= 1) {
54 return strs[0];
68 final String[] strs = codesArraySpec.split(VERTICAL_BAR_REGEX, -1); local
69 if (strs.length <= 1) {
72 return TextUtils.isEmpty(strs[1]) ? strs[0] : strs[1];
76 final String[] strs = codesArraySpec.split(VERTICAL_BAR_REGEX, -1); local
77 if (strs.length <= 2)
    [all...]
  /external/compiler-rt/test/asan/TestCases/Darwin/
crashlog-stacktraces.c 19 char** strs = backtrace_symbols(callstack, frames); local
21 fprintf(stderr, "%s\n", strs[i]);
23 free(strs);
  /external/icu/icu4c/source/tools/toolutil/
dbgutil.cpp 25 static UnicodeString **strs = NULL; variable
38 if(strs != NULL) {
40 delete [] strs[t];
42 delete[] strs;
43 strs = NULL;
59 if(strs == NULL) {
73 strs = newStrs;
80 if(strs == NULL ) {
87 return strs[UDBG_ENUM_COUNT][0];
93 return strs[type][count]
    [all...]
  /development/vndk/tools/definition-tool/assets/
insight-data.js 2 var strs = [
20 insight.init(document, strs, mods);
  /external/autotest/server/site_tests/bluetooth_Sanity_DefaultState/
bluetooth_Sanity_DefaultState.py 19 strs = []
21 strs.append("POWERED")
23 strs.append("CONNECTABLE")
25 strs.append("FAST-CONNECTABLE")
27 strs.append("DISCOVERABLE")
29 strs.append("PAIRABLE")
31 strs.append("LINK-SECURITY")
33 strs.append("SSP")
35 strs.append("BR/EDR")
37 strs.append("HS"
    [all...]
  /frameworks/base/media/java/android/media/tv/
TvContentRating.java 834 String[] strs = ratingString.split(DELIMITER); local
835 if (strs.length < 3) {
838 if (strs.length > 3) {
839 String[] subRatings = new String[strs.length - 3];
840 System.arraycopy(strs, 3, subRatings, 0, subRatings.length);
841 return new TvContentRating(strs[0], strs[1], strs[2], subRatings);
843 return new TvContentRating(strs[0], strs[1], strs[2], null)
    [all...]
  /external/clang/test/CodeGen/
staticinit.c 14 static char* strs[] = { "one", "two", "three", "four" }; local
  /external/jemalloc/test/unit/
ckh.c 24 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[i], kp, vp)
    [all...]
  /build/blueprint/
ninja_strings_test.go 25 strs []string
31 strs: []string{"abc def ", " jkl"},
36 strs: []string{"abc def ", "", ""},
41 strs: []string{"foo ", "! bar"},
46 strs: []string{"foo ", " bar"},
51 strs: []string{"foo ", " bar"},
56 strs: []string{"foo $$ bar"},
61 strs: []string{"", "", ""},
66 strs: []string{"", "$$"},
71 strs: []string{"foo bar"}
    [all...]
  /external/dagger2/compiler/src/it/producers-functional-tests/src/main/java/producerstest/
MultibindingComponent.java 26 ListenableFuture<Set<String>> strs(); method in interface:MultibindingComponent
MultibindingProducerModule.java 50 static Set<String> strs() { method in class:MultibindingProducerModule
55 static int strCount(Set<String> strs) {
56 return strs.size();
  /build/soong/android/
util.go 23 func JoinWithPrefix(strs []string, prefix string) string {
24 if len(strs) == 0 {
28 if len(strs) == 1 {
29 return prefix + strs[0]
32 n := len(" ") * (len(strs) - 1)
33 for _, s := range strs {
38 for i, s := range strs {
  /external/libmojo/mojo/public/cpp/bindings/tests/
wtf_types_unittest.cc 65 WTF::Vector<WTF::String> strs(4);
66 // strs[0] is null.
67 // strs[1] is empty.
68 strs[1] = "";
69 strs[2] = kHelloWorld;
70 strs[3] = WTF::String::fromUTF8(kUTF8HelloWorld);
72 return strs;
110 WTFArray<WTF::String> strs = ConstructStringArray(); local
111 auto cloned_strs = strs.Clone();
127 EXPECT_TRUE(strs.Equals(strs2))
131 WTF::Vector<WTF::String> strs = ConstructStringArray(); local
152 WTFArray<WTF::String> strs = ConstructStringArray(); local
253 WTF::Vector<WTF::String> strs = ConstructStringArray(); local
    [all...]
  /system/extras/simpleperf/scripts/
report.py 56 strs = self.dump()
57 return '\n'.join(strs)
60 strs = []
61 strs.append('CallTreeNode percentage = %.2f' % self.percentage)
63 strs.append(' %s' % function_name)
66 strs.extend([' ' + x for x in child_strs])
67 return strs
79 strs = []
80 strs.append('ReportItem (raw_line %s)' % self.raw_line)
82 strs.append('%s' % self.call_tree
    [all...]
  /frameworks/rs/
rsCppUtils.cpp 42 const char* rsuJoinStrings(int n, const char* const* strs) {
48 tmp.append(strs[i]);
  /tools/test/connectivity/acts/framework/acts/test_utils/bt/
PowerBaseTest.py 328 strs = [""]
330 strs.append("\t\t" + self.tag)
332 strs.append("\t\tMonsoon Measurement Data")
336 strs.append("\t\tAverage Current: {} mA.".format(average_cur))
337 strs.append("\t\tSTD DEV Current: {} mA.".format(stdev))
338 strs.append("\t\tVoltage: {} V.".format(self.voltage))
339 strs.append("\t\tTotal Power: {} mW.".format(total_power))
340 strs.append((
344 return "\n".join(strs)
353 strs = [
    [all...]
  /external/chromium-trace/catapult/common/py_utils/py_utils/
cloud_storage_unittest.py 67 strs = ['You are attempting to access protected data with no configured',
69 self._AssertRunCommandRaisesError(strs, cloud_storage.CredentialsError)
72 strs = ['status=403', 'status 403', '403 Forbidden']
73 self._AssertRunCommandRaisesError(strs, cloud_storage.PermissionError)
76 strs = ['InvalidUriError', 'No such object', 'No URLs matched',
78 self._AssertRunCommandRaisesError(strs, cloud_storage.NotFoundError)
81 strs = ['500 Internal Server Error']
82 self._AssertRunCommandRaisesError(strs, cloud_storage.ServerError)
85 strs = ['Random string']
86 self._AssertRunCommandRaisesError(strs, cloud_storage.CloudStorageError
    [all...]
  /device/linaro/bootloader/edk2/BaseTools/Source/C/VfrCompile/Pccts/support/sym/
sym.c 129 void zzs_init(int sz,int strs)
131 void zzs_init(sz, strs)
132 int sz, strs;
135 if ( sz <= 0 || strs <= 0 ) return;
142 strings = (char *) calloc(strs, sizeof(char));
145 fprintf(stderr, "Cannot allocate string table of size %d\n", strs);
149 strsize = strs;
  /system/extras/simpleperf/runtest/
runtest.py 50 strs = [indent_str + self.name]
52 strs.extend(child._dump(indent + 1))
53 return strs
71 strs = []
72 strs.append('Symbol name=%s comm=%s overhead=%f children_overhead=%f' % (
75 strs.append('\t%s' % self.call_tree)
76 return '\n'.join(strs)
89 strs = []
90 strs.append('SymbolOverheadRequirement')
92 strs.append('symbol_name=%s' % self.symbol_name
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Tools/i18n/
msgfmt.py 66 ids = strs = ''
70 offsets.append((len(ids), len(id), len(strs), len(MESSAGES[id])))
72 strs += MESSAGES[id] + '\0'
97 output += strs
  /build/blueprint/bootstrap/
glob.go 82 func joinWithPrefixAndQuote(strs []string, prefix string) string {
83 if len(strs) == 0 {
87 if len(strs) == 1 {
88 return prefix + `"` + strs[0] + `"`
91 n := len(" ") * (len(strs) - 1)
92 for _, s := range strs {
97 for i, s := range strs {
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/util/
Strings.java 382 String[] strs = new String[this.size()]; local
384 for (int i = 0; i != strs.length; i++)
386 strs[i] = this.get(i);
389 return strs;
394 String[] strs = new String[to - from]; local
398 strs[i - from] = this.get(i);
401 return strs;
  /external/clang/tools/arcmt-test/
arcmt-test.cpp 250 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];

Completed in 3350 milliseconds

1 2 3 4 5 6