Home
last modified time | relevance | path

Searched refs:Property (Results 1 – 25 of 254) sorted by relevance

1234567891011

/openbsd/src/gnu/llvm/clang/include/clang/AST/
DTypeProperties.td13 def : Property<"elementType", QualType> {
21 def : Property<"pointeeType", QualType> {
29 def : Property<"originalType", QualType> {
32 def : Property<"adjustedType", QualType> {
50 def : Property<"pointeeType", QualType> {
58 def : Property<"pointeeTypeAsWritten", QualType> {
64 def : Property<"isSpelledAsLValue", Bool> {
81 def : Property<"pointeeType", QualType> {
84 def : Property<"baseType", QualType> {
94 def : Property<"elementType", QualType> {
[all …]
DPropertiesBase.td35 /// Property types that correspond to specific C++ enums.
38 /// Property types that correspond to a specific C++ class.
47 /// Property types that correspond to a specific subclass of another type.
55 /// Property types that support optional values by using their
64 /// Property types that correspond to integer types and support optional
169 class Property<string name, PropertyType type> {
264 def : Property<"value", APSInt> {
270 def : Property<"semantics", UInt32> {
276 def : Property<"value", APInt> {
286 def : Property<"semantics", FixedPointSemantics> {
[all …]
/openbsd/src/gnu/llvm/lldb/utils/TableGen/
DLLDBPropertyDefEmitter.cpp24 static void emitPropertyEnum(Record *Property, raw_ostream &OS) { in emitPropertyEnum() argument
26 OS << Property->getName(); in emitPropertyEnum()
30 static void emitProperty(Record *Property, raw_ostream &OS) { in emitProperty() argument
34 OS << "\"" << Property->getValueAsString("Name") << "\""; in emitProperty()
38 llvm::StringRef type = Property->getValueAsString("Type"); in emitProperty()
44 OS << (Property->getValue("Global") ? "true" : "false"); in emitProperty()
47 bool hasDefaultUnsignedValue = Property->getValue("HasDefaultUnsignedValue"); in emitProperty()
48 bool hasDefaultEnumValue = Property->getValue("HasDefaultEnumValue"); in emitProperty()
49 bool hasDefaultStringValue = Property->getValue("HasDefaultStringValue"); in emitProperty()
50 bool hasElementType = Property->getValue("HasElementType"); in emitProperty()
[all …]
/openbsd/src/gnu/llvm/llvm/include/llvm/Frontend/OpenMP/
DOMPContext.h58 TraitSet getOpenMPContextTraitSetForProperty(TraitProperty Property);
68 TraitSelector getOpenMPContextTraitSelectorForProperty(TraitProperty Property);
112 bool isValidTraitPropertyForTraitSetAndSelector(TraitProperty Property,
124 void addTrait(TraitProperty Property, StringRef RawString,
126 addTrait(getOpenMPContextTraitSetForProperty(Property), Property, RawString,
133 void addTrait(TraitSet Set, TraitProperty Property, StringRef RawString,
136 ScoreMap[Property] = *Score;
140 if (Property == TraitProperty::device_isa___ANY)
143 RequiredTraits.set(unsigned(Property));
145 ConstructTraits.push_back(Property);
[all …]
/openbsd/src/gnu/llvm/lldb/source/Target/
DTargetProperties.td4 def InjectLocalVars : Property<"inject-local-vars", "Boolean">,
10 def DefaultArch: Property<"default-arch", "Arch">,
14 def MoveToNearestCode: Property<"move-to-nearest-code", "Boolean">,
17 def Language: Property<"language", "Language">,
20 def ExprPrefix: Property<"expr-prefix", "FileSpec">,
23 def ExprErrorLimit: Property<"expr-error-limit", "UInt64">,
27 def PreferDynamic: Property<"prefer-dynamic-value", "Enum">,
31 def EnableSynthetic: Property<"enable-synthetic-value", "Boolean">,
34 def SkipPrologue: Property<"skip-prologue", "Boolean">,
37 def SourceMap: Property<"source-map", "PathMap">,
[all …]
/openbsd/src/gnu/llvm/llvm/lib/Frontend/OpenMP/
DOMPContext.cpp89 TraitProperty Property = TraitProperty(Bit); in OMPContext()
90 dbgs() << "\t " << getOpenMPContextTraitPropertyFullName(Property) in OMPContext()
165 auto HandleTrait = [MK](TraitProperty Property, in isVariantApplicableInContextHelper()
184 << getOpenMPContextTraitPropertyName(Property, "") in isVariantApplicableInContextHelper()
188 << getOpenMPContextTraitPropertyName(Property, "") in isVariantApplicableInContextHelper()
195 TraitProperty Property = TraitProperty(Bit); in isVariantApplicableInContextHelper() local
197 getOpenMPContextTraitSetForProperty(Property) != TraitSet::device) in isVariantApplicableInContextHelper()
202 if (getOpenMPContextTraitSelectorForProperty(Property) == in isVariantApplicableInContextHelper()
206 bool IsActiveTrait = Ctx.ActiveTraits.test(unsigned(Property)); in isVariantApplicableInContextHelper()
210 if (Property == TraitProperty::device_isa___ANY) in isVariantApplicableInContextHelper()
[all …]
/openbsd/src/gnu/llvm/lldb/source/Core/
DCoreProperties.td4 def EnableExternalLookup: Property<"enable-external-lookup", "Boolean">,
8 def EnableBackgroundLookup: Property<"enable-background-lookup", "Boolean">,
12 def ClangModulesCachePath: Property<"clang-modules-cache-path", "FileSpec">,
16 def SymLinkPaths: Property<"debug-info-symlink-paths", "FileSpecList">,
20 def EnableLLDBIndexCache: Property<"enable-lldb-index-cache", "Boolean">,
24 def LLDBIndexCachePath: Property<"lldb-index-cache-path", "FileSpec">,
28 def LLDBIndexCacheMaxByteSize: Property<"lldb-index-cache-max-byte-size", "UInt64">,
32 def LLDBIndexCacheMaxPercent: Property<"lldb-index-cache-max-percent", "UInt64">,
36 def LLDBIndexCacheExpirationDays: Property<"lldb-index-cache-expiration-days", "UInt64">,
40 def LoadSymbolOnDemand: Property<"load-on-demand", "Boolean">,
[all …]
/openbsd/src/gnu/llvm/lldb/source/Interpreter/
DOptionValueProperties.cpp31 Property property(definition); in Initialize()
42 Property *property = ProtectedGetPropertyAtIndex(property_idx); in SetValueChangedCallback()
51 Property property(name.GetStringRef(), desc.GetStringRef(), is_global, in AppendProperty()
172 const Property *
181 const Property *OptionValueProperties::GetPropertyAtIndex( in GetPropertyAtIndex()
188 const Property *setting = GetPropertyAtIndex(exe_ctx, will_modify, idx); in GetPropertyValueAtIndex()
214 const Property *property = GetPropertyAtIndex(exe_ctx, false, idx); in GetPropertyAtIndexAsOptionValueArch()
223 const Property *property = GetPropertyAtIndex(exe_ctx, false, idx); in GetPropertyAtIndexAsOptionValueLanguage()
231 const Property *property = GetPropertyAtIndex(exe_ctx, true, idx); in SetPropertyAtIndexAsLanguage()
242 const Property *property = GetPropertyAtIndex(exe_ctx, false, idx); in GetPropertyAtIndexAsArgs()
[all …]
DInterpreterProperties.td4 def ExpandRegexAliases: Property<"expand-regex-aliases", "Boolean">,
8 def PromptOnQuit: Property<"prompt-on-quit", "Boolean">,
12 def SaveSessionOnQuit: Property<"save-session-on-quit", "Boolean">,
16 def OpenTranscriptInEditor: Property<"open-transcript-in-editor", "Boolean">,
20 def SaveSessionDirectory: Property<"save-session-directory", "FileSpec">,
23 def StopCmdSourceOnError: Property<"stop-command-source-on-error", "Boolean">,
27 def SpaceReplPrompts: Property<"space-repl-prompts", "Boolean">,
31 def EchoCommands: Property<"echo-commands", "Boolean">,
35 def EchoCommentCommands: Property<"echo-comment-commands", "Boolean">,
39 def RepeatPreviousCommand: Property<"repeat-previous-command", "Boolean">,
[all …]
DProperty.cpp22 Property::Property(const PropertyDefinition &definition) in Property() function in Property
231 Property::Property(llvm::StringRef name, llvm::StringRef desc, bool is_global, in Property() function in Property
236 bool Property::DumpQualifiedName(Stream &strm) const { in DumpQualifiedName()
246 void Property::Dump(const ExecutionContext *exe_ctx, Stream &strm, in Dump()
274 void Property::DumpDescription(CommandInterpreter &interpreter, Stream &strm, in DumpDescription()
305 void Property::SetValueChangedCallback(std::function<void()> callback) { in SetValueChangedCallback()
/openbsd/src/gnu/llvm/clang/lib/Sema/
DSemaObjCProperty.cpp349 auto isImplicitlyReadonlyAtomic = [](ObjCPropertyDecl *Property) -> bool { in checkAtomicPropertyMismatch() argument
351 auto Attrs = Property->getPropertyAttributes(); in checkAtomicPropertyMismatch()
360 if (Property->getPropertyAttributesAsWritten() & in checkAtomicPropertyMismatch()
840 ObjCPropertyDecl *Property) { in SelectPropertyForSynthesisFromProtocols() argument
841 assert(isa<ObjCProtocolDecl>(Property->getDeclContext()) && in SelectPropertyForSynthesisFromProtocols()
847 PDecl->collectInheritedProtocolProperties(Property, ProtocolSet, in SelectPropertyForSynthesisFromProtocols()
854 PDecl->collectInheritedProtocolProperties(Property, ProtocolSet, in SelectPropertyForSynthesisFromProtocols()
862 return Property; in SelectPropertyForSynthesisFromProtocols()
864 ObjCPropertyDecl *OriginalProperty = Property; in SelectPropertyForSynthesisFromProtocols()
868 if (Property->isReadOnly() && !Prop.value()->isReadOnly()) { in SelectPropertyForSynthesisFromProtocols()
[all …]
DScopeInfo.cpp119 : Base(nullptr, true), Property(getBestPropertyDecl(PropE)) { in WeakObjectProfileTy()
134 : Base(nullptr, true), Property(Prop) { in WeakObjectProfileTy()
142 : Base(nullptr, true), Property(DRE->getDecl()) { in WeakObjectProfileTy()
143 assert(isa<VarDecl>(Property)); in WeakObjectProfileTy()
148 : Base(getBaseInfo(IvarE->getBase())), Property(IvarE->getDecl()) { in WeakObjectProfileTy()
/openbsd/src/gnu/llvm/llvm/include/llvm/CodeGen/GlobalISel/
DInstructionSelect.h42 .set(MachineFunctionProperties::Property::IsSSA) in getRequiredProperties()
43 .set(MachineFunctionProperties::Property::Legalized) in getRequiredProperties()
44 .set(MachineFunctionProperties::Property::RegBankSelected); in getRequiredProperties()
49 MachineFunctionProperties::Property::Selected); in getSetProperties()
DLegalizer.h59 MachineFunctionProperties::Property::IsSSA); in getRequiredProperties()
64 MachineFunctionProperties::Property::Legalized); in getSetProperties()
69 MachineFunctionProperties::Property::NoPHIs); in getClearedProperties()
DRegBankSelect.h628 .set(MachineFunctionProperties::Property::IsSSA) in getRequiredProperties()
629 .set(MachineFunctionProperties::Property::Legalized); in getRequiredProperties()
634 MachineFunctionProperties::Property::RegBankSelected); in getSetProperties()
639 .set(MachineFunctionProperties::Property::NoPHIs); in getClearedProperties()
/openbsd/src/gnu/llvm/lldb/source/Plugins/Process/gdb-remote/
DProcessGDBRemoteProperties.td4 def PacketTimeout: Property<"packet-timeout", "UInt64">,
8 def TargetDefinitionFile: Property<"target-definition-file", "FileSpec">,
12 def UseSVR4: Property<"use-libraries-svr4", "Boolean">,
16 def UseGPacketForReading: Property<"use-g-packet-for-reading", "Boolean">,
/openbsd/src/gnu/llvm/lldb/include/lldb/Interpreter/
DOptionValueProperties.h62 std::vector<const Property *> &matching_properties) const;
81 virtual const Property *GetProperty(const ExecutionContext *exe_ctx,
85 virtual const Property *GetPropertyAtIndex(const ExecutionContext *exe_ctx,
91 virtual const Property *GetPropertyAtPath(const ExecutionContext *exe_ctx,
210 Property *ProtectedGetPropertyAtIndex(uint32_t idx) { in ProtectedGetPropertyAtIndex()
214 const Property *ProtectedGetPropertyAtIndex(uint32_t idx) const { in ProtectedGetPropertyAtIndex()
221 std::vector<Property> m_properties;
DProperty.h35 class Property {
37 Property(const PropertyDefinition &definition);
39 Property(llvm::StringRef name, llvm::StringRef desc, bool is_global,
/openbsd/src/gnu/llvm/llvm/utils/TableGen/
DSDNodeProperties.cpp18 for (Record *Property : R->getValueAsListOfDefs("Properties")) { in parseSDPatternOperatorProperties()
19 auto Offset = StringSwitch<unsigned>(Property->getName()) in parseSDPatternOperatorProperties()
36 Property->getName() + "' on node '" + in parseSDPatternOperatorProperties()
/openbsd/src/share/misc/
Dusb_hid_usages1655 0x300 Property
1656 0x301 Property: Friendly Name
1657 0x302 Property: Persistent Unique ID
1658 0x303 Property: Sensor Status
1659 0x304 Property: Minimum Report Interval
1660 0x305 Property: Sensor Manufacturer
1661 0x306 Property: Sensor Model
1662 0x307 Property: Sensor Serial Number
1663 0x308 Property: Sensor Description
1664 0x309 Property: Sensor Connection Type
[all …]
/openbsd/src/gnu/llvm/clang/utils/TableGen/
DClangASTPropertiesEmitter.cpp79 std::vector<Property> Properties;
102 for (Property property : in ASTPropsEmitter()
183 function_ref<void (Property)> visit) { in visitAllProperties()
198 for (Property prop : info.Properties) { in visitAllProperties()
250 void emitReadOfProperty(StringRef readerName, Property property);
254 void emitWriteOfProperty(StringRef writerName, Property property);
300 std::map<StringRef, Property> allProperties; in validateNode()
305 for (Property property : nodeInfo.Properties) { in validateNode()
315 Property existingProperty = result.first->second; in validateNode()
457 visitAllProperties(node, nodeInfo, [&](Property prop) { in emitPropertiedReaderWriterBody()
[all …]
/openbsd/src/gnu/llvm/lldb/source/Plugins/DynamicLoader/Darwin-Kernel/
DDynamicLoaderDarwinKernelProperties.td4 def LoadKexts: Property<"load-kexts", "Boolean">,
8 def ScanType: Property<"scan-type", "Enum">,
/openbsd/src/gnu/llvm/lldb/source/Plugins/StructuredData/DarwinLog/
DStructuredDataDarwinLogProperties.td4 def EnableOnStartup: Property<"enable-on-startup", "Boolean">,
8 def AutoEnableOptions: Property<"auto-enable-options", "String">,
/openbsd/src/gnu/llvm/lldb/source/Plugins/Platform/MacOSX/
DPlatformMacOSXProperties.td4 def KextDirectories: Property<"kext-directories", "FileSpecList">,
10 def IgnoredExceptions: Property<"ignored-exceptions", "String">,
/openbsd/src/gnu/llvm/lldb/include/lldb/Core/
DUserSettingsController.h27 class Property; variable
70 std::vector<const Property *> &matching_properties) const;

1234567891011