/system/nvram/messages/include/nvram/messages/ |
D | struct.h | 128 constexpr FieldSpec(uint32_t field_number, MemberType Struct::* member) in FieldSpec() 129 : kFieldNumber(field_number), kMember(member) {} in FieldSpec() 150 Member Struct::*member) { in MakeField() argument 151 return FieldSpec<Struct, Member>(field_number, member); in MakeField() 170 TaggedUnionType Struct::*member, in OneOfFieldSpec() 172 : FieldSpec<Struct, TaggedUnionType>(field_number, member), kTag(tag) {} in OneOfFieldSpec() 184 TaggedUnion<TagType, Member...> Struct::*member, in MakeOneOfField() argument 186 return OneOfFieldSpec<Struct, TagType, Member...>(field_number, member, tag); in MakeOneOfField()
|
D | tagged_union.h | 258 void CopyMember(const typename CurrentMember::Type* member) { 259 if (member) { 263 *GetUnchecked<static_cast<TagType>(CurrentMember::kTag)>() = *member; 276 void MoveMember(const typename CurrentMember::Type* member) { 277 if (member) { 282 static_cast<typename CurrentMember::Type&&>(*member);
|
D | proto.hpp | 318 const TaggedUnionMemberType* member = object.template get<kTag>(); in Encode() local 319 if (member) { in Encode() 320 return EncodeField<TaggedUnionMemberCodec>(*member, writer); in Encode()
|
/system/chre/chpp/include/chpp/ |
D | macros.h | 130 #define container_of(ptr, type, member) \ argument 131 ((type *)(void *)((char *)(ptr)-offsetof(type, member)) + \ 132 check_types_match(*(ptr), ((type *)0)->member)) 134 #define sizeof_member(type, member) (sizeof(((type *)0)->member)) argument
|
/system/update_engine/common/ |
D | fake_prefs.cc | 50 FakePrefs::PrefConsts<string>::member = &FakePrefs::PrefValue::as_str; member in chromeos_update_engine::FakePrefs::PrefConsts<string> 56 int64_t FakePrefs::PrefValue::*const FakePrefs::PrefConsts<int64_t>::member = member in chromeos_update_engine::FakePrefs::PrefConsts<int64_t> 63 bool FakePrefs::PrefValue::*const FakePrefs::PrefConsts<bool>::member = member in chromeos_update_engine::FakePrefs::PrefConsts<bool> 157 values_[str_key].value.*(PrefConsts<T>::member) = std::move(value); in SetValue() 173 *value = it->second.value.*(PrefConsts<T>::member); in GetValue()
|
D | fake_prefs.h | 91 static T FakePrefs::PrefValue::*const member; variable
|
/system/core/libcutils/include_outside_system/cutils/ |
D | list.h | 31 #define node_to_item(node, container, member) \ argument 32 (container *) (((char*) (node)) - offsetof(container, member))
|
/system/core/libcutils/include/cutils/ |
D | list.h | 31 #define node_to_item(node, container, member) \ argument 32 (container *) (((char*) (node)) - offsetof(container, member))
|
/system/extras/f2fs_utils/ |
D | f2fs_sparseblock.c | 19 #define D_DISP_u32(ptr, member) \ argument 23 #member, le32_to_cpu((ptr)->member), le32_to_cpu((ptr)->member)); \ 26 #define D_DISP_u64(ptr, member) \ argument 30 #member, le64_to_cpu((ptr)->member), le64_to_cpu((ptr)->member)); \
|
/system/update_engine/ |
D | .clangd | 6 - cppcoreguidelines-pro-type-member-init
|
D | pylintrc | 148 # List of module names for which member attributes should not be checked 150 # and thus existing member attributes cannot be deduced by static analysis. It 154 # List of classes names for which member attributes should not be checked 412 # List of member names, which should be excluded from the protected access
|
/system/tools/aidl/ |
D | aidl.cpp | 759 for (const std::unique_ptr<AidlMethod>& member : type->AsInterface()->GetMethods()) { in markNewAdditions() local 760 if (!member->IsUserDefined()) continue; in markNewAdditions() 763 if (previous_member->GetName() == member->GetName()) { in markNewAdditions() 767 if (!found) member->MarkNew(); in markNewAdditions() 770 for (const std::unique_ptr<AidlVariableDeclaration>& member : type->GetFields()) { in markNewAdditions() local 771 if (!member->IsUserDefined()) continue; in markNewAdditions() 775 if (previous_member->GetName() == member->GetName()) { in markNewAdditions() 779 if (!found) member->MarkNew(); in markNewAdditions()
|
D | diagnostics.cpp | 421 for (const auto& member : consts) { in CheckConstantDeclarations() local 422 const std::vector<std::string> child = TokenizeName(member->GetName()); in CheckConstantDeclarations() 426 diag.Report(member->GetLocation(), DiagnosticID::redundant_name) in CheckConstantDeclarations() 427 << "The constant '" << member->GetName() << "' has a redundant substring '" in CheckConstantDeclarations()
|
/system/sepolicy/private/ |
D | isolated_compute_app.te | 42 # Remove the negation for member domains when refactorization is done.
|
D | isolated_app_all.te | 95 # Remove the negation for member domains when refactorization is done.
|
/system/tools/mkbootimg/ |
D | pylintrc | 61 c-extension-no-member, 102 no-member, 248 # List of module names for which member attributes should not be checked 250 # and thus existing member attributes cannot be deduced by static analysis. It 254 # List of class names for which member attributes should not be checked (useful 418 # List of member names, which should be excluded from the protected access
|
/system/apex/ |
D | pylintrc | 67 c-extension-no-member, 108 no-member, 254 # List of module names for which member attributes should not be checked 256 # and thus existing member attributes cannot be deduced by static analysis. It 260 # List of class names for which member attributes should not be checked (useful 425 # List of member names, which should be excluded from the protected access
|
/system/netd/ |
D | Android.bp | 84 "-misc-non-private-member-variables-in-classes", // Also complains about structs
|
/system/media/camera/docs/ |
D | metadata_helpers.py | 265 def get_children_by_throwing_away_kind(node, member='entries'): argument 290 return (i for i in getattr(combined_kind, member)) 292 def get_children_by_filtering_kind(section, kind_name, member='entries'): argument 307 return getattr(matched_kind, member)
|
/system/security/ondevice-signing/ |
D | Android.bp | 30 "google-runtime-member-string-references",
|
/system/extras/simpleperf/scripts/test/ |
D | do_test.py | 89 for member_name, member in inspect.getmembers(value): 90 if isinstance(member, (types.MethodType, types.FunctionType)):
|
/system/logging/logcat/ |
D | event.logtags | 72 20004 art_hidden_api_access (access_method|1),(flags|1),(class|3),(member|3),(type_signature|3)
|
/system/chre/pal/doc/ |
D | Doxyfile | 96 # If the BRIEF_MEMBER_DESC tag is set to YES, doxygen will include brief member 104 # description of a member or function before the detailed description 202 # If the INHERIT_DOCS tag is set to YES then an undocumented member inherits the 203 # documentation from any documented member that it re-implements. 209 # page for each member. If set to NO, the documentation of a member will be part 338 # If member grouping is used in the documentation and the DISTRIBUTE_GROUP_DOC 340 # member in the group (if any) for the other members of the group. By default 353 # Set the SUBGROUPING tag to YES to allow class member groups of the same type 386 # with name TypeT. When disabled the typedef will appear as a member of a file, 531 # grouped member an include statement to the documentation, telling the reader [all …]
|
/system/chre/chre_api/doc/ |
D | Doxyfile | 96 # If the BRIEF_MEMBER_DESC tag is set to YES, doxygen will include brief member 104 # description of a member or function before the detailed description 202 # If the INHERIT_DOCS tag is set to YES then an undocumented member inherits the 203 # documentation from any documented member that it re-implements. 209 # page for each member. If set to NO, the documentation of a member will be part 338 # If member grouping is used in the documentation and the DISTRIBUTE_GROUP_DOC 340 # member in the group (if any) for the other members of the group. By default 353 # Set the SUBGROUPING tag to YES to allow class member groups of the same type 386 # with name TypeT. When disabled the typedef will appear as a member of a file, 531 # grouped member an include statement to the documentation, telling the reader [all …]
|
/system/media/audio_utils/ |
D | Doxyfile | 104 # If the BRIEF_MEMBER_DESC tag is set to YES, doxygen will include brief member 112 # description of a member or function before the detailed description 220 # If the INHERIT_DOCS tag is set to YES then an undocumented member inherits the 221 # documentation from any documented member that it re-implements. 227 # page for each member. If set to NO, the documentation of a member will be part 379 # If member grouping is used in the documentation and the DISTRIBUTE_GROUP_DOC 381 # member in the group (if any) for the other members of the group. By default 394 # Set the SUBGROUPING tag to YES to allow class member groups of the same type 427 # with name TypeT. When disabled the typedef will appear as a member of a file, 578 # grouped member an include statement to the documentation, telling the reader [all …]
|