HomeSort by relevance Sort by last modified time
    Searched refs:Type (Results 51 - 75 of 4287) sorted by null

1 23 4 5 6 7 8 91011>>

  /dalvik/dx/src/com/android/dx/rop/type/
StdTypeList.java 17 package com.android.dx.rop.type;
30 public static final StdTypeList INT = StdTypeList.make(Type.INT);
33 public static final StdTypeList LONG = StdTypeList.make(Type.LONG);
36 public static final StdTypeList FLOAT = StdTypeList.make(Type.FLOAT);
39 public static final StdTypeList DOUBLE = StdTypeList.make(Type.DOUBLE);
42 public static final StdTypeList OBJECT = StdTypeList.make(Type.OBJECT);
46 = StdTypeList.make(Type.RETURN_ADDRESS);
50 StdTypeList.make(Type.THROWABLE);
54 StdTypeList.make(Type.INT, Type.INT)
    [all...]
Type.java 17 package com.android.dx.rop.type;
23 * Representation of a value type, such as may appear in a field, in a
28 public final class Type implements TypeBearer, Comparable<Type> {
33 private static final HashMap<String, Type> internTable =
34 new HashMap<String, Type>(500);
36 /** basic type constant for {@code void} */
39 /** basic type constant for {@code boolean} */
42 /** basic type constant for {@code byte} */
45 /** basic type constant for {@code char} *
    [all...]
  /external/dexmaker/src/dx/java/com/android/dx/rop/type/
StdTypeList.java 17 package com.android.dx.rop.type;
30 public static final StdTypeList INT = StdTypeList.make(Type.INT);
33 public static final StdTypeList LONG = StdTypeList.make(Type.LONG);
36 public static final StdTypeList FLOAT = StdTypeList.make(Type.FLOAT);
39 public static final StdTypeList DOUBLE = StdTypeList.make(Type.DOUBLE);
42 public static final StdTypeList OBJECT = StdTypeList.make(Type.OBJECT);
46 = StdTypeList.make(Type.RETURN_ADDRESS);
50 StdTypeList.make(Type.THROWABLE);
54 StdTypeList.make(Type.INT, Type.INT)
    [all...]
Type.java 17 package com.android.dx.rop.type;
24 * Representation of a value type, such as may appear in a field, in a
29 public final class Type implements TypeBearer, Comparable<Type> {
34 private static final HashMap<String, Type> internTable =
35 new HashMap<String, Type>(500);
37 /** basic type constant for {@code void} */
40 /** basic type constant for {@code boolean} */
43 /** basic type constant for {@code byte} */
46 /** basic type constant for {@code char} *
    [all...]
  /prebuilts/misc/common/swig/include/2.0.11/typemaps/
ptrtypes.swg 4 * Value typemaps (Type, const Type&) for "Ptr" types, such as swig
9 * %typemaps_asptr(CheckCode, AsPtrMeth, AsPtrFrag, Type)
10 * %typemaps_asptrfrom(CheckCode, AsPtrMeth, FromMeth, AsPtrFrag, FromFrag, Type)
14 * %typemaps_asptrfromn(CheckCode, Type)
18 * %ptr_in_typemap(asptr_meth,frag,Type)
19 * %ptr_varin_typemap(asptr_meth,frag,Type)
20 * %ptr_typecheck_typemap(check,asptr_meth,frag,Type)
21 * %ptr_directorout_typemap(asptr_meth,frag,Type)
28 %define %ptr_in_typemap(asptr_meth,frag,Type...
    [all...]
fragments.swg 5 fragments. Below is some info on how fragments and automatic type
57 * Define the basic macros to 'normalize' the type fragments
76 #define %fragment_name(Name, Type...) %string_name(Name) "_" {Type}
78 #define SWIG_Traits_frag(Type...) %fragment_name(Traits, Type)
79 #define SWIG_AsPtr_frag(Type...) %fragment_name(AsPtr, Type)
80 #define SWIG_AsVal_frag(Type...) %fragment_name(AsVal, Type)
    [all...]
implicit.swg 34 The plain implicit macro takes care of simple type list. If it doesn't
40 %define %implicit_type(Type...)
41 %traits_swigtype(Type);
44 %define %implicit_frag(Type...) ,fragment=SWIG_Traits_frag(Type) %enddef
46 %define %implicit_code(Type...)
48 Type _v;
49 int res = swig::asval<Type >(obj, &_v);
51 if (val) *val = new value_type(static_cast<const Type& >(_v));
59 %define %implicit(Type, ...
    [all...]
inoutlist.swg 79 %define %_value_input_typemap(code, asval_meth, asval_frag, Type)
80 %typemap(in,noblock=1,fragment=asval_frag) Type *INPUT ($*ltype temp, int res = 0) {
82 Type val;
92 %typemap(in,noblock=1,fragment=asval_frag) Type &INPUT($*ltype temp, int res = 0) {
94 Type val;
104 %typemap(freearg,noblock=1,match="in") Type *INPUT, Type &INPUT {
107 %typemap(typecheck,noblock=1,precedence=code,fragment=asval_frag) Type *INPUT, Type &INPUT {
117 %define %_ptr_input_typemap(code,asptr_meth,asptr_frag,Type)
    [all...]
swigmacros.swg 26 %const_cast(a, Type) const_cast<Type >(a)
27 %static_cast(a, Type) static_cast<Type >(a)
28 %reinterpret_cast(a, Type) reinterpret_cast<Type >(a)
29 %numeric_cast(a, Type) static_cast<Type >(a)
44 %new_instance(Type) Allocate a new instance of given Type
    [all...]
  /external/androidplot/AndroidPlot-Core/src/main/java/com/androidplot/util/
ZLinkedList.java 22 public class ZLinkedList<Type> extends LinkedList<Type> implements ZIndexable<Type> {
24 //private LinkedList<Type> list;
25 private ListOrganizer<Type> organizer;
28 //list = new LinkedList<Type>();
29 organizer = new ListOrganizer<Type>(this);
34 public boolean moveToTop(Type element) {
39 public boolean moveAbove(Type objectToMove, Type reference) {
    [all...]
  /external/google-breakpad/src/processor/
simple_serializer.h 49 template<class Type> class SimpleSerializer {
52 static size_t SizeOf(const Type &item) { return sizeof(item); }
55 static char *Write(const Type &item, char *dest) {
56 new (dest) Type(item);
  /external/mockito/cglib-and-asm/src/org/mockito/cglib/core/
Local.java 18 import org.mockito.asm.Type;
22 private Type type; field in class:Local
25 public Local(int index, Type type) {
26 this.type = type;
34 public Type getType() {
35 return type;
  /external/sl4a/Common/src/com/googlecode/android_scripting/rpc/
ParameterDescriptor.java 19 import java.lang.reflect.Type;
28 private final Type type; field in class:ParameterDescriptor
30 public ParameterDescriptor(String value, Type type) {
32 this.type = type;
39 public Type getType() {
40 return type;
  /external/webrtc/webrtc/modules/rtp_rtcp/source/
video_codec_information.h 22 virtual RtpVideoCodecTypes Type() = 0;
  /sdk/eclipse/plugins/com.android.ide.eclipse.gldebugger/src/com/android/ide/eclipse/gltrace/format/
GLDataTypeSpec.java 19 import com.android.ide.eclipse.gltrace.GLProtoBuf.GLMessage.DataType.Type;
23 private final Type mType;
27 public GLDataTypeSpec(String type, String name) {
28 mCType = type;
31 mType = getDataType(type);
32 mIsPointer = type.contains("*"); //$NON-NLS-1$
35 private Type getDataType(String type) {
36 type = type.toLowerCase()
    [all...]
  /dalvik/dexgen/src/com/android/dexgen/rop/type/
Type.java 17 package com.android.dexgen.rop.type;
24 * Representation of a value type, such as may appear in a field, in a
29 public final class Type implements TypeBearer, Comparable<Type> {
31 private static final HashMap<String, Type> internTable =
32 new HashMap<String, Type>(500);
35 private static final HashMap<Class, Type> CLASS_TYPE_MAP =
36 new HashMap<Class, Type>();
38 /** basic type constant for {@code void} */
41 /** basic type constant for {@code boolean} *
    [all...]
  /external/javassist/src/main/javassist/bytecode/analysis/
Executor.java 35 private final Type STRING_TYPE;
36 private final Type CLASS_TYPE;
37 private final Type THROWABLE_TYPE;
76 frame.push(Type.UNINIT);
85 frame.push(Type.INTEGER);
89 frame.push(Type.LONG);
90 frame.push(Type.TOP);
95 frame.push(Type.FLOAT);
99 frame.push(Type.DOUBLE);
100 frame.push(Type.TOP)
252 Type type = frame.peek(); local
261 Type type = frame.peek(); local
705 Type type = zeroExtend(typeFromDesc(desc)); local
753 Type type; local
781 Type type = frame.getLocal(index); local
791 Type type = null; local
828 Type type = resolveClassInfo(constPool.getClassInfo(iter.u16bitAt(pos + 1))); local
849 Type type = zeroExtend(typeFromDesc(desc)); local
869 Type type = simplePop(frame); local
965 Type type = frame.peek(); local
970 Type type = frame.pop(); local
    [all...]
  /libcore/luni/src/main/java/libcore/reflect/
ListOfTypes.java 19 import java.lang.reflect.Type;
27 private final ArrayList<Type> types;
28 private Type[] resolvedTypes;
31 types = new ArrayList<Type>(capacity);
34 ListOfTypes(Type[] types) {
35 this.types = new ArrayList<Type>(types.length);
36 for (Type type : types) {
37 this.types.add(type);
41 void add(Type type)
68 Type type = unresolved.get(i); local
    [all...]
  /dalvik/dexgen/src/com/android/dexgen/rop/cst/
CstType.java 19 import com.android.dexgen.rop.type.Type;
24 * Constants that represent an arbitrary type (reference or primitive).
28 private static final HashMap<Type, CstType> interns =
29 new HashMap<Type, CstType>(100);
32 public static final CstType OBJECT = intern(Type.OBJECT);
35 public static final CstType BOOLEAN = intern(Type.BOOLEAN_CLASS);
38 public static final CstType BYTE = intern(Type.BYTE_CLASS);
41 public static final CstType CHARACTER = intern(Type.CHARACTER_CLASS);
44 public static final CstType DOUBLE = intern(Type.DOUBLE_CLASS)
86 private final Type type; field in class:CstType
    [all...]
  /dalvik/dx/src/com/android/dx/rop/cst/
CstType.java 19 import com.android.dx.rop.type.Type;
24 * Constants that represent an arbitrary type (reference or primitive).
28 private static final HashMap<Type, CstType> interns =
29 new HashMap<Type, CstType>(100);
32 public static final CstType OBJECT = intern(Type.OBJECT);
35 public static final CstType BOOLEAN = intern(Type.BOOLEAN_CLASS);
38 public static final CstType BYTE = intern(Type.BYTE_CLASS);
41 public static final CstType CHARACTER = intern(Type.CHARACTER_CLASS);
44 public static final CstType DOUBLE = intern(Type.DOUBLE_CLASS)
86 private final Type type; field in class:CstType
    [all...]
  /prebuilts/misc/common/swig/include/2.0.11/python/
pycomplex.swg 3 provide complex Type, the Name you want to use in the converters,
11 %define %swig_fromcplx_conv(Type, Real, Imag)
12 %fragment(SWIG_From_frag(Type),"header")
15 SWIG_From(Type)(%ifcplusplus(const Type&, Type) c)
23 %define %swig_cplxdbl_conv(Type, Constructor, Real, Imag)
24 %fragment(SWIG_AsVal_frag(Type),"header",
28 SWIG_AsVal(Type) (PyObject *o, Type* val
    [all...]
  /external/dexmaker/src/dx/java/com/android/dx/rop/cst/
CstType.java 19 import com.android.dx.rop.type.Type;
24 * Constants that represent an arbitrary type (reference or primitive).
28 private static final HashMap<Type, CstType> interns =
29 new HashMap<Type, CstType>(100);
32 public static final CstType OBJECT = intern(Type.OBJECT);
35 public static final CstType BOOLEAN = intern(Type.BOOLEAN_CLASS);
38 public static final CstType BYTE = intern(Type.BYTE_CLASS);
41 public static final CstType CHARACTER = intern(Type.CHARACTER_CLASS);
44 public static final CstType DOUBLE = intern(Type.DOUBLE_CLASS)
86 private final Type type; field in class:CstType
    [all...]
  /external/v8/src/compiler/
typer.cc 17 #include "src/type-cache.h"
35 Type::FunctionType* function_type)
46 Type* infinity = Type::Constant(factory->infinity_value(), zone);
47 Type* minus_infinity = Type::Constant(factory->minus_infinity_value(), zone);
50 Type* truncating_to_zero =
51 Type::Union(Type::Union(infinity, minus_infinity, zone),
52 Type::MinusZeroOrNaN(), zone)
309 Type* type = typing.TypeNode(node); local
592 Type* type = Operand(node, 0); local
    [all...]
  /external/clang/test/Parser/
ms-if-exists.c 4 struct Type {
9 __if_exists(Type) {
16 __if_not_exists(Type) {
26 __if_exists(Type) {
35 __if_exists(Type) {
43 __if_not_exists(Type) {
55 __if_exists(Type) {2, }
73 __if_not_exists(Type) { this will not compile }
81 __if_exists(Type) {
  /external/clang/include/clang/AST/
TypeVisitor.h 1 //===--- TypeVisitor.h - Visitor for Type subclasses ------------*- C++ -*-===//
17 #include "clang/AST/Type.h"
25 /// \brief An operation on a type.
29 /// \tparam RetTy %Type of result produced by the operation.
31 /// The class implements polymorphic operation on an object of type derived
32 /// from Type. The operation is performed by calling method Visit. It then
33 /// dispatches the call to function \c VisitFooType, if actual argument type
43 /// Type *atype = ...
51 /// \c ImplClass provides specific action for some type, say
54 /// \c TypeVisitor dispatches call to the method that handles parent type. I
    [all...]

Completed in 1664 milliseconds

1 23 4 5 6 7 8 91011>>