Home
last modified time | relevance | path

Searched refs:property (Results 1 – 25 of 400) sorted by relevance

12345678910>>...16

/openbsd/src/gnu/llvm/lldb/source/Interpreter/
DOptionValueProperties.cpp31 Property property(definition); in Initialize() local
32 assert(property.IsValid()); in Initialize()
33 m_name_to_index.Append(ConstString(property.GetName()), m_properties.size()); in Initialize()
34 property.GetValue()->SetParent(shared_from_this()); in Initialize()
35 m_properties.push_back(property); in Initialize()
42 Property *property = ProtectedGetPropertyAtIndex(property_idx); in SetValueChangedCallback() local
43 if (property) in SetValueChangedCallback()
44 property->SetValueChangedCallback(std::move(callback)); in SetValueChangedCallback()
51 Property property(name.GetStringRef(), desc.GetStringRef(), is_global, in AppendProperty() local
54 m_properties.push_back(property); in AppendProperty()
[all …]
/openbsd/src/sys/dev/pci/drm/
Ddrm_property.c101 struct drm_property *property = NULL; in drm_property_create() local
110 property = kzalloc(sizeof(struct drm_property), GFP_KERNEL); in drm_property_create()
111 if (!property) in drm_property_create()
114 property->dev = dev; in drm_property_create()
117 property->values = kcalloc(num_values, sizeof(uint64_t), in drm_property_create()
119 if (!property->values) in drm_property_create()
123 ret = drm_mode_object_add(dev, &property->base, DRM_MODE_OBJECT_PROPERTY); in drm_property_create()
127 property->flags = flags; in drm_property_create()
128 property->num_values = num_values; in drm_property_create()
129 INIT_LIST_HEAD(&property->enum_list); in drm_property_create()
[all …]
Ddrm_atomic_uapi.c367 struct drm_crtc_state *state, struct drm_property *property, in drm_atomic_crtc_set_property() argument
375 if (property == config->prop_active) in drm_atomic_crtc_set_property()
377 else if (property == config->prop_mode_id) { in drm_atomic_crtc_set_property()
383 } else if (property == config->prop_vrr_enabled) { in drm_atomic_crtc_set_property()
385 } else if (property == config->degamma_lut_property) { in drm_atomic_crtc_set_property()
393 } else if (property == config->ctm_property) { in drm_atomic_crtc_set_property()
401 } else if (property == config->gamma_lut_property) { in drm_atomic_crtc_set_property()
409 } else if (property == config->prop_out_fence_ptr) { in drm_atomic_crtc_set_property()
419 } else if (property == crtc->scaling_filter_property) { in drm_atomic_crtc_set_property()
422 return crtc->funcs->atomic_set_property(crtc, state, property, val); in drm_atomic_crtc_set_property()
[all …]
Ddrm_mode_object.c237 struct drm_property *property, in drm_object_attach_property() argument
241 struct drm_device *dev = property->dev; in drm_object_attach_property()
261 obj->properties->properties[count] = property; in drm_object_attach_property()
287 struct drm_property *property, uint64_t val) in drm_object_property_set_value() argument
291 WARN_ON(drm_drv_uses_atomic_modeset(property->dev) && in drm_object_property_set_value()
292 !(property->flags & DRM_MODE_PROP_IMMUTABLE)); in drm_object_property_set_value()
295 if (obj->properties->properties[i] == property) { in drm_object_property_set_value()
306 struct drm_property *property, in __drm_object_property_get_prop_value() argument
312 if (obj->properties->properties[i] == property) { in __drm_object_property_get_prop_value()
322 struct drm_property *property, in __drm_object_property_get_value() argument
[all …]
/openbsd/src/gnu/llvm/lldb/bindings/interface/
DSBFrame.i342 pc = property(GetPC, SetPC)
343 …addr = property(GetPCAddress, None, doc='''A read only property that returns the program counter (…
344 …fp = property(GetFP, None, doc='''A read only property that returns the frame pointer (FP) as an u…
345 …sp = property(GetSP, None, doc='''A read only property that returns the stack pointer (SP) as an u…
346 …module = property(GetModule, None, doc='''A read only property that returns an lldb object that re…
347 …compile_unit = property(GetCompileUnit, None, doc='''A read only property that returns an lldb obj…
348 …function = property(GetFunction, None, doc='''A read only property that returns an lldb object tha…
349 …symbol = property(GetSymbol, None, doc='''A read only property that returns an lldb object that re…
350 …block = property(GetBlock, None, doc='''A read only property that returns an lldb object that repr…
351 …is_inlined = property(IsInlined, None, doc='''A read only property that returns an boolean that in…
[all …]
DSBValue.i486 …children = property(get_value_child_list, None, doc='''A read only property that returns a list() …
487 …child = property(get_child_access_object, None, doc='''A read only property that returns an object…
488 …name = property(GetName, None, doc='''A read only property that returns the name of this value as …
489 …type = property(GetType, None, doc='''A read only property that returns a lldb.SBType object that …
490 …size = property(GetByteSize, None, doc='''A read only property that returns the size in bytes of t…
491 …is_in_scope = property(IsInScope, None, doc='''A read only property that returns a boolean value t…
492 …format = property(GetName, SetFormat, doc='''A read/write property that gets/sets the format used …
493 …value = property(GetValue, SetValueFromCString, doc='''A read/write property that gets/sets value …
494 …value_type = property(GetValueType, None, doc='''A read only property that returns an lldb enumera…
495 …changed = property(GetValueDidChange, None, doc='''A read only property that returns a boolean val…
[all …]
DSBType.i50 …name = property(GetName, None, doc='''A read only property that returns the name for this member a…
51 …type = property(GetType, None, doc='''A read only property that returns an lldb object that repres…
52 …byte_offset = property(GetOffsetInBytes, None, doc='''A read only property that returns offset in …
53 …bit_offset = property(GetOffsetInBits, None, doc='''A read only property that returns offset in bi…
54 …is_bitfield = property(IsBitfield, None, doc='''A read only property that returns true if this mem…
55 …bitfield_bit_size = property(GetBitfieldSizeInBits, None, doc='''A read only property that returns…
905 …module = property(GetModule, None, doc='''A read only property that returns the module in which ty…
906 …name = property(GetName, None, doc='''A read only property that returns the name for this type as …
907 …size = property(GetByteSize, None, doc='''A read only property that returns size in bytes for this…
908 …is_pointer = property(IsPointerType, None, doc='''A read only property that returns a boolean valu…
[all …]
DSBSymbol.i84 …name = property(GetName, None, doc='''A read only property that returns the name for this symbol a…
85 …mangled = property(GetMangledName, None, doc='''A read only property that returns the mangled (lin…
86 …type = property(GetType, None, doc='''A read only property that returns an lldb enumeration value …
87 …addr = property(GetStartAddress, None, doc='''A read only property that returns an lldb object tha…
88 …end_addr = property(GetEndAddress, None, doc='''A read only property that returns an lldb object t…
89 …prologue_size = property(GetPrologueByteSize, None, doc='''A read only property that returns the s…
90 …instructions = property(get_instructions_from_current_target, None, doc='''A read only property th…
91 …external = property(IsExternal, None, doc='''A read only property that returns a boolean value tha…
92 …synthetic = property(IsSynthetic, None, doc='''A read only property that returns a boolean value t…
DSBSection.i135 …name = property(GetName, None, doc='''A read only property that returns the name of this section a…
136 …addr = property(get_addr, None, doc='''A read only property that returns an lldb object that repre…
137 …file_addr = property(GetFileAddress, None, doc='''A read only property that returns an integer tha…
138 …size = property(GetByteSize, None, doc='''A read only property that returns the size in bytes of t…
139 …file_offset = property(GetFileOffset, None, doc='''A read only property that returns the file offs…
140 …file_size = property(GetFileByteSize, None, doc='''A read only property that returns the file size…
141 …data = property(GetSectionData, None, doc='''A read only property that returns an lldb object that…
142 …type = property(GetSectionType, None, doc='''A read only property that returns an lldb enumeration…
143 …target_byte_size = property(GetTargetByteSize, None, doc='''A read only property that returns the …
144 …alignment = property(GetAlignment, None, doc='''A read only property that returns the alignment of…
DSBData.i277 …uint8 = property(_make_helper_uint8, None, doc='''A read only property that returns an array-like …
278 …uint16 = property(_make_helper_uint16, None, doc='''A read only property that returns an array-lik…
279 …uint32 = property(_make_helper_uint32, None, doc='''A read only property that returns an array-lik…
280 …uint64 = property(_make_helper_uint64, None, doc='''A read only property that returns an array-lik…
281 …sint8 = property(_make_helper_sint8, None, doc='''A read only property that returns an array-like …
282 …sint16 = property(_make_helper_sint16, None, doc='''A read only property that returns an array-lik…
283 …sint32 = property(_make_helper_sint32, None, doc='''A read only property that returns an array-lik…
284 …sint64 = property(_make_helper_sint64, None, doc='''A read only property that returns an array-lik…
285 …float = property(_make_helper_float, None, doc='''A read only property that returns an array-like …
286 …double = property(_make_helper_double, None, doc='''A read only property that returns an array-lik…
[all …]
DSBTypeCategory.i204 …formats = property(get_formats_array, None, doc='''A read only property that returns a list() of l…
205 …format = property(get_formats_access_object, None, doc=r'''A read only property that returns an ob…
206 …summaries = property(get_summaries_array, None, doc='''A read only property that returns a list() …
207 …summary = property(get_summaries_access_object, None, doc=r'''A read only property that returns an…
208 …filters = property(get_filters_array, None, doc='''A read only property that returns a list() of l…
209 …filter = property(get_filters_access_object, None, doc=r'''A read only property that returns an ob…
210 …synthetics = property(get_synthetics_array, None, doc='''A read only property that returns a list(…
211 …synthetic = property(get_synthetics_access_object, None, doc=r'''A read only property that returns…
212 num_formats = property(GetNumFormats, None)
213 num_summaries = property(GetNumSummaries, None)
[all …]
DSBFunction.i121 …addr = property(GetStartAddress, None, doc='''A read only property that returns an lldb object tha…
122 …end_addr = property(GetEndAddress, None, doc='''A read only property that returns an lldb object t…
123 …block = property(GetBlock, None, doc='''A read only property that returns an lldb object that repr…
124 …instructions = property(get_instructions_from_current_target, None, doc='''A read only property th…
125 …mangled = property(GetMangledName, None, doc='''A read only property that returns the mangled (lin…
126 …name = property(GetName, None, doc='''A read only property that returns the name for this function…
127 …prologue_size = property(GetPrologueByteSize, None, doc='''A read only property that returns the s…
128 …type = property(GetType, None, doc='''A read only property that returns an lldb object that repres…
DSBAddress.i177 …module = property(GetModule, None, doc='''A read only property that returns an lldb object that re…
178 …compile_unit = property(GetCompileUnit, None, doc='''A read only property that returns an lldb obj…
179 …line_entry = property(GetLineEntry, None, doc='''A read only property that returns an lldb object …
180 …function = property(GetFunction, None, doc='''A read only property that returns an lldb object tha…
181 …block = property(GetBlock, None, doc='''A read only property that returns an lldb object that repr…
182 …symbol = property(GetSymbol, None, doc='''A read only property that returns an lldb object that re…
183 …offset = property(GetOffset, None, doc='''A read only property that returns the section offset in …
184 …section = property(GetSection, None, doc='''A read only property that returns an lldb object that …
185 …file_addr = property(GetFileAddress, None, doc='''A read only property that returns file address f…
186 …load_addr = property(__get_load_addr_property__, __set_load_addr_property__, doc='''A read/write p…
DSBThread.i452 …id = property(GetThreadID, None, doc='''A read only property that returns the thread ID as an inte…
453 …idx = property(GetIndexID, None, doc='''A read only property that returns the thread index ID as a…
454 …return_value = property(GetStopReturnValue, None, doc='''A read only property that returns an lldb…
455 …process = property(GetProcess, None, doc='''A read only property that returns an lldb object that …
456 …num_frames = property(GetNumFrames, None, doc='''A read only property that returns the number of s…
457 …frames = property(get_thread_frames, None, doc='''A read only property that returns a list() of ll…
458 …frame = property(get_frames_access_object, None, doc='''A read only property that returns an objec…
459 …name = property(GetName, None, doc='''A read only property that returns the name of this thread as…
460 …queue = property(GetQueueName, None, doc='''A read only property that returns the dispatch queue n…
461 …queue_id = property(GetQueueID, None, doc='''A read only property that returns the dispatch queue …
[all …]
DSBBlock.i149 …parent = property(GetParent, None, doc='''A read only property that returns the same result as Get…
150 …first_child = property(GetFirstChild, None, doc='''A read only property that returns the same resu…
151 …call_site = property(get_call_site, None, doc='''A read only property that returns a lldb.declarat…
152 …sibling = property(GetSibling, None, doc='''A read only property that returns the same result as G…
153 …name = property(GetInlinedName, None, doc='''A read only property that returns the same result as …
154 …inlined_block = property(GetContainingInlinedBlock, None, doc='''A read only property that returns…
155 …range = property(get_ranges_access_object, None, doc='''A read only property that allows item acce…
156 …ranges = property(get_ranges_array, None, doc='''A read only property that returns a list() object…
157 …num_ranges = property(GetNumRanges, None, doc='''A read only property that returns the same result…
DSBSymbolContext.i88 …module = property(GetModule, SetModule, doc='''A read/write property that allows the getting/setti…
89 …compile_unit = property(GetCompileUnit, SetCompileUnit, doc='''A read/write property that allows t…
90 …function = property(GetFunction, SetFunction, doc='''A read/write property that allows the getting…
91 …block = property(GetBlock, SetBlock, doc='''A read/write property that allows the getting/setting …
92 …symbol = property(GetSymbol, SetSymbol, doc='''A read/write property that allows the getting/setti…
93 …line_entry = property(GetLineEntry, SetLineEntry, doc='''A read/write property that allows the get…
DSBError.i112 …value = property(GetError, None, doc='''A read only property that returns the same result as GetEr…
113 …fail = property(Fail, None, doc='''A read only property that returns the same result as Fail().''')
114 …success = property(Success, None, doc='''A read only property that returns the same result as Succ…
115 …description = property(GetCString, None, doc='''A read only property that returns the same result …
116 …type = property(GetType, None, doc='''A read only property that returns the same result as GetType…
DSBInstruction.i98 …mnemonic = property(__mnemonic_property__, None, doc='''A read only property that returns the mnem…
99 …operands = property(__operands_property__, None, doc='''A read only property that returns the oper…
100 …comment = property(__comment_property__, None, doc='''A read only property that returns the commen…
101 …addr = property(GetAddress, None, doc='''A read only property that returns an lldb object that rep…
102 …size = property(GetByteSize, None, doc='''A read only property that returns the size in bytes for …
103 …is_branch = property(DoesBranch, None, doc='''A read only property that returns a boolean value th…
DSBProcess.i509 …threads = property(get_process_thread_list, None, doc='''A read only property that returns a list(…
510 …thread = property(get_threads_access_object, None, doc='''A read only property that returns an obj…
511 …is_alive = property(__get_is_alive__, None, doc='''A read only property that returns a boolean val…
512 …is_running = property(__get_is_running__, None, doc='''A read only property that returns a boolean…
513 …is_stopped = property(__get_is_stopped__, None, doc='''A read only property that returns a boolean…
514 …id = property(GetProcessID, None, doc='''A read only property that returns the process ID as an in…
515 …target = property(GetTarget, None, doc='''A read only property that an lldb object that represents…
516 …num_threads = property(GetNumThreads, None, doc='''A read only property that returns the number of…
517 …selected_thread = property(GetSelectedThread, SetSelectedThread, doc='''A read/write property that…
518 …state = property(GetState, None, doc='''A read only property that returns an lldb enumeration valu…
[all …]
/openbsd/src/gnu/llvm/clang/lib/Sema/
DSemaObjCProperty.cpp65 ObjCPropertyDecl *property) { in checkPropertyDeclWithOwnership() argument
66 if (property->isInvalidDecl()) return; in checkPropertyDeclWithOwnership()
68 ObjCPropertyAttribute::Kind propertyKind = property->getPropertyAttributes(); in checkPropertyDeclWithOwnership()
70 = property->getType().getObjCLifetime(); in checkPropertyDeclWithOwnership()
75 = getImpliedARCOwnership(propertyKind, property->getType()); in checkPropertyDeclWithOwnership()
90 property->setPropertyAttributes(attr); in checkPropertyDeclWithOwnership()
96 property->setInvalidDecl(); in checkPropertyDeclWithOwnership()
97 S.Diag(property->getLocation(), in checkPropertyDeclWithOwnership()
99 << property->getDeclName() in checkPropertyDeclWithOwnership()
722 ObjCPropertyDecl *property, in checkARCPropertyImpl() argument
[all …]
/openbsd/src/gnu/usr.bin/clang/include/lldb/Plugins/
DMakefile32 ${.OBJDIR}/../../../lldb-tblgen/lldb-tblgen -gen-lldb-property-defs \
38 ${.OBJDIR}/../../../lldb-tblgen/lldb-tblgen -gen-lldb-property-enum-defs \
44 ${.OBJDIR}/../../../lldb-tblgen/lldb-tblgen -gen-lldb-property-defs \
50 ${.OBJDIR}/../../../lldb-tblgen/lldb-tblgen -gen-lldb-property-enum-defs \
56 ${.OBJDIR}/../../../lldb-tblgen/lldb-tblgen -gen-lldb-property-defs \
62 ${.OBJDIR}/../../../lldb-tblgen/lldb-tblgen -gen-lldb-property-enum-defs \
68 ${.OBJDIR}/../../../lldb-tblgen/lldb-tblgen -gen-lldb-property-defs \
74 ${.OBJDIR}/../../../lldb-tblgen/lldb-tblgen -gen-lldb-property-enum-defs \
80 ${.OBJDIR}/../../../lldb-tblgen/lldb-tblgen -gen-lldb-property-defs \
86 ${.OBJDIR}/../../../lldb-tblgen/lldb-tblgen -gen-lldb-property-enum-defs \
[all …]
/openbsd/src/gnu/usr.bin/perl/lib/unicore/
DPropertyAliases.txt12 # property tests, and other programmatic textual descriptions of Unicode data.
21 # First Field: The first field is the short name for the property.
27 # Second Field: The second field is the long name for the property,
28 # typically the formal name used in documentation about the property.
32 # Loose matching should be applied to all property names and property values, with
33 # the exception of String Property values. With loose matching of property names and
39 # AL means Arabic Letter for the Bidi_Class property, and
40 # AL means Above_Left for the Combining_Class property, and
41 # AL means Alphabetic for the Line_Break property.
43 # In addition, some property names may be the same as some property value names.
[all …]
Dmktables1000 foreach my $property (
1023 $why_suppressed{$property} = $why_deprecated{$property};
1027 foreach my $property (keys %why_deprecated) {
1028 next if (my $main_property = $property) !~ s/^Other_//;
1029 …$why_deprecated{$property} =~ s/$other_properties/the $main_property property (which should be use…
1034 foreach my $property (keys %why_suppressed) {
1035 delete $why_suppressed{$property} if $property =~
2119 my %property;
2122 main::set_access('property', \%property, qw{ c r });
2439 my $fate = ($property{$addr}
[all …]
/openbsd/src/gnu/llvm/lldb/include/lldb/Core/
DPropertiesBase.td8 // Sets the description for the property that should be displayed to the user.
13 // Marks the property as global.
30 // Gives the property a default string value.
36 // Gives the property a default enum value.
42 // Gives the property a default string value.
48 // Gives the property enum values.
/openbsd/src/gnu/llvm/llvm/tools/opt-viewer/
Doptrecord.py128 @property
132 @property
136 @property
140 @property
144 @property
148 @property
205 @property
209 @property
215 @property
222 @property
[all …]

12345678910>>...16