Searched refs:Type (Results 126 - 150 of 3284) sorted by relevance

1234567891011>>

/external/compiler-rt/lib/tsan/rtl/
H A Dtsan_flags.h23 #define TSAN_FLAG(Type, Name, DefaultValue, Description) Type Name;
/external/dagger2/compiler/src/it/functional-tests/src/main/java/test/subcomponent/
H A DChildMultibindingModule.java22 import static dagger.Provides.Type.MAP;
23 import static dagger.Provides.Type.SET;
/external/guice/extensions/multibindings/src/com/google/inject/multibindings/
H A DElement.java36 enum Type { enum in interface:Element
44 Type type();
/external/llvm/include/llvm/DebugInfo/PDB/
H A DPDB.h23 Error loadDataForPDB(PDB_ReaderType Type, StringRef Path,
26 Error loadDataForEXE(PDB_ReaderType Type, StringRef Path,
/external/llvm/include/llvm/IR/
H A DDataLayout.h25 #include "llvm/IR/Type.h"
150 bool ABIAlign, Type *Ty) const;
155 unsigned getAlignment(Type *Ty, bool abi_or_pref) const;
335 unsigned getPointerTypeSizeInBits(Type *) const;
337 unsigned getPointerTypeSize(Type *Ty) const {
343 /// Type SizeInBits StoreSizeInBits AllocSizeInBits[*]
361 /// have a size (Type::isSized() must return true).
362 uint64_t getTypeSizeInBits(Type *Ty) const;
368 uint64_t getTypeStoreSize(Type *Ty) const {
376 uint64_t getTypeStoreSizeInBits(Type *T
[all...]
/external/llvm/lib/DebugInfo/DWARF/
H A DDWARFDebugMacro.cpp26 IndLevel -= (E.Type == DW_MACINFO_end_file);
30 IndLevel += (E.Type == DW_MACINFO_start_file);
32 WithColor(OS, syntax::Macro).get() << MacinfoString(E.Type);
33 switch (E.Type) {
63 E.Type = data.getULEB128(&Offset);
65 if (E.Type == 0) {
70 switch (E.Type) {
74 E.Type = DW_MACINFO_invalid;
/external/skia/include/core/
H A DSkDrawFilter.h28 enum Type { enum in class:SkDrawFilter
49 virtual bool filter(SkPaint*, Type) = 0;
/external/skia/src/sksl/ir/
H A DSkSLTypeReference.h21 TypeReference(const Context& context, Position position, const Type& type)
33 const Type& fValue;
/external/swiftshader/third_party/LLVM/lib/Target/Blackfin/
H A DBlackfinIntrinsicInfo.h22 std::string getName(unsigned IntrID, Type **Tys = 0,
26 Function *getDeclaration(Module *M, unsigned ID, Type **Tys = 0,
/external/swiftshader/third_party/LLVM/lib/Target/MBlaze/
H A DMBlazeIntrinsicInfo.h22 std::string getName(unsigned IntrID, Type **Tys = 0,
27 Function *getDeclaration(Module *M, unsigned ID, Type **Tys = 0,
/external/llvm/include/llvm/CodeGen/
H A DMachineInstr.h43 class Type;
110 /// Type of the instruction in case of a generic opcode.
113 Type *Ty;
192 void setType(Type *Ty);
193 Type *getType() const;
404 bool hasProperty(unsigned MCFlag, QueryType Type = AnyInBundle) const {
406 if (Type == IgnoreBundle || !isBundled() || isBundledWithPred())
410 return hasPropertyInBundle(1 << MCFlag, Type);
417 bool isVariadic(QueryType Type = IgnoreBundle) const {
418 return hasProperty(MCID::Variadic, Type);
[all...]
/external/skia/src/gpu/
H A DGrShape.h41 GrShape() { this->initType(Type::kEmpty); }
50 this->initType(Type::kPath, &path);
56 this->initType(Type::kRRect);
67 this->initType(Type::kRRect);
86 this->initType(Type::kRRect);
95 this->initType(Type::kPath, &path);
101 this->initType(Type::kRRect);
111 this->initType(Type::kRRect);
122 ~GrShape() { this->changeType(Type::kEmpty); }
137 if (Type
337 enum class Type { class in class:GrShape
[all...]
H A DGrDefaultGeoProcFactory.h65 enum Type { enum in struct:GrDefaultGeoProcFactory::Color
75 Color(Type type)
83 Type fType;
93 enum Type { enum in struct:GrDefaultGeoProcFactory::Coverage
99 Coverage(Type type) : fType(type), fCoverage(0xff) {
103 Type fType;
108 enum Type { enum in struct:GrDefaultGeoProcFactory::LocalCoords
114 LocalCoords(Type type) : fType(type), fMatrix(nullptr) {}
115 LocalCoords(Type type, const SkMatrix* matrix) : fType(type), fMatrix(matrix) {
120 Type fTyp
[all...]
/external/clang/test/SemaCXX/
H A Dvtable-instantiation.cpp53 template <typename Type>
56 static_cast<Type *>(0)->Accept(i); // expected-error{{member reference base}}
62 template <typename Type>
63 GMG<Type> GMG<Type>::singleton; // expected-note{{requested here}}
/external/clang/test/SemaTemplate/
H A Dinstantiate-non-type-template-parameter.cpp18 template<class Class,typename Type,Type Class::*>
23 template<class Class,typename Type,Type Class::*PtrToMember>
24 struct member: non_const_member_base<Class,Type,PtrToMember>
/external/compiler-rt/lib/sanitizer_common/tests/
H A Dsanitizer_atomic_test.cc20 typename T::Type magic0;
22 typename T::Type magic1;
32 typedef typename T::Type Type; typedef
37 val.magic0 = val.magic1 = (Type)-3;
44 val.a.val_dont_use = (Type)v;
45 EXPECT_EQ(atomic_load(&val.a, load_mo), (Type)v);
46 val.a.val_dont_use = (Type)-1;
47 atomic_store(&val.a, (Type)v, store_mo);
48 EXPECT_EQ(val.a.val_dont_use, (Type)
96 typedef typename T::Type Type; typedef
[all...]
/external/guava/guava/src/com/google/common/reflect/
H A DTypes.java42 import java.lang.reflect.Type;
53 * Utilities for working with {@link Type}.
60 private static final Function<Type, String> TYPE_NAME =
61 new Function<Type, String>() {
62 @Override public String apply(Type from) {
70 static Type newArrayType(Type componentType) {
73 Type[] lowerBounds = wildcard.getLowerBounds();
78 Type[] upperBounds = wildcard.getUpperBounds();
91 @Nullable Type ownerTyp
[all...]
/external/guice/extensions/assistedinject/src/com/google/inject/assistedinject/
H A DParameterListKey.java21 import java.lang.reflect.Type;
35 private final List<Type> paramList;
37 public ParameterListKey(List<Type> paramList) {
38 this.paramList = new ArrayList<Type>(paramList);
41 public ParameterListKey(Type[] types) {
/external/ppp/pppd/plugins/radius/etc/
H A Ddictionary.compat6 ATTRIBUTE User-Service-Type 6 integer
19 VALUE Service-Type Shell-User 6
20 VALUE Auth-Type Unix 1
21 VALUE Service-Type Dialback-Login-User 3
22 VALUE Service-Type Dialback-Framed-User 4
33 VALUE Service-Type Login 1
34 VALUE Service-Type Framed 2
35 VALUE Service-Type Callback-Login 3
36 VALUE Service-Type Callback-Framed 4
37 VALUE Service-Type Exe
[all...]
/external/protobuf/csharp/src/Google.Protobuf/Compatibility/
H A DTypeExtensions.cs39 /// Provides extension methods on Type that just proxy to TypeInfo.
52 internal static bool IsValueType(this Type target)
60 internal static bool IsAssignableFrom(this Type target, Type c)
70 internal static PropertyInfo GetProperty(this Type target, string name)
91 /// This has a few differences compared with Type.GetMethod in the desktop framework. It will throw
97 internal static MethodInfo GetMethod(this Type target, string name)
/external/protobuf/csharp/src/Google.Protobuf/Reflection/
H A DGeneratedClrTypeInfo.cs49 public Type ClrType { get; private set; }
78 public Type[] NestedEnums { get; }
85 public GeneratedClrTypeInfo(Type clrType, MessageParser parser, string[] propertyNames, string[] oneofNames, Type[] nestedEnums, GeneratedClrTypeInfo[] nestedTypes)
98 public GeneratedClrTypeInfo(Type[] nestedEnums, GeneratedClrTypeInfo[] nestedTypes)
/external/python/cpython2/Mac/Modules/launch/
H A Dlaunchsupport.py23 LSAcceptanceFlags = Type("LSAcceptanceFlags", "l")
24 LSInitializeFlags = Type("LSInitializeFlags", "l")
25 LSRequestedInfo = Type("LSRequestedInfo", "l")
26 LSRolesMask = Type("LSRolesMask", "l")
27 UniCharCount = Type("UniCharCount", "l")
/external/swiftshader/third_party/LLVM/lib/Analysis/
H A DDIBuilder.cpp28 return ConstantInt::get(Type::getInt32Ty(VMContext), Tag | LLVMDebugVersion);
102 llvm::Constant::getNullValue(Type::getInt32Ty(VMContext)),
103 ConstantInt::get(Type::getInt32Ty(VMContext), Lang),
108 ConstantInt::get(Type::getInt1Ty(VMContext), true), // isMain
109 ConstantInt::get(Type::getInt1Ty(VMContext), isOptimized),
111 ConstantInt::get(Type::getInt32Ty(VMContext), RunTimeVer),
144 ConstantInt::get(Type::getInt64Ty(VMContext), Val)
159 ConstantInt::get(Type::getInt32Ty(VMContext), 0), // Line
160 ConstantInt::get(Type::getInt64Ty(VMContext), 0), // Size
161 ConstantInt::get(Type
[all...]
/external/swiftshader/third_party/LLVM/lib/VMCore/
H A DType.cpp1 //===-- Type.cpp - Implement the Type class -------------------------------===//
10 // This file implements the Type class for the VMCore library.
22 // Type Class Implementation
25 Type *Type::getPrimitiveType(LLVMContext &C, TypeID IDNumber) {
43 Type *Type::getScalarType() {
50 bool Type::isIntegerTy(unsigned Bitwidth) const {
57 bool Type
[all...]
/external/llvm/test/MC/AsmParser/
H A Dsection_names.s34 # CHECK-NEXT: Type: SHT_PROGBITS
36 # CHECK-NEXT: Type: SHT_PROGBITS
38 # CHECK-NEXT: Type: SHT_PROGBITS
40 # CHECK-NEXT: Type: SHT_INIT_ARRAY
42 # CHECK-NEXT: Type: SHT_PROGBITS
44 # CHECK-NEXT: Type: SHT_PROGBITS
46 # CHECK-NEXT: Type: SHT_FINI_ARRAY
48 # CHECK-NEXT: Type: SHT_PROGBITS
50 # CHECK-NEXT: Type: SHT_PROGBITS
52 # CHECK-NEXT: Type
[all...]

Completed in 1026 milliseconds

1234567891011>>