Searched refs:Type (Results 1 - 25 of 3567) 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
47 volatile Type val_dont_use;
51 typedef uptr Type; typedef in struct:__sanitizer::atomic_uintptr_t
52 volatile Type val_dont_us
[all...]
/external/chromium/base/memory/
H A Dsingleton_objc.h41 template<typename Type>
42 struct DefaultSingletonObjCTraits : public DefaultSingletonTraits<Type> {
43 static Type* New() {
44 return [[Type alloc] init];
47 static void Delete(Type* object) {
55 template<typename Type,
56 typename Traits = DefaultSingletonObjCTraits<Type>,
57 typename DifferentiatingType = Type>
58 class SingletonObjC : public Singleton<Type, Traits, DifferentiatingType> {
H A Dsingleton.h15 // Default traits for Singleton<Type>. Calls operator new and operator delete on
18 template<typename Type>
21 static Type* New() {
24 return new Type();
28 static void Delete(Type* x) {
43 // Alternate traits for use with the Singleton<Type>. Identical to
46 template<typename Type>
47 struct LeakySingletonTraits : public DefaultSingletonTraits<Type> {
53 // Alternate traits for use with the Singleton<Type>. Allocates memory
74 template <typename Type>
[all...]
/external/chromium_org/base/memory/
H A Dsingleton_objc.h40 template<typename Type>
41 struct DefaultSingletonObjCTraits : public DefaultSingletonTraits<Type> {
42 static Type* New() {
43 return [[Type alloc] init];
46 static void Delete(Type* object) {
54 template<typename Type,
55 typename Traits = DefaultSingletonObjCTraits<Type>,
56 typename DifferentiatingType = Type>
57 class SingletonObjC : public Singleton<Type, Traits, DifferentiatingType> {
H A Dsingleton.h45 // Default traits for Singleton<Type>. Calls operator new and operator delete on
48 template<typename Type>
51 static Type* New() {
54 return new Type();
58 static void Delete(Type* x) {
73 // Alternate traits for use with the Singleton<Type>. Identical to
76 template<typename Type>
77 struct LeakySingletonTraits : public DefaultSingletonTraits<Type> {
83 // Alternate traits for use with the Singleton<Type>. Allocates memory
104 template <typename Type>
[all...]
/external/chromium_org/ui/gfx/
H A Dinsets_base.h14 template<typename Class, typename Type>
17 Type top() const { return top_; }
18 Type left() const { return left_; }
19 Type bottom() const { return bottom_; }
20 Type right() const { return right_; }
24 Type width() const { return left_ + right_; }
28 Type height() const { return top_ + bottom_; }
33 void Set(Type top, Type left, Type botto
[all...]
H A Dsize_base.h13 template<typename Class, typename Type>
16 Type width() const { return width_; }
17 Type height() const { return height_; }
19 Type GetArea() const { return width_ * height_; }
21 void SetSize(Type width, Type height) {
26 void Enlarge(Type width, Type height) {
31 void set_width(Type width) {
34 void set_height(Type heigh
[all...]
/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/chromium_org/cc/animation/
H A Danimation_curve.cc12 DCHECK(Type() == AnimationCurve::Float);
16 AnimationCurve::CurveType FloatAnimationCurve::Type() const { function in class:cc::FloatAnimationCurve
22 DCHECK(Type() == AnimationCurve::Transform);
26 AnimationCurve::CurveType TransformAnimationCurve::Type() const { function in class:cc::TransformAnimationCurve
31 DCHECK(Type() == AnimationCurve::Filter);
35 AnimationCurve::CurveType FilterAnimationCurve::Type() const { function in class:cc::FilterAnimationCurve
/external/chromium_org/third_party/libjingle/source/talk/app/webrtc/java/src/org/webrtc/
H A DSessionDescription.java38 public static enum Type { enum in class:SessionDescription
45 public static Type fromCanonicalForm(String canonical) {
46 return Type.valueOf(Type.class, canonical.toUpperCase());
50 public final Type type;
53 public SessionDescription(Type type, String description) {
/external/llvm/lib/Target/AArch64/MCTargetDesc/
H A DAArch64ELFObjectWriter.cpp51 unsigned Type; local
63 Type = ELF::R_AARCH64_LD_PREL_LO19;
66 Type = ELF::R_AARCH64_ADR_PREL_LO21;
69 Type = ELF::R_AARCH64_ADR_PREL_PG_HI21;
72 Type = ELF::R_AARCH64_ADR_GOT_PAGE;
75 Type = ELF::R_AARCH64_TSTBR14;
78 Type = ELF::R_AARCH64_CONDBR19;
81 Type = ELF::R_AARCH64_JUMP26;
84 Type = ELF::R_AARCH64_CALL26;
87 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/llvm/lib/Target/PowerPC/MCTargetDesc/
H A DPPCELFObjectWriter.cpp60 unsigned Type; local
67 Type = ELF::R_PPC_REL24;
71 Type = ELF::R_PPC_REL14;
77 Type = ELF::R_PPC_REL16;
80 Type = ELF::R_PPC_REL16_LO;
83 Type = ELF::R_PPC_REL16_HI;
86 Type = ELF::R_PPC_REL16_HA;
92 Type = ELF::R_PPC_REL32;
96 Type = ELF::R_PPC64_REL64;
103 Type
[all...]
/external/llvm/lib/Target/X86/MCTargetDesc/
H A DX86ELFObjectWriter.cpp51 unsigned Type; local
57 case FK_Data_8: Type = ELF::R_X86_64_PC64; break;
58 case FK_Data_4: Type = ELF::R_X86_64_PC32; break;
59 case FK_Data_2: Type = ELF::R_X86_64_PC16; break;
63 Type = ELF::R_X86_64_PC64;
73 Type = ELF::R_X86_64_PC32;
76 Type = ELF::R_X86_64_PLT32;
79 Type = ELF::R_X86_64_GOTPCREL;
82 Type = ELF::R_X86_64_GOTTPOFF;
85 Type
[all...]
/external/chromium_org/chrome/browser/ui/app_list/
H A Dchrome_app_list_item.h15 enum Type { enum in class:ChromeAppListItem
24 Type type() const { return type_; }
27 explicit ChromeAppListItem(Type type) : type_(type) {}
31 Type type_;
/external/chromium_org/chrome/browser/ui/panels/
H A Dpanel_collection.cc7 PanelCollection::PanelCollection(Type type)
/external/smack/src/org/jivesoftware/smackx/commands/
H A DAdHocCommandNote.java30 private Type type;
39 public AdHocCommandNote(Type type, String value) {
58 public Type getType() {
65 public enum Type { enum in class:AdHocCommandNote
/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/chromium_org/third_party/WebKit/Source/wtf/
H A DPassTraits.h42 typedef T Type; typedef in struct:WTF::PassTraits
44 static PassType transfer(Type& value) { return value; }
48 typedef OwnPtr<T> Type; typedef in struct:WTF::PassTraits
50 static PassType transfer(Type& value) { return value.release(); }
54 typedef RefPtr<T> Type; typedef in struct:WTF::PassTraits
56 static PassType transfer(Type& value) { return value.release(); }
/external/chromium_org/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.
57 template <typename Type>
62 static Type* New(void* instance) {
63 DCHECK_EQ(reinterpret_cast<uintptr_t>(instance) & (ALIGNOF(Type) - 1), 0u)
66 "<Type> object
[all...]
/external/chromium_org/third_party/WebKit/public/platform/
H A DWebFileInfo.h47 enum Type { enum in struct:WebKit::WebFileInfo
53 Type type;

Completed in 607 milliseconds

1234567891011>>