Searched refs:Type (Results 26 - 50 of 3284) sorted by relevance

1234567891011>>

/external/llvm/lib/Target/PowerPC/MCTargetDesc/
H A DPPCELFObjectWriter.cpp32 unsigned Type) const override;
75 unsigned Type; local
85 Type = ELF::R_PPC_REL24;
88 Type = ELF::R_PPC_PLTREL24;
91 Type = ELF::R_PPC_LOCAL24PC;
97 Type = ELF::R_PPC_REL14;
103 Type = ELF::R_PPC_REL16;
106 Type = ELF::R_PPC_REL16_LO;
109 Type = ELF::R_PPC_REL16_HI;
112 Type
[all...]
/external/v8/src/compiler/
H A Dtyper.cc46 singleton_empty_string_ = Type::HeapConstant(factory->empty_string(), zone);
49 falsish_ = Type::Union(
50 Type::Undetectable(),
51 Type::Union(Type::Union(singleton_false_, cache_.kZeroish, zone),
52 Type::Union(singleton_empty_string_, Type::Hole(), zone),
55 truish_ = Type::Union(
57 Type::Union(Type
[all...]
/external/androidplot/AndroidPlot-Core/src/main/java/com/androidplot/util/
H A DZLinkedList.java22 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 referenc
[all...]
/external/google-breakpad/src/processor/
H A Dsimple_serializer.h49 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/sl4a/Common/src/com/googlecode/android_scripting/rpc/
H A DParameterDescriptor.java19 import java.lang.reflect.Type;
27 private final Type type;
29 public ParameterDescriptor(String value, Type type) {
38 public Type getType() {
/external/javassist/src/main/javassist/bytecode/analysis/
H A DExecutor.java35 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
[all...]
/external/v8/src/base/
H A Dflags.h79 #define DEFINE_OPERATORS_FOR_FLAGS(Type) \
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
[all...]
/external/clang/test/Parser/
H A Dms-if-exists.c4 struct Type { struct
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/swiftshader/third_party/subzero/pydir/
H A Dgen_test_arith_ll.py20 def arith(Native, Type, Op):
31 Name = mangle(Op, Type, Signed)
33 if Type == 'i1' and (Op not in {'and', 'or', 'xor'}):
34 Type = 'i32'
37 Native != Type else '',
39 Native != Type else '',
41 ' {type} %result.trunc to {native}' if Native != Type else '')
42 lines = x.format(native=Native, type=Type, op=Op, name=Name,
43 trunc='.trunc' if Native != Type else '')
/external/swiftshader/third_party/subzero/src/
H A DIceTypes.h24 enum Type { enum in namespace:Ice
79 size_t typeWidthInBytes(Type Ty);
80 int8_t typeWidthInBytesLog2(Type Ty);
81 size_t typeAlignInBytes(Type Ty);
82 size_t typeNumElements(Type Ty);
83 Type typeElementType(Type Ty);
84 const char *typeString(Type Ty);
85 inline std::string typeStdString(Type Ty) { return typeString(Ty); }
88 Type getPointerTyp
[all...]
H A DIceTypeConverter.h51 Type convertToIceType(llvm::Type *LLVMTy) const {
60 std::map<llvm::Type *, Type> LLVM2IceMap;
63 void addLLVMType(Type Ty, llvm::Type *LLVMTy);
66 Type convertToIceTypeOther(llvm::Type *LLVMTy) const;
/external/libcxx/test/std/utilities/any/any.class/any.cons/
H A Dmove.pass.cpp65 template <class Type>
67 assert(Type::count == 0);
68 Type::reset();
70 any a((Type(42)));
71 assert(Type::count == 1);
72 assert(Type::copied == 0);
73 assert(Type::moved == 1);
80 assert(Type::moved == 1 || Type::moved == 2); // zero or more move operations can be performed.
81 assert(Type
[all...]
H A Dvalue.pass.cpp33 template <class Type>
37 assert(Type::count == 0);
39 Type const t(42);
40 assert(Type::count == 1);
49 assert(Type::count == 1);
52 assert(Type::count == 0);
77 template <class Type>
80 DisableAllocationGuard g(isSmallType<Type>()); ((void)g);
81 assert(Type::count == 0);
82 Type
[all...]
/external/swiftshader/third_party/llvm-subzero/include/llvm/IR/
H A DDerivedTypes.h14 // The implementations of these classes live in the Type.cpp file.
23 #include "llvm/IR/Type.h"
39 class IntegerType : public Type {
43 explicit IntegerType(LLVMContext &C, unsigned NumBits) : Type(C, IntegerTyID){
52 ///< Note that bit width is stored in the Type classes SubclassData field
91 static inline bool classof(const Type *T) {
96 unsigned Type::getIntegerBitWidth() const {
102 class FunctionType : public Type {
103 FunctionType(Type *Result, ArrayRef<Type*> Param
[all...]
/external/pdfium/xfa/fwl/
H A Dcfwl_event.h21 enum class Type { class in class:CFWL_Event
37 explicit CFWL_Event(Type type);
38 CFWL_Event(Type type, CFWL_Widget* pSrcTarget);
39 CFWL_Event(Type type, CFWL_Widget* pSrcTarget, CFWL_Widget* pDstTarget);
42 Type GetType() const { return m_type; }
48 Type m_type;
H A Dcfwl_message.h20 enum class Type { Key, KillFocus, Mouse, MouseWheel, SetFocus }; class in class:CFWL_Message
22 explicit CFWL_Message(Type type);
23 CFWL_Message(Type type, CFWL_Widget* pSrcTarget);
24 CFWL_Message(Type type, CFWL_Widget* pSrcTarget, CFWL_Widget* pDstTarget);
28 Type GetType() const { return m_type; }
34 Type m_type;
/external/llvm/include/llvm/IR/
H A DDerivedTypes.h14 // The implementations of these classes live in the Type.cpp file.
21 #include "llvm/IR/Type.h"
37 class IntegerType : public Type {
41 explicit IntegerType(LLVMContext &C, unsigned NumBits) : Type(C, IntegerTyID){
50 ///< Note that bit width is stored in the Type classes SubclassData field
88 static inline bool classof(const Type *T) {
93 unsigned Type::getIntegerBitWidth() const {
99 class FunctionType : public Type {
102 FunctionType(Type *Result, ArrayRef<Type*> Param
[all...]
/external/guice/core/src/com/google/inject/util/
H A DTypes.java28 import java.lang.reflect.Type;
49 public static ParameterizedType newParameterizedType(Type rawType, Type... typeArguments) {
60 Type ownerType, Type rawType, Type... typeArguments) {
70 public static GenericArrayType arrayOf(Type componentType) {
80 public static WildcardType subtypeOf(Type bound) {
81 return new WildcardTypeImpl(new Type[] { bound }, MoreTypes.EMPTY_TYPE_ARRAY);
89 public static WildcardType supertypeOf(Type boun
[all...]
/external/python/cpython2/Mac/Modules/mlte/
H A Dmltesupport.py95 TXNFrameID = Type("TXNFrameID", "l")
96 TXNVersionValue = Type("TXNVersionValue", "l")
97 TXNFeatureBits = Type("TXNFeatureBits", "l")
98 TXNInitOptions = Type("TXNInitOptions", "l")
99 TXNFrameOptions = Type("TXNFrameOptions", "l")
100 TXNContinuousFlags = Type("TXNContinuousFlags", "l")
101 TXNMatchOptions = Type("TXNMatchOptions", "l")
103 TXNFrameType = Type("TXNFrameType", "l")
106 TXNActionKey = Type("TXNActionKey", "l")
107 TXNTabType = Type("TXNTabTyp
[all...]
/external/libchrome/base/
H A Dlazy_instance.h5 // The LazyInstance<Type, Traits> class manages a single instance of Type,
8 // need to have guaranteed thread-safety. The Type constructor will only ever
21 // will manage a unique instance. It also preallocates the space for Type, as
22 // to avoid allocating the Type instance on the heap. This may help with the
24 // requires that Type be a complete type so we can determine the size.
59 template <typename Type>
66 static Type* New(void* instance) {
67 DCHECK_EQ(reinterpret_cast<uintptr_t>(instance) & (ALIGNOF(Type) - 1), 0u)
70 "<Type> object
[all...]
/external/clang/test/SemaObjCXX/Inputs/
H A Dnullability-consistency-5.h1 #define SUPPRESS_NULLABILITY_WARNING(Type) \
4 Type \
/external/compiler-rt/lib/msan/
H A Dmsan_flags.h19 #define MSAN_FLAG(Type, Name, DefaultValue, Description) Type Name;
/external/compiler-rt/lib/scudo/
H A Dscudo_flags.h20 #define SCUDO_FLAG(Type, Name, DefaultValue, Description) Type Name;
/external/deqp/external/vulkancts/framework/vulkan/
H A DvkStrUtil.hpp37 template<HandleType Type>
38 inline std::ostream& operator<< (std::ostream& s, const Handle<Type>& handle)
/external/protobuf/java/core/src/main/java/com/google/protobuf/
H A DExtensionLite.java39 public abstract class ExtensionLite<ContainingType extends MessageLite, Type> {
51 public abstract Type getDefaultValue();

Completed in 1118 milliseconds

1234567891011>>