/external/toybox/toys/other/ |
H A D | reboot.c | 26 int types[] = {RB_AUTOBOOT, RB_HALT_SYSTEM, RB_POWER_OFF}; local 30 toys.exitval = reboot(types[stridx("hp", *toys.which->name)+1]);
|
H A D | vconfig.c | 41 char *types[] = {"VLAN_PLUS_VID", "DEV_PLUS_VID", "VLAN_PLUS_VID_NO_PAD", local 43 int i, j = sizeof(types)/sizeof(*types); 45 for (i=0; i<j; i++) if (!strcmp(toys.optargs[1], types[i])) break; 47 for (i=0; i<j; i++) puts(types[i]);
|
/external/v8/test/intl/break-iterator/ |
H A D | en-break.js | 36 var types = []; variable 43 types.push(iterator.breakType()); 56 assertEquals('letter', types[0]); 57 assertEquals('none', types[1]); 58 assertEquals('letter', types[2]); 59 assertEquals('none', types[3]); 60 assertEquals('letter', types[4]); 61 assertEquals('none', types[types.length - 1]);
|
H A D | zh-break.js | 37 var types = []; variable 44 types.push(iterator.breakType()); 58 assertEquals('ideo', types[0]); 59 assertEquals('ideo', types[1]); 60 assertEquals('none', types[2]); 61 assertEquals('ideo', types[3]); 62 assertEquals('ideo', types[4]); 63 assertEquals('none', types[types.length - 1]);
|
/external/iptables/include/linux/netfilter_ipv6/ |
H A D | ip6t_mh.h | 4 #include <linux/types.h> 8 __u8 types[2]; /* MH type range */ member in struct:ip6t_mh
|
/external/javasqlite/src/main/java/SQLite/ |
H A D | Callback.java | 53 * @param types string array holding column types 56 public void types(String types[]); argument
|
H A D | TableResult.java | 54 public String types[]; field in class:TableResult 97 types = null; 116 public void types(String types[]) { argument 117 this.types = types;
|
/external/kernel-headers/original/uapi/linux/netfilter_ipv6/ |
H A D | ip6t_mh.h | 4 #include <linux/types.h> 8 __u8 types[2]; /* MH type range */ member in struct:ip6t_mh
|
/external/chromium-trace/trace-viewer/third_party/Paste/paste/auth/ |
H A D | form.py | 137 import types namespace 139 assert isinstance(authfunc, types.FunctionType), "authfunc must resolve to a function"
|
H A D | basic.py | 114 import types namespace 116 assert isinstance(authfunc, types.FunctionType), "authfunc must resolve to a function"
|
/external/clang/include/clang/Driver/ |
H A D | Types.h | 18 namespace types { namespace in namespace:clang::driver 57 /// types). 87 } // end namespace types
|
/external/javasqlite/src/main/java/SQLite/JDBC2z/ |
H A D | TableResultX.java | 30 this.types = tr.types; 36 if (tr.types != null) { 37 for (int i = 0; i < tr.types.length; i++) { 38 sql_type[i] = JDBCDatabaseMetaData.mapSqlType(tr.types[i]); 43 void sql_types(int types[]) { argument 44 sql_type = types;
|
/external/mockito/cglib-and-asm/src/org/mockito/cglib/transform/impl/ |
H A D | AddPropertyTransformer.java | 26 private final Type[] types; field in class:AddPropertyTransformer 31 types = new Type[size]; 33 types[i] = (Type)props.get(names[i]); 37 public AddPropertyTransformer(String[] names, Type[] types) { argument 39 this.types = types; 44 EmitUtils.add_properties(this, names, types);
|
/external/v8/test/mjsunit/ |
H A D | typed-array-slice.js | 32 var types = [Array, Int8Array, Uint8Array, Int16Array, Uint16Array, variable 47 for (var t = 0; t < types.length; t++) { 48 var type = types[t];
|
/external/compiler-rt/lib/sanitizer_common/tests/ |
H A D | sanitizer_suppressions_test.cc | 72 void CheckSuppressions(unsigned count, std::vector<const char *> types, argument 77 EXPECT_STREQ(types[i], s->type);
|
/external/deqp/modules/gles2/functional/ |
H A D | es2fAttribLocationTests.cpp | 49 const AttribType types[] = local 69 for (int typeNdx = 0; typeNdx < DE_LENGTH_OF_ARRAY(types); typeNdx++) 71 const AttribType& type = types[typeNdx]; 82 for (int typeNdx = 0; typeNdx < DE_LENGTH_OF_ARRAY(types); typeNdx++) 84 const AttribType& type = types[typeNdx]; 95 for (int typeNdx = 0; typeNdx < DE_LENGTH_OF_ARRAY(types); typeNdx++) 97 const AttribType& type = types[typeNdx]; 102 // For types which occupy more than one location. Alias second location. 120 for (int typeNdx = 0; typeNdx < DE_LENGTH_OF_ARRAY(types); typeNdx++) 122 const AttribType& type = types[typeNd [all...] |
/external/dexmaker/src/main/java/com/google/dexmaker/ |
H A D | Comparison.java | 30 @Override Rop rop(TypeList types) { 31 return Rops.opIfLt(types); 37 @Override Rop rop(TypeList types) { 38 return Rops.opIfLe(types); 42 /** {@code a == b}. Supports int and reference types. */ 44 @Override Rop rop(TypeList types) { 45 return Rops.opIfEq(types); 51 @Override Rop rop(TypeList types) { 52 return Rops.opIfGe(types); 58 @Override Rop rop(TypeList types) { 70 rop(TypeList types) argument [all...] |
H A D | TypeList.java | 25 * An immutable of types. 28 final TypeId<?>[] types; field in class:TypeList 31 TypeList(TypeId<?>[] types) { argument 32 this.types = types.clone(); 33 this.ropTypes = new StdTypeList(types.length); 34 for (int i = 0; i < types.length; i++) { 35 ropTypes.set(i, types[i].ropType); 43 return Collections.unmodifiableList(Arrays.asList(types)); 47 return o instanceof TypeList && Arrays.equals(((TypeList) o).types, type [all...] |
/external/guava/guava/src/com/google/common/reflect/ |
H A D | TypeVisitor.java | 66 * Visits the given types. Null types are ignored. This allows subclasses to call 69 public final void visit(Type... types) { argument 70 for (Type type : types) {
|
/external/llvm/include/llvm/IR/ |
H A D | TypeBuilder.h | 1 //===---- llvm/TypeBuilder.h - Builder for LLVM types -----------*- C++ -*-===// 11 // create LLVM types with a consistent and simplified interface. 24 /// TypeBuilder - This provides a uniform API for looking up types 26 /// series of tag types in the llvm::types namespace, like i<N>, 30 /// these. TypeBuilder<T, true> removes native C types from this set 32 /// We define the primitive types, pointer types, and functions up to 33 /// 5 arguments here, but to use this class with your own types, 45 /// Function::Create(TypeBuilder<types 81 namespace types { namespace in namespace:llvm [all...] |
/external/mockito/cglib-and-asm/src/org/mockito/cglib/proxy/ |
H A D | Factory.java | 47 * @param types the constructor argument types 52 Object newInstance(Class[] types, Object[] args, Callback[] callbacks); argument
|
/external/selinux/libsepol/tests/ |
H A D | test-linker-roles.c | 50 * - role a and b in base, b dom a, are types correct (TODO) 75 char *types[2]; local 84 types[0] = "g_b_type_1"; 85 role = test_role_type_set(base, "g_b_role_1", NULL, types, 1, 0); 94 types[0] = "o1_b_type_1"; 95 role = test_role_type_set(base, "o1_b_role_1", decl, types, 1, 0); 105 char *types[3]; local 115 types[0] = "g_m1_type_1"; 116 role = test_role_type_set(base, "g_m1_role_1", NULL, types, 1, 0); 125 types[ [all...] |
H A D | test-linker-types.c | 32 /* Tests for types: 128 char *types[2]; local 130 /* These tests look at types in the base only, the desire is to ensure that 131 * types are not destroyed or otherwise removed during the link process. 132 * if this happens these tests won't work anyway since we are using types to 141 types[0] = "g_b_type_1"; 142 test_attr_types(base, "g_b_attr_1", NULL, types, 1); 150 types[0] = "o1_b_type_1"; 151 test_attr_types(base, "o1_b_attr_1", base->decl_val_to_struct[decls[0] - 1], types, 1); 166 char *types[ local [all...] |
/external/smali/dexlib2/src/main/java/org/jf/dexlib2/writer/builder/ |
H A D | BuilderTypeList.java | 44 @Nonnull final List<? extends BuilderTypeReference> types; field in class:BuilderTypeList 47 public BuilderTypeList(@Nonnull List<? extends BuilderTypeReference> types) { argument 48 this.types = types; 52 return types.get(index); 56 return types.size();
|
H A D | BuilderTypeListPool.java | 57 @Nonnull public BuilderTypeList internTypeList(@Nullable List<? extends CharSequence> types) { argument 58 if (types == null || types.size() == 0) { 62 BuilderTypeList ret = internedItems.get(types); 68 ImmutableList.copyOf(Iterables.transform(types, new Function<CharSequence, BuilderTypeReference>() { 84 return key==null?BuilderTypeList.EMPTY:key.types;
|