Searched refs:TYPE (Results 1 - 25 of 41) sorted by relevance

12

/frameworks/base/include/utils/
H A DVector.h38 template <class TYPE>
42 typedef TYPE value_type;
49 Vector(const Vector<TYPE>& rhs);
53 const Vector<TYPE>& operator = (const Vector<TYPE>& rhs) const;
54 Vector<TYPE>& operator = (const Vector<TYPE>& rhs);
80 inline const TYPE* array() const;
82 TYPE* editArray();
89 inline const TYPE
[all...]
H A DSortedVector.h32 template <class TYPE>
36 typedef TYPE value_type;
43 SortedVector(const SortedVector<TYPE>& rhs);
47 const SortedVector<TYPE>& operator = (const SortedVector<TYPE>& rhs) const;
48 SortedVector<TYPE>& operator = (const SortedVector<TYPE>& rhs);
74 inline const TYPE* array() const;
78 TYPE* editArray();
81 ssize_t indexOf(const TYPE
[all...]
H A DSingleton.h27 template <typename TYPE>
31 static TYPE& getInstance() {
33 TYPE* instance = sInstance;
35 instance = new TYPE();
49 static TYPE* sInstance;
53 * use ANDROID_SINGLETON_STATIC_INSTANCE(TYPE) in your implementation file
54 * (eg: <TYPE>.cpp) to create the static instance of Singleton<>'s attributes,
55 * and avoid to have a copy of them in each compilation units Singleton<TYPE>
59 #define ANDROID_SINGLETON_STATIC_INSTANCE(TYPE) \
60 template class Singleton< TYPE >; \
[all...]
H A DTypeHelpers.h52 template <typename TYPE>
56 is_pointer = trait_pointer<TYPE>::value,
58 has_trivial_ctor = is_pointer || trait_trivial_ctor<TYPE>::value,
60 has_trivial_dtor = is_pointer || trait_trivial_dtor<TYPE>::value,
62 has_trivial_copy = is_pointer || trait_trivial_copy<TYPE>::value,
64 has_trivial_move = is_pointer || trait_trivial_move<TYPE>::value
117 template<typename TYPE> inline
118 int strictly_order_type(const TYPE& lhs, const TYPE& rhs) {
122 template<typename TYPE> inlin
[all...]
H A DDebug.h40 struct CompileTimeIfElse<true, LHS, RHS> { typedef LHS TYPE; }; typedef in struct:android::CompileTimeIfElse
42 struct CompileTimeIfElse<false, LHS, RHS> { typedef RHS TYPE; }; typedef in struct:android::CompileTimeIfElse
H A DList.h71 template <typename TYPE>
74 typedef const TYPE Type;
77 template <typename TYPE>
80 typedef TYPE Type;
/frameworks/base/include/ui/
H A DEGLNativeSurface.h32 template <class TYPE>
33 class EGLNativeSurface : public egl_native_window_t, public LightRefBase<TYPE>
/frameworks/base/include/ui/egl/
H A Dandroid_natives.h227 template <typename NATIVE_TYPE, typename TYPE, typename REF>
231 typedef EGLNativeBase<NATIVE_TYPE, TYPE, REF> BASE;
236 static inline TYPE* getSelf(NATIVE_TYPE* self) {
237 return static_cast<TYPE*>(self);
239 static inline TYPE const* getSelf(NATIVE_TYPE const* self) {
240 return static_cast<TYPE const *>(self);
242 static inline TYPE* getSelf(android_native_base_t* base) {
245 static inline TYPE const * getSelf(android_native_base_t const* base) {
/frameworks/base/include/private/ui/
H A DRegionHelper.h29 typedef typename RECT::value_type TYPE; typedef in class:android::region_operator
30 static const TYPE max_value = 0x7FFFFFF;
52 TYPE dx;
53 TYPE dy;
58 inline region(RECT const* r, size_t c, TYPE dx, TYPE dy)
81 TYPE left, right;
106 TYPE lhs_head;
107 TYPE lhs_tail;
108 TYPE rhs_hea
[all...]
/frameworks/base/core/java/android/annotation/
H A DWidget.java34 @Target({ ElementType.TYPE })
/frameworks/base/core/java/android/test/suitebuilder/annotation/
H A DLargeTest.java28 @Target({ElementType.METHOD, ElementType.TYPE})
H A DMediumTest.java29 @Target({ElementType.METHOD, ElementType.TYPE})
H A DSmallTest.java28 @Target({ElementType.METHOD, ElementType.TYPE})
H A DSmoke.java32 @Target({ElementType.METHOD, ElementType.TYPE})
H A DSuppress.java31 @Target({ElementType.METHOD, ElementType.TYPE})
/frameworks/base/libs/surfaceflinger/
H A DBlurFilter.cpp233 typedef typename PIXEL::type TYPE; typedef
248 (src->stride * kernelSize) * sizeof(TYPE));
253 TYPE* const scratch = (TYPE*)(sums + w + kernelSize);
261 TYPE* head;
262 TYPE pixel;
272 src->stride*kernelHalfSize*sizeof(TYPE));
277 head = (TYPE*)src->data + y*src->stride;
283 TYPE* fb = (TYPE*)ds
[all...]
/frameworks/base/tests/CoreTests/android/core/
H A DReflectArrayTest.java31 Object intArray = Array.newInstance(Integer.TYPE, 2);
57 intArray = Array.newInstance(Integer.TYPE, 0);
81 Object intIntIntArray = Array.newInstance(Integer.TYPE, dimensions);
/frameworks/base/core/java/android/provider/
H A DCallLog.java77 public static final String TYPE = "type"; field in class:CallLog.Calls
169 values.put(TYPE, Integer.valueOf(callType));
H A DTelephony.java62 public static final String TYPE = "type"; field in interface:Telephony.TextBasedSmsColumns
271 values.put(TYPE, folder);
1107 public static final String TYPE = "type"; field in interface:Telephony.ThreadsColumns
1389 public static final String TYPE = "type"; field in class:Telephony.Mms.Addr
1674 public static final String TYPE = "type"; field in class:Telephony.Carriers
/frameworks/base/core/java/android/util/
H A DXml.java119 static final String TYPE field in class:Xml.XmlSerializerFactory
124 instance = XmlPullParserFactory.newInstance(TYPE, null);
/frameworks/base/core/java/android/os/
H A DBuild.java172 public static final String TYPE = getString("ro.build.type"); field in class:Build
/frameworks/base/tests/CoreTests/android/test/suitebuilder/annotation/
H A DHasAnnotationTest.java52 @Target({ElementType.TYPE, ElementType.METHOD})
/frameworks/base/obex/javax/obex/
H A DHeaderSet.java66 * The value of <code>TYPE</code> is 0x42 (66).
68 public static final int TYPE = 0x42; field in class:HeaderSet
274 case TYPE:
451 case TYPE:
513 out.write(TYPE);
H A DObexHelper.java196 case HeaderSet.TYPE:
387 stringHeader = (String)headImpl.getHeader(HeaderSet.TYPE);
389 out.write((byte)HeaderSet.TYPE);
403 headImpl.setHeader(HeaderSet.TYPE, null);
/frameworks/base/tests/AndroidTests/src/com/android/unit_tests/
H A DBuildTest.java66 assertNotEmpty("TYPE", Build.TYPE);

Completed in 1100 milliseconds

12