Searched refs:Type (Results 1 - 25 of 2249) sorted by relevance

1234567891011>>

/external/compiler-rt/lib/sanitizer_common/
H A Dsanitizer_atomic.h31 typedef u8 Type; typedef in struct:__sanitizer::atomic_uint8_t
32 volatile Type val_dont_use;
36 typedef u16 Type; typedef in struct:__sanitizer::atomic_uint16_t
37 volatile Type val_dont_use;
41 typedef u32 Type; typedef in struct:__sanitizer::atomic_uint32_t
42 volatile Type val_dont_use;
46 typedef u64 Type; typedef in struct:__sanitizer::atomic_uint64_t
48 volatile ALIGNED(8) Type val_dont_use;
52 typedef uptr Type; typedef in struct:__sanitizer::atomic_uintptr_t
53 volatile Type val_dont_us
[all...]
/external/icu/icu4j/main/classes/core/src/com/ibm/icu/text/
H A DDisplayContext.java25 STANDARD_NAMES(Type.DIALECT_HANDLING, 0),
32 DIALECT_NAMES(Type.DIALECT_HANDLING, 1),
42 CAPITALIZATION_NONE(Type.CAPITALIZATION, 0),
49 CAPITALIZATION_FOR_MIDDLE_OF_SENTENCE(Type.CAPITALIZATION, 1),
56 CAPITALIZATION_FOR_BEGINNING_OF_SENTENCE(Type.CAPITALIZATION, 2),
63 CAPITALIZATION_FOR_UI_LIST_OR_MENU(Type.CAPITALIZATION, 3),
71 CAPITALIZATION_FOR_STANDALONE(Type.CAPITALIZATION, 4),
83 LENGTH_FULL(Type.DISPLAY_LENGTH, 0),
91 LENGTH_SHORT(Type.DISPLAY_LENGTH, 1);
94 * Type value
97 public enum Type { enum in class:DisplayContext
[all...]
/external/llvm/lib/Object/
H A DELF.cpp19 StringRef getELFRelocationTypeName(uint32_t Machine, uint32_t Type) { argument
22 switch (Type) {
29 switch (Type) {
36 switch (Type) {
43 switch (Type) {
50 switch (Type) {
57 switch (Type) {
64 switch (Type) {
71 switch (Type) {
78 switch (Type) {
[all...]
/external/clang/test/CodeGenCXX/
H A Ddelayed-template-parsing.cpp5 struct Type { struct in namespace:ClassScopeSpecialization
13 Type T;
14 // CHECK: call {{.*}} @"\01??$Foo@$0A@@Type@ClassScopeSpecialization@@QAEXXZ"
15 // X64: call {{.*}} @"\01??$Foo@$0A@@Type@ClassScopeSpecialization@@QEAAXXZ"
/external/jetty/src/java/org/eclipse/jetty/server/nio/
H A DAbstractNIOConnector.java24 import org.eclipse.jetty.io.Buffers.Type;
31 _buffers.setRequestBufferType(Type.DIRECT);
32 _buffers.setRequestHeaderType(Type.INDIRECT);
33 _buffers.setResponseBufferType(Type.DIRECT);
34 _buffers.setResponseHeaderType(Type.INDIRECT);
40 return getRequestBufferType()==Type.DIRECT;
50 _buffers.setRequestBufferType(direct?Type.DIRECT:Type.INDIRECT);
51 _buffers.setResponseBufferType(direct?Type.DIRECT:Type
[all...]
/external/libcxx/test/std/utilities/function.objects/func.require/
H A Dinvoke.pass.cpp25 struct Type struct
40 static_assert(sizeof(std::__invoke(&Type::f1, std::declval<Type >())) == 1, "");
41 static_assert(sizeof(std::__invoke(&Type::f2, std::declval<Type const >())) == 2, "");
43 static_assert(sizeof(std::__invoke(&Type::g1, std::declval<Type &>())) == 1, "");
44 static_assert(sizeof(std::__invoke(&Type::g2, std::declval<Type const &>())) == 2, "");
46 static_assert(sizeof(std::__invoke(&Type
[all...]
/external/v8/src/base/
H A Dflags.h67 #define DEFINE_OPERATORS_FOR_FLAGS(Type) \
68 inline Type operator&(Type::flag_type lhs, \
69 Type::flag_type rhs)ALLOW_UNUSED WARN_UNUSED_RESULT; \
70 inline Type operator&(Type::flag_type lhs, Type::flag_type rhs) { \
71 return Type(lhs) & rhs; \
73 inline Type operator&(Type
[all...]
/external/mockito/cglib-and-asm/src/org/mockito/cglib/core/
H A 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_BOOLEA
[all...]
H A DCustomizer.java18 import org.mockito.asm.Type;
21 void customize(CodeEmitter e, Type type);
H A DProcessArrayCallback.java18 import org.mockito.asm.Type;
21 void processElement(Type type);
H A DLocal.java18 import org.mockito.asm.Type;
22 private Type type;
25 public Local(int index, Type type) {
34 public Type getType() {
/external/mockito/cglib-and-asm/src/org/mockito/cglib/transform/impl/
H A DInterceptFieldFilter.java18 import org.mockito.asm.Type;
21 boolean acceptRead(Type owner, String name);
22 boolean acceptWrite(Type owner, String name);
/external/replicaisland/src/com/replica/replicaisland/
H A DSorter.java21 public abstract class Sorter<Type> {
22 public abstract void sort(Type[] array, int count, Comparator<Type> comparator);
/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/llvm/tools/llvm-pdbdump/
H A DBuiltinDumper.cpp22 PDB_BuiltinType Type = Symbol.getBuiltinType(); local
23 switch (Type) {
26 WithColor(Printer, PDB_ColorItem::Type).get() << "float";
28 WithColor(Printer, PDB_ColorItem::Type).get() << "double";
31 WithColor(Printer, PDB_ColorItem::Type).get() << "unsigned";
33 WithColor(Printer, PDB_ColorItem::Type).get() << " __int64";
37 WithColor(Printer, PDB_ColorItem::Type).get() << "int";
39 WithColor(Printer, PDB_ColorItem::Type).get() << "__int64";
42 WithColor(Printer, PDB_ColorItem::Type).get() << "char";
45 WithColor(Printer, PDB_ColorItem::Type)
[all...]
/external/dexmaker/src/dx/java/com/android/dx/rop/cst/
H A DZeroes.java19 import com.android.dx.rop.type.Type;
38 public static Constant zeroFor(Type type) {
40 case Type.BT_BOOLEAN: return CstBoolean.VALUE_FALSE;
41 case Type.BT_BYTE: return CstByte.VALUE_0;
42 case Type.BT_CHAR: return CstChar.VALUE_0;
43 case Type.BT_DOUBLE: return CstDouble.VALUE_0;
44 case Type.BT_FLOAT: return CstFloat.VALUE_0;
45 case Type.BT_INT: return CstInteger.VALUE_0;
46 case Type.BT_LONG: return CstLong.VALUE_0;
47 case Type
[all...]
H A 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
[all...]
/external/dexmaker/src/dx/java/com/android/dx/rop/code/
H A DExceptions.java20 import com.android.dx.rop.type.Type;
27 public static final Type TYPE_ArithmeticException =
28 Type.intern("Ljava/lang/ArithmeticException;");
34 public static final Type TYPE_ArrayIndexOutOfBoundsException =
35 Type.intern("Ljava/lang/ArrayIndexOutOfBoundsException;");
38 public static final Type TYPE_ArrayStoreException =
39 Type.intern("Ljava/lang/ArrayStoreException;");
42 public static final Type TYPE_ClassCastException =
43 Type.intern("Ljava/lang/ClassCastException;");
46 public static final Type TYPE_Erro
[all...]
/external/dexmaker/src/dx/java/com/android/dx/rop/type/
H A 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
[all...]
H A DType.java29 public final class Type implements TypeBearer, Comparable<Type> { class in inherits:TypeBearer,Comparable
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("
429 private Type(String descriptor, int basicType, int newAt) { method in class:Type
459 private Type(String descriptor, int basicType) { method in class: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/v8/src/
H A Dproperty-details-inl.h16 Representation Representation::FromType(Type* type) {
18 if (type->Is(Type::None())) return Representation::None();
19 if (type->Is(Type::SignedSmall())) return Representation::Smi();
20 if (type->Is(Type::Signed32())) return Representation::Integer32();
21 if (type->Is(Type::Number())) return Representation::Double();
/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/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) {

Completed in 717 milliseconds

1234567891011>>