HomeSort by relevance Sort by last modified time
    Searched refs:Type (Results 26 - 50 of 4287) sorted by null

12 3 4 5 6 7 8 91011>>

  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/utilities/function.objects/func.require/
invoke.pass.cpp 22 typedef T type[N]; typedef in struct:Array
25 struct Type
27 Array<char, 1>::type& f1();
28 Array<char, 2>::type& f2() const;
30 Array<char, 1>::type& g1() &;
31 Array<char, 2>::type& g2() const &;
33 Array<char, 3>::type& g3() &&;
34 Array<char, 4>::type& g4() const &&;
40 static_assert(sizeof(std::__invoke(&Type::f1, std::declval<Type >())) == 1, "")
    [all...]
  /frameworks/base/libs/hwui/
BakedOpDispatcher.h 27 * Provides all "onBitmapOp(...)" style static methods for every op type, which convert the
37 #define X(Type) \
38 static void onMerged##Type##s(BakedOpRenderer& renderer, const MergedBakedOpList& opList);
42 // Declares all "onBitmapOp(...)" style methods for every op type
43 #define X(Type) \
44 static void on##Type(BakedOpRenderer& renderer, const Type& op, const BakedOpState& state);
  /external/mockito/cglib-and-asm/src/org/mockito/cglib/core/
Constants.java 18 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_BOOLEAN = TypeUtils.parseType("Boolean")
    [all...]
Customizer.java 18 import org.mockito.asm.Type;
21 void customize(CodeEmitter e, Type type);
ProcessArrayCallback.java 18 import org.mockito.asm.Type;
21 void processElement(Type type);
  /prebuilts/misc/common/swig/include/2.0.11/typemaps/
valtypes.swg 2 * Value typemaps (Type, const Type&) for value types, such as
8 * %typemaps_from(FromMeth, FromFrag, Type)
9 * %typemaps_asval(CheckCode, AsValMeth, AsValFrag, Type)
10 * %typemaps_asvalfrom(CheckCode, AsValMeth, FromMeth, AsValFrag, FromFrag, Type)
14 * %typemaps_asvalfromn(CheckCode, Type)
18 * %value_in_typemap(asval_meth,frag,Type)
19 * %value_varin_typemap(asval_meth,frag,Type)
20 * %value_typecheck_typemap(checkcode,asval_meth,frag,Type)
21 * %value_directorout_typemap(asval_meth,frag,Type)
    [all...]
  /external/libcxx/test/std/experimental/any/any.nonmembers/any.cast/
any_cast_reference.pass.cpp 44 // Test that the return type of any_cast is correct.
71 template <class Type, class ConstT = Type>
76 any_cast<Type>(a);
94 any_cast<Type>(static_cast<any&&>(a));
111 template <class Type>
113 assert(Type::count == 0);
114 Type::reset();
116 any a((Type(42)));
118 assert(Type::count == 1)
    [all...]
  /external/compiler-rt/lib/sanitizer_common/
sanitizer_atomic.h 31 typedef u8 Type;
32 volatile Type val_dont_use;
36 typedef u16 Type;
37 volatile Type val_dont_use;
41 typedef u32 Type;
42 volatile Type val_dont_use;
46 typedef u64 Type;
48 volatile ALIGNED(8) Type val_dont_use;
52 typedef uptr Type;
53 volatile Type val_dont_use
    [all...]
  /external/mockito/cglib-and-asm/src/org/mockito/cglib/transform/impl/
InterceptFieldFilter.java 18 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/
Sorter.java 21 public abstract class Sorter<Type> {
22 public abstract void sort(Type[] array, int count, Comparator<Type> comparator);
  /external/webrtc/talk/app/webrtc/java/src/org/webrtc/
SessionDescription.java 37 /** Java-land enum version of SessionDescriptionInterface's type() string. */
38 public static enum Type {
45 public static Type fromCanonicalForm(String canonical) {
46 return Type.valueOf(Type.class, canonical.toUpperCase());
50 public final Type type; field in class:SessionDescription
53 public SessionDescription(Type type, String description) {
54 this.type = type
    [all...]
  /art/runtime/
runtime_options.cc 32 #define RUNTIME_OPTIONS_KEY(Type, Name, ...) const RuntimeArgumentMap::Key<Type> RuntimeArgumentMap::Name {__VA_ARGS__}; // NOLINT [readability/braces] [4]
  /external/libchrome/base/memory/
singleton.h 45 // Default traits for Singleton<Type>. Calls operator new and operator delete on
48 template<typename Type>
51 static Type* New() {
52 // The parenthesis is very important here; it forces POD type
54 return new Type();
58 static void Delete(Type* x) {
75 // Alternate traits for use with the Singleton<Type>. Identical to
78 template<typename Type>
79 struct LeakySingletonTraits : public DefaultSingletonTraits<Type> {
87 // Alternate traits for use with the Singleton<Type>. Allocates memor
    [all...]
  /libcore/ojluni/src/main/java/java/lang/reflect/
TypeVariable.java 29 * TypeVariable is the common superinterface for type variables of kinds.
30 * A type variable is created the first time it is needed by a reflective
31 * method, as specified in this package. If a type variable t is referenced
32 * by a type (i.e, class, interface or annotation type) T, and T is declared
35 * for i = 0 to n, inclusive. Creating a type variable must not cause the
36 * creation of its bounds. Repeated creation of a type variable has no effect.
39 * represent a given type variable. Even though a type variable is
41 * instances representing the type variable. However, all instance
    [all...]
  /prebuilts/misc/common/swig/include/2.0.11/octave/
octuserdir.swg 21 template <class Type> class RCPtr {
24 RCPtr(Type *p);
25 Type * operator->() const;
53 you can type
68 %define %extend_smart_pointer(Type...)
69 %implicitconv Type;
70 %apply const SWIGTYPE& SMARTPOINTER { const Type& };
71 %apply SWIGTYPE SMARTPOINTER { Type };
  /external/llvm/lib/Target/PowerPC/MCTargetDesc/
PPCELFObjectWriter.cpp 32 unsigned Type) const override;
74 // determine the type of the relocation
75 unsigned Type;
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
    [all...]
  /dalvik/dexgen/src/com/android/dexgen/rop/cst/
Zeroes.java 19 import com.android.dexgen.rop.type.Type;
33 * Gets the "zero" (or {@code null}) value for the given type.
35 * @param type {@code non-null;} the type in question
38 public static Constant zeroFor(Type type) {
39 switch (type.getBasicType()) {
40 case Type.BT_BOOLEAN: return CstBoolean.VALUE_FALSE;
41 case Type.BT_BYTE: return CstByte.VALUE_0
    [all...]
  /dalvik/dx/src/com/android/dx/rop/cst/
Zeroes.java 19 import com.android.dx.rop.type.Type;
33 * Gets the "zero" (or {@code null}) value for the given type.
35 * @param type {@code non-null;} the type in question
38 public static Constant zeroFor(Type type) {
39 switch (type.getBasicType()) {
40 case Type.BT_BOOLEAN: return CstBoolean.VALUE_FALSE;
41 case Type.BT_BYTE: return CstByte.VALUE_0
    [all...]
  /external/dexmaker/src/dx/java/com/android/dx/rop/cst/
Zeroes.java 19 import com.android.dx.rop.type.Type;
33 * Gets the "zero" (or {@code null}) value for the given type.
35 * @param type {@code non-null;} the type in question
38 public static Constant zeroFor(Type type) {
39 switch (type.getBasicType()) {
40 case Type.BT_BOOLEAN: return CstBoolean.VALUE_FALSE;
41 case Type.BT_BYTE: return CstByte.VALUE_0
    [all...]
  /build/kati/
thread_local.h 44 #define DEFINE_THREAD_LOCAL(Type, name) thread_local Type name
53 template <typename Type>
55 delete reinterpret_cast<Type>(ptr);
58 template<typename Type, pthread_key_t* key>
60 if (pthread_key_create(key, ThreadLocalDestructor<Type>))
64 template<typename Type, pthread_key_t* key, pthread_once_t* once>
67 Type& Ref() {
70 Type Get() {
73 void Set(const Type& value)
    [all...]
  /dalvik/dexgen/src/com/android/dexgen/rop/code/
Exceptions.java 19 import com.android.dexgen.rop.type.StdTypeList;
20 import com.android.dexgen.rop.type.Type;
26 /** {@code non-null;} the type {@code java.lang.ArithmeticException} */
27 public static final Type TYPE_ArithmeticException =
28 Type.intern("Ljava/lang/ArithmeticException;");
31 * {@code non-null;} the type
34 public static final Type TYPE_ArrayIndexOutOfBoundsException =
35 Type.intern("Ljava/lang/ArrayIndexOutOfBoundsException;");
37 /** {@code non-null;} the type {@code java.lang.ArrayStoreException} *
    [all...]
  /dalvik/dx/src/com/android/dx/rop/code/
Exceptions.java 19 import com.android.dx.rop.type.StdTypeList;
20 import com.android.dx.rop.type.Type;
26 /** {@code non-null;} the type {@code java.lang.ArithmeticException} */
27 public static final Type TYPE_ArithmeticException =
28 Type.intern("Ljava/lang/ArithmeticException;");
31 * {@code non-null;} the type
34 public static final Type TYPE_ArrayIndexOutOfBoundsException =
35 Type.intern("Ljava/lang/ArrayIndexOutOfBoundsException;");
37 /** {@code non-null;} the type {@code java.lang.ArrayStoreException} *
    [all...]
  /external/dexmaker/src/dx/java/com/android/dx/rop/code/
Exceptions.java 19 import com.android.dx.rop.type.StdTypeList;
20 import com.android.dx.rop.type.Type;
26 /** {@code non-null;} the type {@code java.lang.ArithmeticException} */
27 public static final Type TYPE_ArithmeticException =
28 Type.intern("Ljava/lang/ArithmeticException;");
31 * {@code non-null;} the type
34 public static final Type TYPE_ArrayIndexOutOfBoundsException =
35 Type.intern("Ljava/lang/ArrayIndexOutOfBoundsException;");
37 /** {@code non-null;} the type {@code java.lang.ArrayStoreException} *
    [all...]
  /libcore/luni/src/test/java/org/apache/harmony/security/tests/java/security/
KeyRepTypeTest.java 35 * java.security.KeyRep.Type#valueOf(String)
39 KeyRep.Type.valueOf("type");
45 KeyRep.Type.valueOf(null);
50 assertEquals(KeyRep.Type.PRIVATE, KeyRep.Type
51 .valueOf(KeyRep.Type.PRIVATE.toString()));
52 assertEquals(KeyRep.Type.PUBLIC, KeyRep.Type.valueOf(KeyRep.Type.PUBLI
    [all...]
  /dalvik/dexgen/src/com/android/dexgen/rop/type/
StdTypeList.java 17 package com.android.dexgen.rop.type;
30 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)
    [all...]

Completed in 741 milliseconds

12 3 4 5 6 7 8 91011>>