HomeSort by relevance Sort by last modified time
    Searched refs:TYPE (Results 1 - 25 of 1151) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/clang/test/Sema/
varargs_unreachable.c 6 #define VA_ARG_RDAR12322000(Marker, TYPE) ((sizeof (TYPE) < sizeof (UINTN_RDAR12322000)) ? (TYPE)(__builtin_va_arg (Marker, UINTN_RDAR12322000)) : (TYPE)(__builtin_va_arg (Marker, TYPE)))
  /prebuilts/misc/common/swig/include/2.0.11/
cmalloc.i 12 /* %malloc(TYPE [, NAME = TYPE])
13 %calloc(TYPE [, NAME = TYPE])
14 %realloc(TYPE [, NAME = TYPE])
15 %free(TYPE [, NAME = TYPE])
16 %allocators(TYPE [,NAME = TYPE])
    [all...]
carrays.i 9 * %array_functions(TYPE,NAME)
14 * TYPE *new_NAME(int nelements)
15 * void delete_NAME(TYPE *);
16 * TYPE NAME_getitem(TYPE *, int index);
17 * void NAME_setitem(TYPE *, int index, TYPE value);
21 %define %array_functions(TYPE,NAME)
23 static TYPE *new_##NAME(int nelements) { %}
25 %{ return new TYPE[nelements]; %
    [all...]
cpointer.i 9 * %pointer_class(type,name)
11 * Places a simple proxy around a simple type like 'int', 'float', or whatever.
14 * class type {
16 * type();
17 * ~type();
18 * type value();
19 * void assign(type value);
44 %define %pointer_class(TYPE, NAME)
46 typedef TYPE NAME;
55 return new TYPE();
    [all...]
intrusive_ptr.i 50 %define %intrusive_ptr(TYPE...)
51 %feature("smartptr", noblock=1) TYPE { SWIG_SHARED_PTR_QNAMESPACE::shared_ptr< TYPE > }
52 SWIG_INTRUSIVE_PTR_TYPEMAPS(SWIGEMPTYHACK, TYPE)
53 SWIG_INTRUSIVE_PTR_TYPEMAPS(const, TYPE)
56 %define %intrusive_ptr_no_wrap(TYPE...)
57 %feature("smartptr", noblock=1) TYPE { SWIG_SHARED_PTR_QNAMESPACE::shared_ptr< TYPE > }
58 SWIG_INTRUSIVE_PTR_TYPEMAPS_NO_WRAP(SWIGEMPTYHACK, TYPE)
59 SWIG_INTRUSIVE_PTR_TYPEMAPS_NO_WRAP(const, TYPE)
    [all...]
  /prebuilts/misc/common/swig/include/2.0.11/d/
carrays.i 8 * %array_functions(TYPE,NAME)
13 * TYPE *new_NAME(int nelements)
14 * void delete_NAME(TYPE *);
15 * TYPE NAME_getitem(TYPE *, int index);
16 * void NAME_setitem(TYPE *, int index, TYPE value);
20 %define %array_functions(TYPE,NAME)
22 static TYPE *new_##NAME(int nelements) { %}
24 %{ return new TYPE[nelements]; %
    [all...]
cpointer.i 8 * %pointer_class(type,name)
10 * Places a simple proxy around a simple type like 'int', 'float', or whatever.
13 * class type {
15 * type();
16 * ~type();
17 * type value();
18 * void assign(type value);
43 %define %pointer_class(TYPE, NAME)
45 typedef TYPE NAME;
54 return new TYPE();
    [all...]
  /external/elfutils/0.153/libebl/
eblauxvinfo.c 63 TYPE (NULL, "") \
64 TYPE (IGNORE, "") \
65 TYPE (EXECFD, "d") \
66 TYPE (EXECFN, "s") \
67 TYPE (PHDR, "p") \
68 TYPE (PHENT, "u") \
69 TYPE (PHNUM, "u") \
70 TYPE (PAGESZ, "u") \
71 TYPE (BASE, "p") \
72 TYPE (FLAGS, "x")
    [all...]
  /system/core/libpixelflinger/codeflinger/tinyutils/
SortedVector.h 33 template <class TYPE>
37 typedef TYPE value_type;
44 SortedVector(const SortedVector<TYPE>& rhs);
48 const SortedVector<TYPE>& operator = (const SortedVector<TYPE>& rhs) const;
49 SortedVector<TYPE>& operator = (const SortedVector<TYPE>& rhs);
75 inline const TYPE* array() const;
79 TYPE* editArray();
82 ssize_t indexOf(const TYPE& item) const
    [all...]
Vector.h 36 * The main templated vector class ensuring type safety
41 template <class TYPE>
45 typedef TYPE value_type;
52 Vector(const Vector<TYPE>& rhs);
56 const Vector<TYPE>& operator = (const Vector<TYPE>& rhs) const;
57 Vector<TYPE>& operator = (const Vector<TYPE>& rhs);
83 inline const TYPE* array() const;
85 TYPE* editArray()
    [all...]
  /frameworks/base/libs/hwui/utils/
SortedList.h 35 template<class TYPE>
38 typedef TYPE value_type;
41 SortedList(const SortedList<TYPE>& rhs);
44 const SortedList<TYPE>& operator =(const SortedList<TYPE>& rhs) const;
45 SortedList<TYPE>& operator =(const SortedList<TYPE>& rhs);
67 inline const TYPE* array() const;
69 TYPE* editArray();
71 ssize_t indexOf(const TYPE& item) const
    [all...]
  /system/core/include/utils/
SortedVector.h 34 template <class TYPE>
37 friend class Vector<TYPE>;
40 typedef TYPE value_type;
47 SortedVector(const SortedVector<TYPE>& rhs);
51 const SortedVector<TYPE>& operator = (const SortedVector<TYPE>& rhs) const;
52 SortedVector<TYPE>& operator = (const SortedVector<TYPE>& rhs);
78 inline const TYPE* array() const;
82 TYPE* editArray()
    [all...]
Vector.h 33 template <typename TYPE>
37 * The main templated vector class ensuring type safety
42 template <class TYPE>
46 typedef TYPE value_type;
53 Vector(const Vector<TYPE>& rhs);
54 explicit Vector(const SortedVector<TYPE>& rhs);
58 const Vector<TYPE>& operator = (const Vector<TYPE>& rhs) const;
59 Vector<TYPE>& operator = (const Vector<TYPE>& rhs);
    [all...]
  /prebuilts/misc/common/swig/include/2.0.11/typemaps/
cpointer.swg 10 * %pointer_class(type,name)
12 * Places a simple proxy around a simple type like 'int', 'float', or whatever.
15 * class type {
17 * type();
18 * ~type();
19 * type value();
20 * void assign(type value);
45 %define %pointer_class(TYPE, NAME)
47 typedef TYPE NAME;
55 return %new_instance(TYPE);
    [all...]
cmalloc.swg 12 /* %malloc(TYPE [, NAME = TYPE])
13 %calloc(TYPE [, NAME = TYPE])
14 %realloc(TYPE [, NAME = TYPE])
15 %free(TYPE [, NAME = TYPE])
16 %allocators(TYPE [,NAME = TYPE])
    [all...]
carrays.swg 9 * %array_functions(TYPE,NAME)
14 * TYPE *new_NAME(int nelements)
15 * void delete_NAME(TYPE *);
16 * TYPE NAME_getitem(TYPE *, int index);
17 * void NAME_setitem(TYPE *, int index, TYPE value);
21 %define %array_functions(TYPE,NAME)
23 static TYPE *new_##NAME(size_t nelements) {
24 return %new_array(nelements, TYPE);
    [all...]
  /prebuilts/misc/common/swig/include/2.0.11/csharp/
typemaps.i 56 %define INPUT_TYPEMAP(TYPE, CTYPE, CSTYPE)
57 %typemap(ctype, out="void *") TYPE *INPUT, TYPE &INPUT "CTYPE"
58 %typemap(imtype, out="IntPtr") TYPE *INPUT, TYPE &INPUT "CSTYPE"
59 %typemap(cstype, out="$csclassname") TYPE *INPUT, TYPE &INPUT "CSTYPE"
60 %typemap(csin) TYPE *INPUT, TYPE &INPUT "$csinput"
62 %typemap(in) TYPE *INPUT, TYPE &INPU
    [all...]
  /prebuilts/misc/common/swig/include/2.0.11/java/
boost_intrusive_ptr.i 4 #define SWIG_INTRUSIVE_PTR_TYPEMAPS_NO_WRAP(CONST, TYPE...) SWIG_INTRUSIVE_PTR_TYPEMAPS_NO_WRAP_IMPLEMENTATION(protected, protected, CONST, TYPE)
7 #define SWIG_INTRUSIVE_PTR_TYPEMAPS(CONST, TYPE...) SWIG_INTRUSIVE_PTR_TYPEMAPS_IMPLEMENTATION(protected, protected, CONST, TYPE)
14 %define SWIG_INTRUSIVE_PTR_TYPEMAPS_IMPLEMENTATION(PTRCTOR_VISIBILITY, CPTR_VISIBILITY, CONST, TYPE...)
17 %naturalvar TYPE;
18 %naturalvar SWIG_INTRUSIVE_PTR_QNAMESPACE::intrusive_ptr< CONST TYPE >;
21 %feature("unref") TYPE "(void)arg1; delete smartarg1;"
25 %typemap(in) CONST TYPE ($&1_type argp = 0, SWIG_SHARED_PTR_QNAMESPACE::shared_ptr< CONST TYPE > *smartarg = 0) %
    [all...]
  /external/elfutils/0.153/libelf/
gelf_xlate.h 1 /* Helper file for type conversion function generation.
62 TYPE (Ehdr, LIBELFBITS)
63 TYPE (Phdr, LIBELFBITS)
64 TYPE (Shdr, LIBELFBITS)
65 TYPE (Sym, LIBELFBITS)
66 TYPE (Rel, LIBELFBITS)
67 TYPE (Rela, LIBELFBITS)
68 TYPE (Note, LIBELFBITS)
69 TYPE (Dyn, LIBELFBITS)
70 TYPE (Syminfo, LIBELFBITS
    [all...]
  /external/mp4parser/isoparser/src/main/java/com/coremedia/iso/boxes/
DataInformationBox.java 23 * Box Type: 'dinf'<br>
30 public static final String TYPE = "dinf";
33 super(TYPE);
EditBox.java 28 public static final String TYPE = "edts";
31 super(TYPE);
ProtectionSchemeInformationBox.java 34 public static final String TYPE = "sinf";
37 super(TYPE);
SchemeInformationBox.java 24 * boxexes whose type annd format are defined by the scheme declared in the {@link com.coremedia.iso.boxes.SchemeTypeBox}.
27 public static final String TYPE = "schi";
30 super(TYPE);
TrackReferenceBox.java 23 * Box Type: 'tref'<br>
33 * to fill the reference type box.
36 public static final String TYPE = "tref";
39 super(TYPE);
  /external/mp4parser/isoparser/src/main/java/com/coremedia/iso/boxes/apple/
AppleAlbumArtistBox.java 7 public static final String TYPE = "aART";
11 super(TYPE);

Completed in 563 milliseconds

1 2 3 4 5 6 7 8 91011>>