Home
last modified time | relevance | path

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

/frameworks/base/tools/aapt2/tools/
Dfinalize_res.py47 _type = "" variable
60 id = _type_ids[_type]
61 _type_ids[_type] += 1
62 return ' <public type="%s" name="%s" id="%s" />\n' % (_type, name, '0x{0:0{1}x}'.format(id, 8))
71 global _type, _lowest_staging_first_id
72 _type = raw.group(1)
74 _type_ids[_type] = _type_ids.get(_type, id)
/frameworks/av/media/module/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/av/media/module/libmediatranscoding/transcoder/tests/
DMediaTranscoderTests.cpp34 #define DEFINE_FORMAT_VALUE_EQUAL_FUNC(_type, _typeName) \ argument
36 _type srcVal, dstVal; \
/frameworks/base/core/java/android/view/
DWindowManager.java4811 public LayoutParams(int _type) { in LayoutParams() argument
4813 type = _type; in LayoutParams()
4817 public LayoutParams(int _type, int _flags) { in LayoutParams() argument
4819 type = _type; in LayoutParams()
4824 public LayoutParams(int _type, int _flags, int _format) { in LayoutParams() argument
4826 type = _type; in LayoutParams()
4831 public LayoutParams(int w, int h, int _type, int _flags, int _format) { in LayoutParams() argument
4833 type = _type; in LayoutParams()
4838 public LayoutParams(int w, int h, int xpos, int ypos, int _type, in LayoutParams() argument
4843 type = _type; in LayoutParams()
/frameworks/av/media/module/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.java273 TempAllowListDuration(long _duration, int _type, @ReasonCode int _reasonCode, in TempAllowListDuration() argument
276 type = _type; in TempAllowListDuration()
/frameworks/av/media/codec2/vndk/
DC2DmaBufAllocator.cpp79 typedef C2HandleBuf _type; typedef
/frameworks/av/media/codec2/core/include/
DC2Param.h1294 typedef C2##name##Struct _type; /**< type name shorthand */ \
1424 C2FieldDescriptor(&((_type*)(nullptr))->member, name),
/frameworks/av/media/module/extractors/mp4/
DItemTable.cpp48 ImageItem(uint32_t _type, uint32_t _id, bool _hidden) : in ImageItem()
49 type(_type), itemId(_id), hidden(_hidden), in ImageItem()