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

1 2 3 4 5 6 7

  /external/selinux/libsepol/src/
kernel_to_common.h 74 struct strs { struct
89 int strs_init(struct strs **strs, size_t size);
90 void strs_destroy(struct strs **strs);
91 void strs_free_all(struct strs *strs);
92 int strs_add(struct strs *strs, char *s);
94 int strs_create_and_add(struct strs *strs, const char *fmt, int num, ...)
    [all...]
kernel_to_common.c 99 int strs_init(struct strs **strs, size_t size)
101 struct strs *new;
103 *strs = NULL;
105 new = malloc(sizeof(struct strs));
121 *strs = new;
126 void strs_destroy(struct strs **strs)
128 if (!strs || !*strs) {
345 struct strs *strs = (struct strs *)args; local
371 struct strs *strs; local
    [all...]
kernel_to_cil.c 31 struct strs *stack;
119 struct strs *stack = NULL;
262 struct strs *mls_list,
263 struct strs *non_mls_list)
271 struct strs *strs; local
284 strs = mls_list;
287 strs = non_mls_list;
290 rc = strs_create_and_add(strs, format_str, 3, classkey, perms+1, expr);
305 struct strs *mls_list
312 struct strs *strs; local
417 struct strs *strs; local
532 struct strs *strs; local
765 struct strs *strs = args; local
779 struct strs *strs; local
870 struct strs *strs = args; local
884 struct strs *strs; local
1139 struct strs *strs; local
1184 struct strs *strs; local
1229 struct strs *strs; local
1272 struct strs *strs = (struct strs *)args; local
1283 struct strs *strs; local
1313 struct strs *strs; local
1358 struct strs *strs; local
1419 struct strs *strs; local
1473 struct strs *strs; local
1521 struct strs *strs; local
1726 struct strs *strs; member in struct:map_avtab_args
1734 struct strs *strs = map_args->strs; local
1758 struct strs *strs; local
1807 struct strs *strs; member in struct:map_filename_trans_args
1816 struct strs *strs = map_args->strs; local
1832 struct strs *strs; local
1907 struct strs *strs; member in struct:map_range_trans_args
1916 struct strs *strs = map_args->strs; local
1943 struct strs *strs; local
1980 struct strs *strs; local
2114 struct strs *strs, *type_strs; local
2239 struct strs *strs; local
2280 struct strs *strs; local
2318 struct strs *strs, *role_strs; local
2482 struct strs *strs; local
2576 struct strs *strs; local
    [all...]
kernel_to_conf.c 30 struct strs *stack;
117 struct strs *stack = NULL;
258 struct strs *mls_list,
259 struct strs *non_mls_list)
262 struct strs *strs; local
283 strs = mls_list;
286 strs = non_mls_list;
289 rc = strs_create_and_add(strs, format_str, 4,
305 struct strs *mls_list
309 struct strs *strs; local
431 struct strs *strs; local
483 struct strs *strs; local
729 struct strs *strs = args; local
742 struct strs *strs; local
856 struct strs *strs = args; local
869 struct strs *strs; local
1113 struct strs *strs; local
1158 struct strs *strs; local
1203 struct strs *strs; local
1246 struct strs *strs = (struct strs *)args; local
1257 struct strs *strs; local
1287 struct strs *strs; local
1332 struct strs *strs; local
1385 struct strs *strs; local
1481 struct strs *strs; local
1508 struct strs *strs; local
1566 struct strs *strs; local
1694 struct strs *strs; member in struct:map_avtab_args
1702 struct strs *strs = map_args->strs; local
1726 struct strs *strs; local
1775 struct strs *strs; member in struct:map_filename_trans_args
1784 struct strs *strs = map_args->strs; local
1800 struct strs *strs; local
1875 struct strs *strs; member in struct:map_range_trans_args
1884 struct strs *strs = map_args->strs; local
1911 struct strs *strs; local
1948 struct strs *strs; local
2080 struct strs *strs; local
2162 struct strs *strs; local
2203 struct strs *strs; local
2241 struct strs *strs; local
2342 struct strs *strs; local
2436 struct strs *strs; local
    [all...]
  /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...]
  /development/vndk/tools/definition-tool/tests/
test_command_deps_insight.py 27 def _get_module(cls, strs, mods, path):
29 if strs[mod[cls._PATH_FIELD]] == path:
35 def _get_module_deps(cls, strs, mods, path):
36 mod = cls._get_module(strs, mods, path)
39 result.update(strs[mods[x][cls._PATH_FIELD]] for x in deps)
44 def _get_module_users(cls, strs, mods, path):
45 mod = cls._get_module(strs, mods, path)
47 return set(strs[mods[x][cls._PATH_FIELD]] for x in users)
73 strs, mods = DepsInsightCommand.serialize_data(
76 deps = self._get_module_deps(strs, mods, libvndk.path
    [all...]
test_dex_file.py 78 strs = set(DexFileReader.enumerate_dex_strings_buf(buf))
80 self.assertIn('hello', strs)
81 self.assertIn('world', strs)
97 strs = set(DexFileReader.enumerate_dex_strings_apk(zip_file))
99 self.assertIn('hello', strs)
100 self.assertIn('world', strs)
101 self.assertIn('foo', strs)
102 self.assertIn('bar', strs)
  /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...]
  /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...]
  /development/vndk/tools/definition-tool/assets/insight/
insight-data.js 2 var strs = [
23 insight.init(document, strs, mods);
  /external/clang/test/CodeGen/
staticinit.c 14 static char* strs[] = { "one", "two", "three", "four" }; local
  /system/tools/hidl/build/
utils.go 18 func wrap(prefix string, strs []string, suffix string) []string {
19 ret := make([]string, len(strs))
20 for i, v := range strs {
35 func remove(str string, strs []string) []string {
37 for _, v := range strs {
  /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/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...]
  /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();
  /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...]
  /frameworks/rs/
rsCppUtils.cpp 45 const char* rsuJoinStrings(int n, const char* const* strs) {
51 tmp.append(strs[i]);
  /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...]
  /external/tensorflow/tensorflow/core/lib/strings/
strcat_test.cc 68 string strs[] = {"Hello", "Cruel", "World"}; local
86 result = tensorflow::strings::StrCat(strs[1], pieces[2]);
89 result = tensorflow::strings::StrCat(strs[0], ", ", pieces[2]);
93 tensorflow::strings::StrCat(strs[0], ", ", strs[1], " ", strs[2], "!");
215 string strs[] = {"Hello", "Cruel", "World"}; local
225 tensorflow::strings::StrAppend(&result, strs[0]);
229 tensorflow::strings::StrAppend(&result, strs[1], pieces[2]);
233 tensorflow::strings::StrAppend(&result, strs[0], ", ", pieces[2])
    [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;

Completed in 437 milliseconds

1 2 3 4 5 6 7