Home
last modified time | relevance | path

Searched defs:Property (Results 1 – 25 of 630) sorted by relevance

12345678910>>...26

/aosp_15_r20/external/libchrome/dbus/
H A Dproperty.cc305 Property<uint8_t>::Property() in Property() function in dbus::Property
323 Property<bool>::Property() : value_(false) { in Property() function in dbus::Property
341 Property<int16_t>::Property() in Property() function in dbus::Property
359 Property<uint16_t>::Property() in Property() function in dbus::Property
377 Property<int32_t>::Property() in Property() function in dbus::Property
395 Property<uint32_t>::Property() in Property() function in dbus::Property
413 Property<int64_t>::Property() in Property() function in dbus::Property
431 Property<uint64_t>::Property() in Property() function in dbus::Property
449 Property<double>::Property() : value_(0.0) { in Property() function in dbus::Property
791 template class Property<uint8_t>; variable
[all …]
/aosp_15_r20/build/blueprint/bootstrap/bpdoc/
H A Dbpdoc.go53 type Property struct { struct
54 Name string
55 OtherNames []string
56 Type string
57 Tag reflect.StructTag
58 Text template.HTML
59 OtherTexts []template.HTML
60 Properties []Property
61 Default string
62 Anonymous bool
[all …]
H A Dproperties.go56 func (p *Property) Equal(other Property) bool {
68 func setDefaults(properties []Property, defaults reflect.Value) {
128 func (p *Property) SameSubProperties(other Property) bool {
151 func nestUnique(src []Property, target []Property) []Property {
169 func getByName(name string, prefix string, props *[]Property) *Property {
319 func filterPropsByTag(props *[]Property, key, value string, exclude bool) {
H A Dproperties_test.go168 func assertProperties(t *testing.T, expected Property, actual Property) {
180 func actualProperties(t *testing.T, props []Property) []string {
/aosp_15_r20/external/swiftshader/third_party/llvm-16.0/llvm/lib/Frontend/OpenMP/
H A DOMPContext.cpp166 bool WasFound) -> std::optional<bool> /* Result */ { in isVariantApplicableInContextHelper()
195 TraitProperty Property = TraitProperty(Bit); in isVariantApplicableInContextHelper() local
223 for (TraitProperty Property : VMI.ConstructTraits) { in isVariantApplicableInContextHelper() local
276 TraitProperty Property = TraitProperty(Bit); in getVariantMatchScore() local
325 for (TraitProperty Property : VMI.ConstructTraits) { in getVariantMatchScore() local
394 llvm::omp::getOpenMPContextTraitSetForProperty(TraitProperty Property) { in getOpenMPContextTraitSetForProperty()
421 llvm::omp::getOpenMPContextTraitSelectorForProperty(TraitProperty Property) { in getOpenMPContextTraitSelectorForProperty()
501 TraitProperty Property, TraitSelector Selector, TraitSet Set) { in isValidTraitPropertyForTraitSetAndSelector()
/aosp_15_r20/external/pdfium/core/fxcrt/css/
H A Dcfx_cssdata.h18 struct Property { struct
19 CFX_CSSProperty eName; argument
39 static const Property* GetPropertyByName(WideStringView name); argument
/aosp_15_r20/build/blueprint/parser/
H A Dast.go114 type Property struct { struct
115 Name string
116 NamePos scanner.Position
117 ColonPos scanner.Position
118 Value Expression
121 func (p *Property) Copy() *Property {
127 func (p *Property) String() string {
131 func (p *Property) Pos() scanner.Position { return p.NamePos }
132 func (p *Property) End() scanner.Position { return p.Value.End() }
134 func (p *Property) MarkReferencedVariables(scope *Scope) {
[all …]
/aosp_15_r20/prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/
Dipmsp.h311 #define ITStreamQualityControl_GetRange(This,Property,plMin,plMax,plSteppingDelta,plDefault,plFlags… argument
312 #define ITStreamQualityControl_Get(This,Property,plValue,plFlags) (This)->lpVtbl->Get(This,Property… argument
313 #define ITStreamQualityControl_Set(This,Property,lValue,lFlags) (This)->lpVtbl->Set(This,Property,l… argument
361 #define ITCallQualityControl_GetRange(This,Property,plMin,plMax,plSteppingDelta,plDefault,plFlags) … argument
362 #define ITCallQualityControl_Get(This,Property,plValue,plFlags) (This)->lpVtbl->Get(This,Property,p… argument
363 #define ITCallQualityControl_Set(This,Property,lValue,lFlags) (This)->lpVtbl->Set(This,Property,lVa… argument
410 #define ITAudioDeviceControl_GetRange(This,Property,plMin,plMax,plSteppingDelta,plDefault,plFlags) … argument
411 #define ITAudioDeviceControl_Get(This,Property,plValue,plFlags) (This)->lpVtbl->Get(This,Property,p… argument
412 #define ITAudioDeviceControl_Set(This,Property,lValue,lFlags) (This)->lpVtbl->Set(This,Property,lVa… argument
460 #define ITAudioSettings_GetRange(This,Property,plMin,plMax,plSteppingDelta,plDefault,plFlags) (This… argument
[all …]
Dksmedia.h13 KSPROPERTY Property; member
1813 KSPROPERTY Property; member
1819 KSPROPERTY Property; member
1827 KSPROPERTY Property; member
1844 KSPROPERTY Property; member
1850 KSPROPERTY Property; member
2759 KSPROPERTY Property; member
2958 KSPROPERTY Property; member
2963 KSPROPERTY Property; member
2968 KSPROPERTY Property; member
[all …]
/aosp_15_r20/external/clang/test/Analysis/
H A Dmalloc.cpp79 struct Property { struct
81 Property(char* n) in Property() function
/aosp_15_r20/external/pytorch/torch/csrc/jit/api/
H A Dobject.h46 struct Property { struct
47 std::string name;
48 Method getter_func;
49 std::optional<Method> setter_func;
/aosp_15_r20/frameworks/native/include/input/
H A DKeyCharacterMap.h201 struct Property { struct
224 status_t parseKeyProperty(); argument
/aosp_15_r20/external/pytorch/aten/src/ATen/core/
H A Dclass_type.h69 struct Property { struct
70 std::string name;
71 torch::jit::Function* getter;
72 torch::jit::Function* setter;
/aosp_15_r20/build/blueprint/proptools/
H A Dunpack.go73 func UnpackProperties(properties []*parser.Property, objects ...interface{}) (map[string]*parser.Pr…
508 func selectOnNonConfigurablePropertyError(property *parser.Property) error {
608 func propertyToValue(typ reflect.Type, property *parser.Property) (reflect.Value, error) {
/aosp_15_r20/build/soong/bpfix/bpfix/
H A Dbpfix.go529 func getStringProperty(prop *parser.Property, fieldName string) string {
1172 func mergeMatchingProperties(properties *[]*parser.Property, buf []byte, patchlist *parser.PatchLis…
1195 func mergeProperties(a, b *parser.Property, buf []byte, patchlist *parser.PatchList) error {
1218 func mergeListProperties(a, b *parser.Property, buf []byte, patchlist *parser.PatchList) error {
1378 func propertyIndex(props []*parser.Property, propertyName string) int {
/aosp_15_r20/external/cronet/base/test/
H A Dgtest_xml_util.cc41 struct Property { struct
43 std::string name;
45 std::string value;
/aosp_15_r20/external/clang/lib/Sema/
H A DSemaObjCProperty.cpp357 auto isImplicitlyReadonlyAtomic = [](ObjCPropertyDecl *Property) -> bool { in checkAtomicPropertyMismatch()
815 ObjCPropertyDecl *Property) { in DiagnosePropertyMismatchDeclInProtocols()
1416 Sema::DiagnosePropertyMismatch(ObjCPropertyDecl *Property, in DiagnosePropertyMismatch()
1629 for (const auto *Property : IFace->instance_properties()) { in IvarBacksCurrentMethodAccessor() local
1638 for (const auto *Property : Ext->instance_properties()) in IvarBacksCurrentMethodAccessor() local
1956 const ObjCPropertyDecl *Property = I->second; in AtomicPropertySetterGetterRules() local
2130 ObjCPropertyDecl *Property) { in AddPropertyAttrs()
/aosp_15_r20/external/pytorch/torch/csrc/jit/frontend/
H A Dtree_views.h435 struct Property : public TreeView { struct
436 explicit Property(const TreeRef& tree) : TreeView(tree) { in Property() argument
448 static Property create( in create() argument
/aosp_15_r20/external/googleapis/google/devtools/remoteworkers/v1test2/
H A Dworker.proto65 message Property { message
136 message Property { message
/aosp_15_r20/frameworks/base/core/java/android/util/
H A DProperty.java29 public abstract class Property<T, V> { class
62 public Property(Class<V> type, String name) { in Property() method in Property
/aosp_15_r20/cts/tests/tests/calendarcommon/src/com/android/calendarcommon2/
H A DICalendar.java81 public static class Property { class in ICalendar
88 public Property(String name) { in Property() method in ICalendar.Property
/aosp_15_r20/cts/hostsidetests/network-policy/app/src/com/android/cts/netpolicy/hostside/
H A DProperty.java26 public enum Property { enum
65 Property(int value) { mValue = value; } in Property() method in Property
/aosp_15_r20/external/snakeyaml/src/main/java/org/yaml/snakeyaml/introspector/
H A DProperty.java31 public abstract class Property implements Comparable<Property> { class
36 public Property(String name, Class<?> type) { in Property() method in Property
/aosp_15_r20/packages/modules/Bluetooth/android/app/src/com/android/bluetooth/mapclient/obex/
DBmsgTokenizer.java82 public static class Property { class in BmsgTokenizer
86 public Property(String name, String value) { in Property() method in BmsgTokenizer.Property
/aosp_15_r20/system/librustutils/
H A Dsystem_properties_fuzzer.rs38 enum Property { enum
45 impl fmt::Display for Property { implementation

12345678910>>...26