Searched defs:types (Results 126 - 150 of 428) sorted by relevance

1234567891011>>

/external/chromium_org/tools/grit/grit/
H A Dtclib.py11 import types namespace
75 if isinstance(item, types.StringTypes):
104 assert isinstance(text, types.StringTypes)
/external/chromium_org/tools/grit/grit/tool/
H A Drc2grd.py13 import types namespace
334 if isinstance(item, types.StringTypes):
382 if not isinstance(item, types.StringTypes):
/external/chromium_org/tools/json_schema_compiler/test/
H A Darrays_unittest.cc56 // { "types": ["one", "two", "three"] }
57 base::ListValue* types = new base::ListValue(); local
58 types->AppendString("one");
59 types->AppendString("two");
60 types->AppendString("three");
62 value.Set("types", types);
76 EXPECT_EQ(enums_vector, enum_array_type.types);
85 // { "types": ["one", "two", "three"] }
86 base::ListValue* types local
[all...]
/external/chromium_org/tools/site_compare/
H A Dcommand_line.py19 import types namespace
24 return type(var) in types.StringTypes
703 # other argument types
/external/chromium_org/v8/src/ic/x64/
H A Dic-compiler-x64.cc73 Handle<Code> PropertyICCompiler::CompilePolymorphic(TypeHandleList* types, argument
97 Label* smi_target = IncludesNumberType(types) ? &number_case : &miss;
105 int receiver_count = types->length();
108 Handle<HeapType> type = types->at(current);
/external/clang/test/SemaTemplate/
H A Dinstantiate-exception-spec-cxx11.cpp92 struct types { struct in namespace:core_19754_example
93 typedef base<types> base;
94 typedef type1<types> type1;
95 typedef type2<types> type2;
98 base<types> val = base<types>();
/external/dexmaker/src/dx/java/com/android/dx/dex/file/
H A DAnnotationUtils.java148 * @param types {@code non-null;} the list of (the types of) the member classes
151 public static Annotation makeMemberClasses(TypeList types) { argument
152 CstArray array = makeCstArray(types);
224 * @param types {@code non-null;} the list of thrown types
227 public static Annotation makeThrows(TypeList types) { argument
228 CstArray array = makeCstArray(types);
238 * @param types {@code non-null;} the type list
241 private static CstArray makeCstArray(TypeList types) { argument
[all...]
/external/dexmaker/src/main/java/com/google/dexmaker/
H A DDexMaker.java82 * Fibonacci} class. DexMaker identifies types by their internal names like
123 * its parameters types. Next we declare the method, specifying its modifiers by
151 * useful for generating code that works with existing types like {@code String}
153 * involves new types. For this reason you may prefer to use raw types only and
194 private final Map<TypeId<?>, TypeDeclaration> types field in class:DexMaker
205 TypeDeclaration result = types.get(type);
208 types.put(type, result);
315 for (TypeDeclaration typeDeclaration : types.values()) {
327 * Generates a dex file and loads its types int
[all...]
/external/iptables/extensions/
H A Dlibip6t_mh.c52 printf("Valid MH types:");
75 mhinfo->types[1] = 0xFF;
105 static void parse_mh_types(const char *mhtype, uint8_t *types) argument
112 types[0] = types[1] = name_to_type(buffer);
117 types[0] = buffer[0] ? name_to_type(buffer) : 0;
118 types[1] = cp[0] ? name_to_type(cp) : 0xFF;
120 if (types[0] > types[1])
132 parse_mh_types(cb->arg, mhinfo->types);
[all...]
/external/javassist/src/main/javassist/compiler/
H A DJvstTypeChecker.java199 public void atMethodArgs(ASTList args, int[] types, int[] dims, argument
212 types[i] = exprType;
221 types[i] = exprType;
/external/ksoap2/ksoap2-base/src/main/java/org/ksoap2/kdom/
H A DNode.java43 protected StringBuffer types; field in class:Node
55 types = new StringBuffer();
68 types.insert(index, (char) type);
95 types, a String is returned. */
180 types are ELEMENT, TEXT, COMMENT, and PROCESSING_INSTRUCTION */
183 return types.charAt(index);
276 // types.deleteCharAt (index);
278 int n = types.length() - 1;
281 types.setCharAt(i, types
[all...]
/external/libsepol/src/
H A Dcontext.c39 ebitmap_t types, roles; local
42 ebitmap_init(&types);
/external/lldb/examples/python/
H A Dperformance.py19 import types namespace
98 if isinstance(module, types.ListType):
101 elif isinstance(module, types.StringTypes):
106 if isinstance(file, types.ListType):
110 elif isinstance(file, types.StringTypes):
/external/lldb/test/unittest2/
H A Dloader.py7 import types namespace
122 if isinstance(obj, types.ModuleType):
126 elif (isinstance(obj, types.UnboundMethodType) and
/external/mockito/cglib-and-asm/src/org/mockito/cglib/beans/
H A DBulkBean.java35 public Object newInstance(String target, String[] getters, String[] setters, String[] types); argument
40 protected Class[] types; field in class:BulkBean
54 return (Class[])types.clone();
65 public static BulkBean create(Class target, String[] getters, String[] setters, Class[] types) { argument
70 gen.setTypes(types);
79 private Class[] types; field in class:BulkBean.Generator
97 public void setTypes(Class[] types) { argument
98 this.types = types;
108 String[] typeClassNames = ReflectUtils.getNames(types);
[all...]
/external/openssl/crypto/asn1/
H A Da_mbstr.c76 * a mask of permissible ASN1 string types. It then works out the minimal
311 unsigned long types; local
312 types = *((unsigned long *)arg);
313 if((types & B_ASN1_PRINTABLESTRING) && !is_printable(value))
314 types &= ~B_ASN1_PRINTABLESTRING;
315 if((types & B_ASN1_IA5STRING) && (value > 127))
316 types &= ~B_ASN1_IA5STRING;
317 if((types & B_ASN1_T61STRING) && (value > 0xff))
318 types &= ~B_ASN1_T61STRING;
319 if((types
[all...]
/external/skia/src/animator/
H A DSkScriptCallBack.h40 virtual void getParamTypes(SkIntArray(SkOperand2::OpType)* types) = 0; member in class:SkScriptCallBackFunction
55 virtual void getParamTypes(SkIntArray(SkOperand2::OpType)* types) = 0; member in class:SkScriptCallBackMemberFunction
/external/smack/src/org/xbill/DNS/
H A DNSEC3Record.java12 * ordered list of hashed names in the zone, and a set of types for which
53 private TypeBitmap types; field in class:NSEC3Record
75 * @param types The types present at the original ownername.
79 int [] types)
100 this.types = new TypeBitmap(types);
117 types = new TypeBitmap(in);
134 types.toWire(out);
154 types
77 NSEC3Record(Name name, int dclass, long ttl, int hashAlg, int flags, int iterations, byte [] salt, byte [] next, int [] types) argument
[all...]
/external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime/
H A DBufferedTokenStream.cs291 public virtual List<IToken> GetTokens(int start, int stop, BitSet types) { argument
301 // list = tokens[start:stop]:{Token t, t.getType() in types}
305 if (types == null || types.Member(t.Type)) {
315 public virtual List<IToken> GetTokens(int start, int stop, IEnumerable<int> types) { argument
316 return GetTokens(start, stop, new BitSet(types));
H A DLegacyCommonTokenStream.cs244 public virtual IList<IToken> GetTokens(int start, int stop, BitSet types) { argument
258 // list = tokens[start:stop]:{Token t, t.getType() in types}
262 if (types == null || types.Member(t.Type)) {
272 public virtual IList<IToken> GetTokens(int start, int stop, IList<int> types) { argument
273 return GetTokens(start, stop, new BitSet(types));
/external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime/
H A DBufferedTokenStream.cs331 public virtual List<IToken> GetTokens(int start, int stop, BitSet types) argument
342 // list = tokens[start:stop]:{Token t, t.getType() in types}
347 if (types == null || types.Member(t.Type))
359 public virtual List<IToken> GetTokens(int start, int stop, IEnumerable<int> types) argument
361 return GetTokens(start, stop, new BitSet(types));
/external/antlr/antlr-3.4/runtime/Java/src/main/java/org/antlr/runtime/
H A DLegacyCommonTokenStream.java199 public List getTokens(int start, int stop, BitSet types) { argument
213 // list = tokens[start:stop]:{Token t, t.getType() in types}
217 if ( types==null || types.member(t.getType()) ) {
227 public List getTokens(int start, int stop, List types) { argument
228 return getTokens(start,stop,new BitSet(types));
/external/chromium_org/chrome/browser/browsing_data/
H A Dbrowsing_data_file_system_helper.cc124 // We check usage for these filesystem types.
125 const storage::FileSystemType types[] = { local
135 for (size_t i = 0; i < arraysize(types); ++i) {
136 storage::FileSystemType type = types[i];
/external/chromium_org/chrome/browser/extensions/api/management/
H A Dmanagement_browsertest.cc212 int types[] = {extensions::NOTIFICATION_EXTENSION_UPDATING_STARTED, local
214 for (size_t i = 0; i < arraysize(types); i++) {
216 this, types[i], content::NotificationService::AllSources());
/external/chromium_org/chrome/browser/extensions/updater/
H A Dlocal_extension_cache.cc278 int types = base::FileEnumerator::FILES | base::FileEnumerator::DIRECTORIES; local
279 base::FileEnumerator enumerator(cache_dir, false /* recursive */, types);

Completed in 576 milliseconds

1234567891011>>