| /openbsd-src/gnu/llvm/clang/include/clang/AST/ |
| H A D | TypeProperties.td | 13 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 …]
|
| H A D | PropertiesBase.td | 35 /// 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/ |
| H A D | LLDBPropertyDefEmitter.cpp | 24 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/DebugInfo/LogicalView/Core/ |
| H A D | LVElement.h | 68 enum class Property { enum 103 LVProperties<Property> Properties; 142 PROPERTY(Property, IsLine); 143 PROPERTY(Property, IsScope); 144 PROPERTY(Property, IsSymbol); 145 PROPERTY(Property, IsType); 146 PROPERTY(Property, IsEnumClass); 147 PROPERTY(Property, IsExternal); 148 PROPERTY(Property, HasType); 149 PROPERTY(Property, HasAugmentedName); [all …]
|
| H A D | LVLocation.h | 63 enum class Property { enum 83 LVProperties<Property> Properties; 109 PROPERTY(Property, IsAddressRange); 110 PROPERTY(Property, IsBaseClassOffset); 111 PROPERTY(Property, IsBaseClassStep); 112 PROPERTY_1(Property, IsClassOffset, IsLocationSimple); 113 PROPERTY_1(Property, IsFixedAddress, IsLocationSimple); 114 PROPERTY(Property, IsLocationSimple); 115 PROPERTY(Property, IsGapEntry); 116 PROPERTY(Property, IsOperationList); [all …]
|
| H A D | LVObject.h | 125 enum class Property { enum 148 LVProperties<Property> Properties; 219 PROPERTY(Property, IsLocation); 220 PROPERTY(Property, IsGlobalReference); 221 PROPERTY(Property, IsGeneratedName); 222 PROPERTY(Property, IsResolved); 223 PROPERTY(Property, IsResolvedName); 224 PROPERTY(Property, IsDiscarded); 225 PROPERTY(Property, IsOptimized); 226 PROPERTY(Property, IsAdded); [all …]
|
| H A D | LVScope.h | 75 enum class Property { enum 94 LVProperties<Property> Properties; 185 PROPERTY(Property, HasDiscriminator); 186 PROPERTY(Property, CanHaveRanges); 187 PROPERTY(Property, CanHaveLines); 188 PROPERTY(Property, HasGlobals); 189 PROPERTY(Property, HasLocals); 190 PROPERTY(Property, HasLines); 191 PROPERTY(Property, HasScopes); 192 PROPERTY(Property, HasSymbols); [all …]
|
| /openbsd-src/gnu/llvm/llvm/include/llvm/Frontend/OpenMP/ |
| H A D | OMPContext.h | 58 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/ |
| H A D | TargetProperties.td | 4 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/ |
| H A D | OMPContext.cpp | 89 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/ |
| H A D | CoreProperties.td | 4 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/ |
| H A D | OptionValueProperties.cpp | 31 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 …]
|
| H A D | InterpreterProperties.td | 4 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 …]
|
| H A D | Property.cpp | 22 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/lldb/source/Plugins/Platform/QemuUser/ |
| H A D | PlatformQemuUserProperties.td | 4 def Architecture: Property<"architecture", "String">, 8 def EmulatorPath: Property<"emulator-path", "FileSpec">, 12 def EmulatorArgs: Property<"emulator-args", "Args">, 16 def EmulatorEnvVars: Property<"emulator-env-vars", "Dictionary">, 20 def TargetEnvVars: Property<"target-env-vars", "Dictionary">,
|
| /openbsd-src/gnu/llvm/clang/lib/Sema/ |
| H A D | SemaObjCProperty.cpp | 349 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 …]
|
| /openbsd-src/gnu/llvm/llvm/include/llvm/CodeGen/GlobalISel/ |
| H A D | InstructionSelect.h | 42 .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()
|
| H A D | Legalizer.h | 59 MachineFunctionProperties::Property::IsSSA); in getRequiredProperties() 64 MachineFunctionProperties::Property::Legalized); in getSetProperties() 69 MachineFunctionProperties::Property::NoPHIs); in getClearedProperties()
|
| /openbsd-src/gnu/llvm/lldb/source/Plugins/Process/gdb-remote/ |
| H A D | ProcessGDBRemoteProperties.td | 4 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/clang/lib/ExtractAPI/ |
| H A D | ExtractAPIVisitor.cpp | 486 for (const auto *Property : Properties) { in recordObjCProperties() local 487 StringRef Name = Property->getName(); in recordObjCProperties() 488 StringRef USR = API.recordUSR(Property); in recordObjCProperties() 490 Context.getSourceManager().getPresumedLoc(Property->getLocation()); in recordObjCProperties() 492 if (auto *RawComment = Context.getRawCommentForDeclNoCache(Property)) in recordObjCProperties() 498 DeclarationFragmentsBuilder::getFragmentsForObjCProperty(Property); in recordObjCProperties() 500 DeclarationFragmentsBuilder::getSubHeading(Property); in recordObjCProperties() 503 API.copyString(Property->getGetterName().getAsString()); in recordObjCProperties() 505 API.copyString(Property->getSetterName().getAsString()); in recordObjCProperties() 509 if (Property->getPropertyAttributes() & in recordObjCProperties() [all …]
|
| /openbsd-src/gnu/llvm/lldb/include/lldb/Interpreter/ |
| H A D | OptionValueProperties.h | 62 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;
|
| H A D | Property.h | 35 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/ |
| H A D | SDNodeProperties.cpp | 18 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/ |
| H A D | usb_hid_usages | 1655 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/ |
| H A D | ClangASTPropertiesEmitter.cpp | 79 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 …]
|