Searched refs:Type (Results 151 - 175 of 3284) sorted by relevance

1234567891011>>

/external/swiftshader/third_party/LLVM/include/llvm/
H A DType.h1 //===-- llvm/Type.h - Classes for handling data types -----------*- C++ -*-===//
10 // This file contains the declaration of the Type class. For more "Type"
30 /// The instances of the Type class are immutable: once they are created,
34 /// are created, Type instances can only be created via static factory methods
35 /// in class Type and in derived classes. Once allocated, Types are never
38 class Type { class in namespace:llvm
41 /// Definitions of all of the base types for the Type system. Based on this
44 /// Type::getPrimitiveType function, or else things will break!
82 explicit Type(LLVMContex function in class:llvm::Type
[all...]
/external/libcxx/test/std/experimental/any/any.nonmembers/any.cast/
H A Dany_cast_pointer.pass.cpp84 template <class Type>
86 assert(Type::count == 0);
87 Type::reset();
89 any a((Type(42)));
91 assert(Type::count == 1);
92 assert(Type::copied == 0);
93 assert(Type::moved == 1);
96 // NOTE: Type cannot be an int.
102 assert(any_cast<Type*>(&a) == nullptr);
103 assert(any_cast<Type cons
[all...]
/external/libcxx/test/std/utilities/any/any.nonmembers/any.cast/
H A Dany_cast_pointer.pass.cpp84 template <class Type>
86 assert(Type::count == 0);
87 Type::reset();
89 any a((Type(42)));
91 assert(Type::count == 1);
92 assert(Type::copied == 0);
93 assert(Type::moved == 1);
96 // NOTE: Type cannot be an int.
102 assert(any_cast<Type*>(&a) == nullptr);
103 assert(any_cast<Type cons
[all...]
/external/clang/lib/AST/
H A DInheritViz.cpp44 void WriteGraph(QualType Type) { argument
45 Out << "digraph \"" << llvm::DOT::EscapeString(Type.getAsString())
47 WriteNode(Type, false);
54 void WriteNode(QualType Type, bool FromVirtual);
59 raw_ostream& WriteNodeReference(QualType Type, bool FromVirtual);
63 void InheritanceHierarchyWriter::WriteNode(QualType Type, bool FromVirtual) { argument
64 QualType CanonType = Context.getCanonicalType(Type);
77 WriteNodeReference(Type, FromVirtual);
80 std::string TypeName = Type.getAsString();
95 = static_cast<const CXXRecordDecl *>(Type
125 WriteNodeReference(QualType Type, bool FromVirtual) argument
[all...]
/external/llvm/lib/Target/PowerPC/
H A DPPCTargetTransformInfo.h55 int getIntImmCost(const APInt &Imm, Type *Ty);
57 int getIntImmCost(unsigned Opcode, unsigned Idx, const APInt &Imm, Type *Ty);
59 Type *Ty);
77 unsigned Opcode, Type *Ty,
82 int getShuffleCost(TTI::ShuffleKind Kind, Type *Tp, int Index, Type *SubTp);
83 int getCastInstrCost(unsigned Opcode, Type *Dst, Type *Src);
84 int getCmpSelInstrCost(unsigned Opcode, Type *ValTy, Type *CondT
[all...]
/external/libmojo/mojo/public/cpp/bindings/
H A Dstl_converters.h48 !std::is_same<T, typename UnwrapTraits<T>::Type>::value;
54 using Type = T;
55 static Type Unwrap(T input) { return input; }
61 using Type = std::vector<typename UnwrapTraits<T>::Type>;
63 static Type Unwrap(Array<T> input) {
74 static Type Run(Array<T> input) {
75 Type output;
86 static Type Run(Array<T> input) { return input.PassStorage(); }
93 using Type
[all...]
/external/llvm/lib/IR/
H A DType.cpp1 //===-- Type.cpp - Implement the Type class -------------------------------===//
10 // This file implements the Type class for the IR library.
14 #include "llvm/IR/Type.h"
23 // Type Class Implementation
26 Type *Type::getPrimitiveType(LLVMContext &C, TypeID IDNumber) {
44 Type *Type::getScalarType() const {
47 return const_cast<Type*>(thi
[all...]
/external/llvm/include/llvm/DebugInfo/CodeView/
H A DFieldListRecordBuilder.h21 MethodInfo() : Access(), Kind(), Options(), Type(), VTableSlotOffset(-1) {}
24 TypeIndex Type, int32_t VTableSlotOffset)
25 : Access(Access), Kind(Kind), Options(Options), Type(Type),
31 TypeIndex getType() const { return Type; }
38 TypeIndex Type; member in class:llvm::codeview::MethodInfo
60 void writeVFPtr(const VFPtrRecord &Type);
23 MethodInfo(MemberAccess Access, MethodKind Kind, MethodOptions Options, TypeIndex Type, int32_t VTableSlotOffset) argument
/external/replicaisland/src/com/replica/replicaisland/
H A DShellSorter.java21 public class ShellSorter<Type> extends Sorter<Type> {
30 public void sort(Type[] array, int count, Comparator<Type> comparator) {
58 public void insertionSort(Type[] array, int count, int start, int increment,
59 Comparator<Type> comparator) {
62 Type temp;
/external/swiftshader/third_party/subzero/src/
H A DIceTLS.h26 /// \def ICE_TLS_DECLARE_FIELD(Type, FieldName)
28 /// "Type" needs to be a pointer type, such as int* or class Foo*.
30 /// \def ICE_TLS_DEFINE_FIELD(Type, ClassName, FieldName)
40 /// \def ICE_TLS_GET_FIELD(Type, FieldName)
76 #define ICE_TLS_DECLARE_FIELD(Type, FieldName) \
77 using FieldName##__type = Type; \
80 #define ICE_TLS_DEFINE_FIELD(Type, ClassName, FieldName) \
104 #define ICE_TLS_DECLARE_FIELD(Type, FieldName) \
105 static ICE_ATTRIBUTE_TLS Type FieldName
106 #define ICE_TLS_DEFINE_FIELD(Type, ClassNam
[all...]
/external/jsilver/src/com/google/clearsilver/jsilver/compiler/
H A DJavaExpression.java36 public enum Type { enum in class:JavaExpression
43 return call(Type.STRING, "asString", expression);
52 return call(Type.INT, "asInt", expression);
61 return call(Type.BOOLEAN, "asBoolean", expression);
68 return call(Type.VALUE, "asVariableValue", expression, TemplateTranslator.DATA_CONTEXT);
70 return call(Type.VALUE, "asValue", expression);
89 final JavaExpression stringExpr = expression.cast(Type.STRING);
90 return new JavaExpression(Type.VAR_NAME) {
115 // JavaExpression of Type VOID.
119 return new JavaExpression(Type
142 private Type(String symbol) { method in class:JavaExpression.Type
[all...]
/external/python/cpython2/Mac/Modules/drag/
H A Ddragsupport.py25 DragItemRef = Type("ItemReference", "l")
37 DragAttributes = Type("DragAttributes", "l")
38 DragBehaviors = Type("DragBehaviors", "l")
39 DragImageFlags = Type("DragImageFlags", "l")
40 DragImageTranslucency = Type("DragImageTranslucency", "l")
41 DragRegionMessage = Type("DragRegionMessage", "h")
42 ZoomAcceleration = Type("ZoomAcceleration", "h")
43 FlavorFlags = Type("FlavorFlags", "l")
44 DragTrackingMessage = Type("DragTrackingMessage", "h")
/external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime/
H A DTokenConstants.cs84 Type = TokenTypes.EndOfFile
89 Type = TokenTypes.Invalid
94 Type = TokenTypes.Invalid
/external/dagger2/core/src/main/java/dagger/
H A DProvides.java37 enum Type { enum in interface:Provides
72 Type type() default Type.UNIQUE;
/external/llvm/include/llvm/Analysis/
H A DTargetTransformInfoImpl.h24 #include "llvm/IR/Type.h"
47 unsigned getOperationCost(unsigned Opcode, Type *Ty, Type *OpTy) {
105 int getGEPCost(Type *PointeeType, const Value *Ptr,
133 unsigned getIntrinsicCost(Intrinsic::ID IID, Type *RetTy,
134 ArrayRef<Type *> ParamTys) {
204 bool isLegalAddressingMode(Type *Ty, GlobalValue *BaseGV, int64_t BaseOffset,
212 bool isLegalMaskedStore(Type *DataType) { return false; }
214 bool isLegalMaskedLoad(Type *DataType) { return false; }
216 bool isLegalMaskedScatter(Type *DataTyp
[all...]
/external/llvm/include/llvm/Target/
H A DTargetIntrinsicInfo.h24 class Type;
40 /// intrinsic, Tys should point to an array of numTys pointers to Type,
43 virtual std::string getName(unsigned IID, Type **Tys = nullptr,
59 virtual Function *getDeclaration(Module *M, unsigned ID, Type **Tys = nullptr,
/external/mockito/src/main/java/org/mockito/internal/util/reflection/
H A DGenericMaster.java9 import java.lang.reflect.Type;
19 Type generic = field.getGenericType();
21 Type actual = ((ParameterizedType) generic).getActualTypeArguments()[0];
/external/pdfium/core/fpdfdoc/
H A Dcpvt_color.h15 enum Type { kTransparent = 0, kGray, kRGB, kCMYK }; enum in struct:CPVT_Color
17 CPVT_Color(Type type = kTransparent,
28 Type nColorType;
/external/r8/src/main/java/com/android/tools/r8/code/
H A DIfEq.java6 import com.android.tools.r8.ir.code.If.Type;
35 public Type getType() {
36 return Type.EQ;
H A DIfEqz.java6 import com.android.tools.r8.ir.code.If.Type;
35 public Type getType() {
36 return Type.EQ;
H A DIfGe.java6 import com.android.tools.r8.ir.code.If.Type;
35 public Type getType() {
36 return Type.GE;
H A DIfGez.java6 import com.android.tools.r8.ir.code.If.Type;
35 public Type getType() {
36 return Type.GE;
H A DIfGt.java6 import com.android.tools.r8.ir.code.If.Type;
35 public Type getType() {
36 return Type.GT;
H A DIfGtz.java6 import com.android.tools.r8.ir.code.If.Type;
35 public Type getType() {
36 return Type.GT;
H A DIfLe.java6 import com.android.tools.r8.ir.code.If.Type;
35 public Type getType() {
36 return Type.LE;

Completed in 1100 milliseconds

1234567891011>>