Home
last modified time | relevance | path

Searched refs:Type (Results 1 – 25 of 3235) sorted by relevance

12345678910>>...130

/external/llvm/test/tools/llvm-readobj/
Dreloc-types.test20 ELF-32: Type: R_386_NONE (0)
21 ELF-32: Type: R_386_32 (1)
22 ELF-32: Type: R_386_PC32 (2)
23 ELF-32: Type: R_386_GOT32 (3)
24 ELF-32: Type: R_386_PLT32 (4)
25 ELF-32: Type: R_386_COPY (5)
26 ELF-32: Type: R_386_GLOB_DAT (6)
27 ELF-32: Type: R_386_JUMP_SLOT (7)
28 ELF-32: Type: R_386_RELATIVE (8)
29 ELF-32: Type: R_386_GOTOFF (9)
[all …]
/external/v8/src/
Dtype-cache.h23 Type* const kInt8 =
24 CreateNative(CreateRange<int8_t>(), Type::UntaggedIntegral8());
25 Type* const kUint8 =
26 CreateNative(CreateRange<uint8_t>(), Type::UntaggedIntegral8());
27 Type* const kUint8Clamped = kUint8;
28 Type* const kInt16 =
29 CreateNative(CreateRange<int16_t>(), Type::UntaggedIntegral16());
30 Type* const kUint16 =
31 CreateNative(CreateRange<uint16_t>(), Type::UntaggedIntegral16());
32 Type* const kInt32 =
[all …]
Dinterface-descriptors.cc12 Type* SmiType(Zone* zone) { in SmiType()
13 return Type::Intersect(Type::SignedSmall(), Type::TaggedSigned(), zone); in SmiType()
17 Type* UntaggedIntegral32(Zone* zone) { in UntaggedIntegral32()
18 return Type::Intersect(Type::Signed32(), Type::UntaggedIntegral32(), zone); in UntaggedIntegral32()
22 Type* AnyTagged(Zone* zone) { in AnyTagged()
23 return Type::Intersect( in AnyTagged()
24 Type::Any(), in AnyTagged()
25 Type::Union(Type::TaggedPointer(), Type::TaggedSigned(), zone), zone); in AnyTagged()
29 Type* ExternalPointer(Zone* zone) { in ExternalPointer()
30 return Type::Intersect(Type::Internal(), Type::UntaggedPointer(), zone); in ExternalPointer()
[all …]
/external/v8/src/compiler/
Dtyper.cc35 Type::FunctionType* function_type) in Typer()
46 Type* infinity = Type::Constant(factory->infinity_value(), zone); in Typer()
47 Type* minus_infinity = Type::Constant(factory->minus_infinity_value(), zone); in Typer()
50 Type* truncating_to_zero = in Typer()
51 Type::Union(Type::Union(infinity, minus_infinity, zone), in Typer()
52 Type::MinusZeroOrNaN(), zone); in Typer()
53 DCHECK(!truncating_to_zero->Maybe(Type::Integral32())); in Typer()
55 singleton_false_ = Type::Constant(factory->false_value(), zone); in Typer()
56 singleton_true_ = Type::Constant(factory->true_value(), zone); in Typer()
57 singleton_the_hole_ = Type::Constant(factory->the_hole_value(), zone); in Typer()
[all …]
/external/libcxx/test/std/experimental/any/any.nonmembers/any.cast/
Dany_cast_reference.pass.cpp71 template <class Type, class ConstT = Type>
76 any_cast<Type>(a); in checkThrows()
94 any_cast<Type>(static_cast<any&&>(a)); in checkThrows()
111 template <class Type>
113 assert(Type::count == 0); in test_cast_to_reference()
114 Type::reset(); in test_cast_to_reference()
116 any a((Type(42))); in test_cast_to_reference()
118 assert(Type::count == 1); in test_cast_to_reference()
119 assert(Type::copied == 0); in test_cast_to_reference()
120 assert(Type::moved == 1); in test_cast_to_reference()
[all …]
/external/dexmaker/src/dx/java/com/android/dx/rop/type/
DStdTypeList.java30 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);
58 StdTypeList.make(Type.LONG, Type.LONG);
62 StdTypeList.make(Type.FLOAT, Type.FLOAT);
[all …]
DType.java29 public final class Type implements TypeBearer, Comparable<Type> { class
34 private static final HashMap<String, Type> internTable =
35 new HashMap<String, Type>(500);
74 public static final Type BOOLEAN = new Type("Z", BT_BOOLEAN);
77 public static final Type BYTE = new Type("B", BT_BYTE);
80 public static final Type CHAR = new Type("C", BT_CHAR);
83 public static final Type DOUBLE = new Type("D", BT_DOUBLE);
86 public static final Type FLOAT = new Type("F", BT_FLOAT);
89 public static final Type INT = new Type("I", BT_INT);
92 public static final Type LONG = new Type("J", BT_LONG);
[all …]
/external/llvm/lib/Target/PowerPC/MCTargetDesc/
DPPCELFObjectWriter.cpp32 unsigned Type) const override;
75 unsigned Type; in GetRelocType() local
85 Type = ELF::R_PPC_REL24; in GetRelocType()
88 Type = ELF::R_PPC_PLTREL24; in GetRelocType()
91 Type = ELF::R_PPC_LOCAL24PC; in GetRelocType()
97 Type = ELF::R_PPC_REL14; in GetRelocType()
103 Type = ELF::R_PPC_REL16; in GetRelocType()
106 Type = ELF::R_PPC_REL16_LO; in GetRelocType()
109 Type = ELF::R_PPC_REL16_HI; in GetRelocType()
112 Type = ELF::R_PPC_REL16_HA; in GetRelocType()
[all …]
/external/javassist/src/main/javassist/bytecode/analysis/
DExecutor.java35 private final Type STRING_TYPE;
36 private final Type CLASS_TYPE;
37 private final Type THROWABLE_TYPE;
76 frame.push(Type.UNINIT); in execute()
85 frame.push(Type.INTEGER); in execute()
89 frame.push(Type.LONG); in execute()
90 frame.push(Type.TOP); in execute()
95 frame.push(Type.FLOAT); in execute()
99 frame.push(Type.DOUBLE); in execute()
100 frame.push(Type.TOP); in execute()
[all …]
DType.java42 public class Type { class
48 public static final Type DOUBLE = new Type(CtClass.doubleType);
50 public static final Type BOOLEAN = new Type(CtClass.booleanType);
52 public static final Type LONG = new Type(CtClass.longType);
54 public static final Type CHAR = new Type(CtClass.charType);
56 public static final Type BYTE = new Type(CtClass.byteType);
58 public static final Type SHORT = new Type(CtClass.shortType);
60 public static final Type INTEGER = new Type(CtClass.intType);
62 public static final Type FLOAT = new Type(CtClass.floatType);
64 public static final Type VOID = new Type(CtClass.voidType);
[all …]
/external/v8/src/base/
Dflags.h79 #define DEFINE_OPERATORS_FOR_FLAGS(Type) \ argument
80 inline Type operator&( \
81 Type::flag_type lhs, \
82 Type::flag_type rhs)ALLOW_UNUSED_TYPE WARN_UNUSED_RESULT; \
83 inline Type operator&(Type::flag_type lhs, Type::flag_type rhs) { \
84 return Type(lhs) & rhs; \
86 inline Type operator&(Type::flag_type lhs, \
87 const Type& rhs)ALLOW_UNUSED_TYPE WARN_UNUSED_RESULT; \
88 inline Type operator&(Type::flag_type lhs, const Type& rhs) { \
91 inline void operator&(Type::flag_type lhs, \
[all …]
/external/harfbuzz_ng/src/
Dhb-open-type-private.hh44 template<typename Type, typename TObject>
45 static inline const Type& CastR(const TObject &X) in CastR()
46 { return reinterpret_cast<const Type&> (X); } in CastR()
47 template<typename Type, typename TObject>
48 static inline Type& CastR(TObject &X) in CastR()
49 { return reinterpret_cast<Type&> (X); } in CastR()
52 template<typename Type, typename TObject>
53 static inline const Type* CastP(const TObject *X) in CastP()
54 { return reinterpret_cast<const Type*> (X); } in CastP()
55 template<typename Type, typename TObject>
[all …]
/external/dexmaker/src/dx/java/com/android/dx/rop/code/
DRops.java25 import com.android.dx.rop.type.Type;
35 new Rop(RegOps.NOP, Type.VOID, StdTypeList.EMPTY, "nop");
39 new Rop(RegOps.MOVE, Type.INT, StdTypeList.INT, "move-int");
43 new Rop(RegOps.MOVE, Type.LONG, StdTypeList.LONG, "move-long");
47 new Rop(RegOps.MOVE, Type.FLOAT, StdTypeList.FLOAT, "move-float");
51 new Rop(RegOps.MOVE, Type.DOUBLE, StdTypeList.DOUBLE, "move-double");
55 new Rop(RegOps.MOVE, Type.OBJECT, StdTypeList.OBJECT, "move-object");
64 new Rop(RegOps.MOVE, Type.RETURN_ADDRESS,
69 new Rop(RegOps.MOVE_PARAM, Type.INT, StdTypeList.EMPTY,
74 new Rop(RegOps.MOVE_PARAM, Type.LONG, StdTypeList.EMPTY,
[all …]
/external/dexmaker/src/dx/java/com/android/dx/rop/cst/
DCstType.java19 import com.android.dx.rop.type.Type;
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);
47 public static final CstType FLOAT = intern(Type.FLOAT_CLASS);
50 public static final CstType LONG = intern(Type.LONG_CLASS);
[all …]
/external/llvm/include/llvm/Analysis/
DTargetTransformInfo.h38 class Type; variable
136 int getOperationCost(unsigned Opcode, Type *Ty, Type *OpTy = nullptr) const;
143 int getGEPCost(Type *PointeeType, const Value *Ptr,
171 int getIntrinsicCost(Intrinsic::ID IID, Type *RetTy,
172 ArrayRef<Type *> ParamTys) const;
177 int getIntrinsicCost(Intrinsic::ID IID, Type *RetTy,
311 bool isLegalAddressingMode(Type *Ty, GlobalValue *BaseGV, int64_t BaseOffset,
318 bool isLegalMaskedStore(Type *DataType) const;
319 bool isLegalMaskedLoad(Type *DataType) const;
324 bool isLegalMaskedScatter(Type *DataType) const;
[all …]
/external/llvm/lib/IR/
DType.cpp26 Type *Type::getPrimitiveType(LLVMContext &C, TypeID IDNumber) { in getPrimitiveType()
46 Type *Type::getScalarType() const { in getScalarType()
49 return const_cast<Type*>(this); in getScalarType()
53 bool Type::isIntegerTy(unsigned Bitwidth) const { in isIntegerTy()
60 bool Type::canLosslesslyBitCastTo(Type *Ty) const { in canLosslesslyBitCastTo()
75 if (Ty->getTypeID() == Type::X86_MMXTyID && in canLosslesslyBitCastTo()
80 if (this->getTypeID() == Type::X86_MMXTyID) in canLosslesslyBitCastTo()
97 bool Type::isEmptyTy() const { in isEmptyTy()
114 unsigned Type::getPrimitiveSizeInBits() const { in getPrimitiveSizeInBits()
116 case Type::HalfTyID: return 16; in getPrimitiveSizeInBits()
[all …]
DValueTypes.cpp199 Type *EVT::getTypeForEVT(LLVMContext &Context) const { in getTypeForEVT()
204 case MVT::isVoid: return Type::getVoidTy(Context); in getTypeForEVT()
205 case MVT::i1: return Type::getInt1Ty(Context); in getTypeForEVT()
206 case MVT::i8: return Type::getInt8Ty(Context); in getTypeForEVT()
207 case MVT::i16: return Type::getInt16Ty(Context); in getTypeForEVT()
208 case MVT::i32: return Type::getInt32Ty(Context); in getTypeForEVT()
209 case MVT::i64: return Type::getInt64Ty(Context); in getTypeForEVT()
211 case MVT::f16: return Type::getHalfTy(Context); in getTypeForEVT()
212 case MVT::f32: return Type::getFloatTy(Context); in getTypeForEVT()
213 case MVT::f64: return Type::getDoubleTy(Context); in getTypeForEVT()
[all …]
/external/llvm/lib/Target/ARM/MCTargetDesc/
DARMELFObjectWriter.cpp41 unsigned Type) const override;
53 unsigned Type) const { in needsRelocateWithSymbol()
57 switch (Type) { in needsRelocateWithSymbol()
81 unsigned Type = 0; in GetRelocTypeInner() local
91 Type = ELF::R_ARM_REL32; in GetRelocTypeInner()
96 Type = ELF::R_ARM_TLS_IE32; in GetRelocTypeInner()
99 Type = ELF::R_ARM_GOT_PREL; in GetRelocTypeInner()
107 Type = ELF::R_ARM_CALL; in GetRelocTypeInner()
110 Type = ELF::R_ARM_TLS_CALL; in GetRelocTypeInner()
113 Type = ELF::R_ARM_CALL; in GetRelocTypeInner()
[all …]
/external/libchrome/base/memory/
Dsingleton.h48 template<typename Type>
51 static Type* New() { in New()
54 return new Type(); in New()
58 static void Delete(Type* x) { in Delete()
78 template<typename Type>
79 struct LeakySingletonTraits : public DefaultSingletonTraits<Type> {
108 template <typename Type>
112 static Type* New() { in New()
117 return new(buffer_.void_data()) Type(); in New()
120 static void Delete(Type* p) { in Delete()
[all …]
/external/llvm/include/llvm/IR/
DDerivedTypes.h37 class IntegerType : public Type {
41 explicit IntegerType(LLVMContext &C, unsigned NumBits) : Type(C, IntegerTyID){ in IntegerType()
89 static inline bool classof(const Type *T) { in classof()
96 class FunctionType : public Type {
99 FunctionType(Type *Result, ArrayRef<Type*> Params, bool IsVarArgs);
105 static FunctionType *get(Type *Result,
106 ArrayRef<Type*> Params, bool isVarArg);
110 static FunctionType *get(Type *Result, bool isVarArg);
114 static bool isValidReturnType(Type *RetTy);
118 static bool isValidArgumentType(Type *ArgTy);
[all …]
/external/mockito/cglib-and-asm/src/org/mockito/cglib/core/
DTypeUtils.java20 import org.mockito.asm.Type;
43 public static Type getType(String className) { in getType()
44 return Type.getType("L" + className.replace('.', '/') + ";"); in getType()
80 public static String getPackageName(Type type) { in getPackageName()
96 public static String getClassName(Type type) { in getClassName()
106 public static Type[] add(Type[] types, Type extra) { in add()
108 return new Type[]{ extra }; in add()
114 Type[] copy = new Type[types.length + 1]; in add()
121 public static Type[] add(Type[] t1, Type[] t2) { in add()
123 Type[] all = new Type[t1.length + t2.length]; in add()
[all …]
DConstants.java18 import org.mockito.asm.Type;
26 public static final Type[] TYPES_EMPTY = {};
31 public static final Type TYPE_OBJECT_ARRAY = TypeUtils.parseType("Object[]");
32 public static final Type TYPE_CLASS_ARRAY = TypeUtils.parseType("Class[]");
33 public static final Type TYPE_STRING_ARRAY = TypeUtils.parseType("String[]");
35 public static final Type TYPE_OBJECT = TypeUtils.parseType("Object");
36 public static final Type TYPE_CLASS = TypeUtils.parseType("Class");
37 public static final Type TYPE_CLASS_LOADER = TypeUtils.parseType("ClassLoader");
38 public static final Type TYPE_CHARACTER = TypeUtils.parseType("Character");
39 public static final Type TYPE_BOOLEAN = TypeUtils.parseType("Boolean");
[all …]
/external/mockito/cglib-and-asm/src/org/mockito/asm/tree/analysis/
DSimpleVerifier.java34 import org.mockito.asm.Type;
49 private final Type currentClass;
54 private final Type currentSuperClass;
82 final Type currentClass, in SimpleVerifier()
83 final Type currentSuperClass, in SimpleVerifier()
100 final Type currentClass, in SimpleVerifier()
101 final Type currentSuperClass, in SimpleVerifier()
111 public Value newValue(final Type type) { in newValue()
116 boolean isArray = type.getSort() == Type.ARRAY; in newValue()
119 case Type.BOOLEAN: in newValue()
[all …]
/external/libcxx/test/std/experimental/any/any.class/any.cons/
Dcopy.pass.cpp26 template <class Type>
29 assert(Type::count == 0); in test_copy_throws()
31 any const a((Type(42))); in test_copy_throws()
32 assert(Type::count == 1); in test_copy_throws()
41 assert(Type::count == 1); in test_copy_throws()
42 assertContains<Type>(a, 42); in test_copy_throws()
44 assert(Type::count == 0); in test_copy_throws()
57 template <class Type>
61 DisableAllocationGuard g(isSmallType<Type>()); ((void)g); in test_copy()
62 assert(Type::count == 0); in test_copy()
[all …]
Dvalue.pass.cpp33 template <class Type>
37 assert(Type::count == 0); in test_copy_value_throws()
39 Type const t(42); in test_copy_value_throws()
40 assert(Type::count == 1); in test_copy_value_throws()
49 assert(Type::count == 1); in test_copy_value_throws()
52 assert(Type::count == 0); in test_copy_value_throws()
77 template <class Type>
80 DisableAllocationGuard g(isSmallType<Type>()); ((void)g); in test_copy_move_value()
81 assert(Type::count == 0); in test_copy_move_value()
82 Type::reset(); in test_copy_move_value()
[all …]

12345678910>>...130