Home
last modified time | relevance | path

Searched refs:type_ (Results 1 – 25 of 141) sorted by relevance

123456

/aosp12/packages/apps/Test/connectivity/sl4n/rapidjson/include/rapidjson/
H A Dencodedstream.h115 takeFunc_ = f[type_];
119 UTFType GetType() const { return type_; } in GetType()
181 if (type_ == kUTF16LE || type_ == kUTF16BE) RAPIDJSON_ASSERT(sizeof(Ch) >= 2); in DetectType()
182 if (type_ == kUTF32LE || type_ == kUTF32BE) RAPIDJSON_ASSERT(sizeof(Ch) >= 4); in DetectType()
187 UTFType type_; variable
214 if (type_ == kUTF16LE || type_ == kUTF16BE) RAPIDJSON_ASSERT(sizeof(Ch) >= 2); in AutoUTFOutputStream()
215 if (type_ == kUTF32LE || type_ == kUTF32BE) RAPIDJSON_ASSERT(sizeof(Ch) >= 4); in AutoUTFOutputStream()
218 putFunc_ = f[type_]; in AutoUTFOutputStream()
224 UTFType GetType() const { return type_; } in GetType()
243 f[type_](*os_); in PutBOM()
[all …]
/aosp12/system/nfc/utils/
H A Dconfig.cc45 type_ = UNSIGNED; in ConfigValue()
52 type_ = STRING; in ConfigValue()
58 type_ = UNSIGNED; in ConfigValue()
64 type_ = BYTES; in ConfigValue()
69 ConfigValue::Type ConfigValue::getType() const { return type_; } in getType()
72 CHECK(type_ == STRING); in getString()
77 CHECK(type_ == UNSIGNED); in getUnsigned()
82 CHECK(type_ == BYTES); in getBytes()
89 type_ = STRING; in parseFromString()
96 type_ = BYTES; in parseFromString()
[all …]
/aosp12/hardware/google/graphics/common/libhwc2.1/libdrmresource/drm/
H A Ddrmconnector.cpp46 type_(c->connector_type), in DrmConnector()
181 return type_ == DRM_MODE_CONNECTOR_LVDS || type_ == DRM_MODE_CONNECTOR_eDP || in internal()
182 type_ == DRM_MODE_CONNECTOR_DSI || in internal()
183 type_ == DRM_MODE_CONNECTOR_VIRTUAL || type_ == DRM_MODE_CONNECTOR_DPI; in internal()
187 return type_ == DRM_MODE_CONNECTOR_HDMIA || in external()
188 type_ == DRM_MODE_CONNECTOR_DisplayPort || in external()
189 type_ == DRM_MODE_CONNECTOR_DVID || type_ == DRM_MODE_CONNECTOR_DVII || in external()
190 type_ == DRM_MODE_CONNECTOR_VGA; in external()
195 return type_ == DRM_MODE_CONNECTOR_WRITEBACK; in writeback()
211 if (type_ < TYPES_COUNT) { in name()
[all …]
H A Ddrmproperty.cpp38 : id_(0), type_(DRM_PROPERTY_TYPE_INVALID), flags_(0), name_("") { in DrmProperty()
59 type_ = DRM_PROPERTY_TYPE_INT; in Init()
61 type_ = DRM_PROPERTY_TYPE_ENUM; in Init()
63 type_ = DRM_PROPERTY_TYPE_OBJECT; in Init()
65 type_ = DRM_PROPERTY_TYPE_BLOB; in Init()
67 type_ = DRM_PROPERTY_TYPE_BITMASK; in Init()
79 if (type_ == DRM_PROPERTY_TYPE_BLOB) in value()
85 switch (type_) { in value()
109 ALOGD("name: %s, type(%d), value_(%" PRId64 ")", name_.c_str(), type_, value_); in printProperty()
H A Ddrmmode.cpp41 type_(m->type), in DrmMode()
51 v_scan_ == m.vscan && flags_ == m.flags && type_ == m.type; in operator ==()
68 m->type = type_; in ToDrmModeModeInfo()
134 return type_; in type()
/aosp12/hardware/nxp/secure_element/pn8x/libese-spi/p73/utils/
H A Dconfig.cpp46 type_ = UNSIGNED; in ConfigValue()
49 ConfigValue::Type ConfigValue::getType() const { return type_; } in getType()
52 CHECK(type_ == STRING); in getString()
57 CHECK(type_ == UNSIGNED); in getUnsigned()
62 CHECK(type_ == BYTES); in getBytes()
69 type_ = STRING; in parseFromString()
76 type_ = BYTES; in parseFromString()
82 type_ = UNSIGNED; in parseFromString()
/aosp12/hardware/nxp/secure_element/snxxx/libese-spi/p73/utils/
H A Dconfig.cpp65 type_ = UNSIGNED; in ConfigValue()
68 ConfigValue::Type ConfigValue::getType() const { return type_; } in getType()
71 CHECK(type_ == STRING); in getString()
76 CHECK(type_ == UNSIGNED); in getUnsigned()
81 CHECK(type_ == BYTES); in getBytes()
88 type_ = STRING; in parseFromString()
95 type_ = BYTES; in parseFromString()
101 type_ = UNSIGNED; in parseFromString()
/aosp12/system/bt/vendor_libs/test_vendor_lib/test/
H A Dh4_parser_unittest.cc43 type_ = PacketType::COMMAND; in __anon1822f0660102()
47 type_ = PacketType::EVENT; in __anon1822f0660202()
51 type_ = PacketType::ACL; in __anon1822f0660302()
55 type_ = PacketType::SCO; in __anon1822f0660402()
59 type_ = PacketType::ISO; in __anon1822f0660502()
64 PacketType type_; member in test_vendor_lib::H4ParserTest
140 ASSERT_EQ(packetType, type_); in TEST_F()
/aosp12/hardware/st/secure_element/ese-spi-driver/utils-lib/
H A Dconfig.cc44 ConfigValue::Type ConfigValue::getType() const { return type_; } in getType()
47 CHECK(type_ == STRING); in getString()
52 CHECK(type_ == UNSIGNED); in getUnsigned()
57 CHECK(type_ == BYTES); in getBytes()
64 type_ = STRING; in parseFromString()
71 type_ = BYTES; in parseFromString()
77 type_ = UNSIGNED; in parseFromString()
/aosp12/system/bt/vendor_libs/test_vendor_lib/model/controller/
H A Dle_advertiser.cc32 type_ = type; in Initialize()
46 type_ = type; in InitializeExtended()
49 peer_address.ToString().c_str(), type_, in InitializeExtended()
57 type_ = model::packets::AdvertisementType::ADV_IND; in Clear()
79 address_.ToString().c_str(), peer_address_.ToString().c_str(), type_, in Enable()
91 address_.ToString().c_str(), peer_address_.ToString().c_str(), type_, in EnableExtended()
118 type_, advertisement_); in GetAdvertisement()
H A Dacl_connection.cc24 : address_(addr), own_address_(own_addr), type_(phy_type) {} in AclConnection()
40 Phy::Type AclConnection::GetPhyType() const { return type_; } in GetPhyType()
/aosp12/system/bt/include/hardware/avrcp/
H A Davrcp_common.h297 enum : uint8_t { PLAYER = 0x01, FOLDER = 0x02, SONG = 0x03 } type_; member
305 MediaListItem(MediaPlayerItem item) : type_(PLAYER), player_(item) {} in MediaListItem()
307 MediaListItem(FolderItem item) : type_(FOLDER), folder_(item) {} in MediaListItem()
309 MediaListItem(MediaElementItem item) : type_(SONG), song_(item) {} in MediaListItem()
312 type_ = item.type_; in MediaListItem()
313 switch (item.type_) { in MediaListItem()
327 switch (type_) { in ~MediaListItem()
341 switch (type_) { in size()
/aosp12/hardware/libhardware/modules/camera/3_4/
H A Dstream_format.cpp40 : type_(V4L2_BUF_TYPE_VIDEO_CAPTURE), in StreamFormat()
47 : type_(format.type), in StreamFormat()
55 : type_(V4L2_BUF_TYPE_VIDEO_CAPTURE), in StreamFormat()
63 format->type = type_; in FillFormatRequest()
87 return (type_ == other.type_ && in operator ==()
H A Dstream_format.h46 inline uint32_t type() const { return type_; }; in type()
74 uint32_t type_;
/aosp12/system/tools/aidl/
H A Daidl_const_expressions.cpp589 switch (type_) { in CheckValid()
623 switch (type_) { in evaluate()
652 final_type_ = type_; in evaluate()
662 final_type_ = type_; in evaluate()
668 final_type_ = type_; in evaluate()
673 final_type_ = type_; in evaluate()
1000 type_(parsed_type), in AidlConstantValue()
1005 AIDL_FATAL_IF(type_ != Type::INT8 && type_ != Type::INT32 && type_ != Type::INT64, location); in AidlConstantValue()
1013 type_(type), in AidlConstantValue()
1017 switch (type_) { in AidlConstantValue()
[all …]
/aosp12/art/tools/veridex/
H A Dflow_analysis.h51 type_(nullptr) {} in RegisterValue()
53 : source_(source), value_(0), reference_(reference), type_(type) {} in RegisterValue()
59 : source_(source), value_(value), reference_(reference), type_(type) {} in RegisterValue()
63 const VeriClass* GetType() const { return type_; } in GetType()
81 if (type_ == VeriClass::class_) { in ToString()
103 const VeriClass* type_; variable
/aosp12/art/openjdkjvmti/
H A Dti_method.cc806 type_(type), in GetLocalVariableClosure()
843 switch (type_) { in GetTypeErrorInner()
851 } else if (type_ == art::Primitive::kPrimFloat || in GetTypeErrorInner()
888 switch (type_) { in Execute()
933 art::Primitive::Type type_; member in openjdkjvmti::GetLocalVariableClosure
986 if (type_ == art::Primitive::kPrimNot) { in GetTypeError()
1006 switch (SquashType(SlotType{ type_ })) { in GetTypeErrorInner()
1019 slot_type == SlotType { type_ }) { in GetTypeErrorInner()
1032 slot_type == SlotType { type_ }) { in GetTypeErrorInner()
1068 switch (type_) { in Execute()
[all …]
/aosp12/bootable/recovery/applypatch/
H A Dimgdiff.cpp260 : type_(type), in ImageChunk()
275 if (type_ == CHUNK_DEFLATE) { in DataForPatch()
294 if (type_ != other.type_) { in operator ==()
315 type_ = CHUNK_NORMAL; in ChangeDeflateChunkToNormal()
321 if (type_ != CHUNK_NORMAL || other.type_ != CHUNK_NORMAL) { in IsAdjacentNormal()
445 : type_(tgt.GetType()), in PatchChunk()
457 : type_(CHUNK_RAW), in PatchChunk()
485 switch (type_) { in GetHeaderSize()
500 Write4(fd, type_); in WriteHeaderToFd()
501 switch (type_) { in WriteHeaderToFd()
[all …]
/aosp12/packages/modules/NeuralNetworks/common/operations/
H A DLSHProjectionTest.cpp47 : type_(type) { in LSHProjectionOpModel()
123 ASSERT_EQ(execution.setInput(LSHProjection::kTypeParam, &type_, sizeof(type_)), in Invoke()
131 LSHProjectionType type_; member in android::nn::wrapper::LSHProjectionOpModel
/aosp12/art/runtime/
H A Dhidden_api.cc178 type_ = kField; in MemberSignature()
187 type_ = kMethod; in MemberSignature()
196 type_ = kField; in MemberSignature()
205 type_ = kMethod; in MemberSignature()
209 if (type_ == kField) { in GetSignatureParts()
212 DCHECK_EQ(type_, kMethod); in GetSignatureParts()
254 LOG(WARNING) << "Accessing hidden " << (type_ == kField ? "field " : "method ") in WarnAboutAccess()
269 return type_ == other.type_ && in Equals()
H A Dreflective_value_visitor.h107 explicit ReflectionSourceInfo(ReflectionSourceType type) : type_(type) {} in ReflectionSourceInfo()
109 os << "Type=" << type_; in Describe()
113 return type_; in GetType()
117 const ReflectionSourceType type_;
/aosp12/art/runtime/gc/space/
H A Dregion_space.h404 type_(RegionType::kRegionTypeToSpace) {} in Region()
412 type_ = RegionType::kRegionTypeNone; in Init()
428 return type_; in Type()
507 return type_ == RegionType::kRegionTypeFromSpace; in IsInFromSpace()
511 return type_ == RegionType::kRegionTypeToSpace; in IsInToSpace()
515 return type_ == RegionType::kRegionTypeUnevacFromSpace; in IsInUnevacFromSpace()
519 return type_ == RegionType::kRegionTypeNone; in IsInNoSpace()
527 type_ = RegionType::kRegionTypeFromSpace; in SetAsFromSpace()
553 type_ = RegionType::kRegionTypeToSpace; in SetUnevacFromSpaceAsToSpace()
634 RegionType type_; // The region type (see RegionType). variable
/aosp12/art/compiler/optimizing/
H A Dinduction_var_analysis.cc239 type_(DataType::Type::kVoid), in HInductionVarAnalysis()
324 type_ = scc_[0]->GetType(); in VisitNode()
432 type_)); in ClassifyNonTrivial()
535 type_); in RotatePeriodicInduction()
542 type_); in RotatePeriodicInduction()
778 type_); in SolveAddSub()
814 CreateConstant(0, type_), in SolveOp()
816 type_); in SolveOp()
826 type_); in SolveOp()
834 type_); in SolveOp()
[all …]
/aosp12/frameworks/av/media/codec2/tests/
H A DC2ComponentInterface_test.cpp627 #define EACH_TEST_SELF(type_, test_name) EACH_TEST(type_, type_, test_name) argument
628 #define EACH_TEST_INPUT(type_, test_name) EACH_TEST(type_::input, type_, test_name) argument
629 #define EACH_TEST_OUTPUT(type_, test_name) EACH_TEST(type_::output, type_, test_name) argument
/aosp12/art/dex2oat/linker/arm/
H A Drelative_patcher_arm_base.h54 : type_(type), custom_value1_(custom_value1), custom_value2_(custom_value2) { }
57 return type_; in GetType()
69 ThunkType type_;

123456