Home
last modified time | relevance | path

Searched refs:_type (Results 1 – 11 of 11) sorted by relevance

/frameworks/base/tools/finalize_res/
Dfinalize_res.py27 global _type, _id
29 …return '<public type="%s" name="%s" id="%s" />' % (_type, raw.group(1), '0x{0:0{1}x}'.format(_id-1…
32 global _type, _id
33 _type = raw.group(1)
/frameworks/av/media/libmediatranscoding/transcoder/
DNdkCommon.cpp49 #define DEFINE_FORMAT_VALUE_COPY_FUNC(_type, _typeName) \ argument
51 _type value; \
81 #define DEFINE_SET_DEFAULT_FORMAT_VALUE_FUNC(_type, _typeName) \ argument
82 bool SetDefaultFormatValue##_typeName(const char* key, AMediaFormat* format, _type value) { \
83 _type tmp; \
/frameworks/av/media/codec2/vndk/internal/
DC2HandleIonInternal.h53 typedef C2HandleIon _type; typedef
/frameworks/rs/
DrsHidlAdaptation.cpp225 uint64_t _type = (uint64_t)(uintptr_t)type; in TypeGetNativeData() local
227 GetIContextHandle(context)->typeGetNativeMetadata(_type, in TypeGetNativeData()
423 uint64_t _type = (uint64_t)(uintptr_t)type; in AllocationCreateTyped() local
426 uint64_t allocation = GetIContextHandle(context)->allocationCreateTyped(_type, in AllocationCreateTyped()
436 uint64_t _type = (uint64_t)(uintptr_t)type; in AllocationCreateFromBitmap() local
441 uint64_t allocation = GetIContextHandle(context)->allocationCreateFromBitmap(_type, in AllocationCreateFromBitmap()
450 uint64_t _type = (uint64_t)(uintptr_t)type; in AllocationCubeCreateFromBitmap() local
455 …uint64_t allocation = GetIContextHandle(context)->allocationCubeCreateFromBitmap(_type, (Allocatio… in AllocationCubeCreateFromBitmap()
970 std::vector<Type> _type(typeSize / sizeof(RsType)); in ScriptGroupCreate() local
984 for (size_t i = 0; i < _type.size(); i++) { in ScriptGroupCreate()
[all …]
/frameworks/base/core/java/android/view/
DWindowManager.java3575 public LayoutParams(int _type) { in LayoutParams() argument
3577 type = _type; in LayoutParams()
3581 public LayoutParams(int _type, int _flags) { in LayoutParams() argument
3583 type = _type; in LayoutParams()
3588 public LayoutParams(int _type, int _flags, int _format) { in LayoutParams() argument
3590 type = _type; in LayoutParams()
3595 public LayoutParams(int w, int h, int _type, int _flags, int _format) { in LayoutParams() argument
3597 type = _type; in LayoutParams()
3602 public LayoutParams(int w, int h, int xpos, int ypos, int _type, in LayoutParams() argument
3607 type = _type; in LayoutParams()
/frameworks/av/media/libmediatranscoding/transcoder/tests/
DMediaTranscoderTests.cpp34 #define DEFINE_FORMAT_VALUE_EQUAL_FUNC(_type, _typeName) \ argument
36 _type srcVal, dstVal; \
/frameworks/av/media/libstagefright/foundation/include/media/stagefright/foundation/
DAData.h149 using _type = typename std::aligned_union<0, Ts...>::type; ///< storage type
150 _type mValue; ///< storage
169 sizeof(_type), reinterpret_cast<T*>(&mValue), std::forward<Args>(args)...); in emplace()
/frameworks/base/services/core/java/com/android/server/am/
DPendingIntentRecord.java225 TempAllowListDuration(long _duration, int _type, @ReasonCode int _reasonCode, in TempAllowListDuration() argument
228 type = _type; in TempAllowListDuration()
/frameworks/av/media/codec2/vndk/
DC2DmaBufAllocator.cpp78 typedef C2HandleBuf _type; typedef
/frameworks/av/media/codec2/core/include/
DC2Param.h1292 typedef C2##name##Struct _type; /**< type name shorthand */ \
1422 C2FieldDescriptor(&((_type*)(nullptr))->member, name),
/frameworks/av/media/extractors/mp4/
DItemTable.cpp47 ImageItem(uint32_t _type, uint32_t _id, bool _hidden) : in ImageItem()
48 type(_type), itemId(_id), hidden(_hidden), in ImageItem()