/freebsd-src/contrib/llvm-project/llvm/include/llvm/DebugInfo/LogicalView/Core/ |
H A D | LVElement.h | 1 //===-- LVElement.h ---------------------------------------------*- C++ -*-===// 5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception 7 //===----------------------------------------------------------------------===// 12 //===----------------------------------------------------------------------===// 68 enum class Property { enum 103 LVProperties<Property> Properties; 130 void printFileIndex(raw_ostream &OS, bool Full = true) const override; 142 PROPERTY(Property, IsLine); 143 PROPERTY(Property, IsScope); 144 PROPERTY(Property, IsSymbol); [all …]
|
H A D | LVObject.h | 1 //===-- LVObject.h -------- 109 enum class Property { global() enum [all...] |
H A D | LVLocation.h | 1 //===-- LVLocation.h --------------------------------------------*- C++ -*-===// 5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception 7 //===----------------------------------------------------------------------===// 12 //===----------------------------------------------------------------------===// 50 void print(raw_ostream &OS, bool Full = true) const; 58 enum class Property { enum 78 LVProperties<Property> Properties; 81 bool hasAssociatedRange() const { in hasAssociatedRange() 104 PROPERTY(Property, IsAddressRange); 105 PROPERTY(Property, IsBaseClassOffset); [all …]
|
H A D | LVScope.h | 1 //===-- LVScope.h -----------------------------------------------*- C++ -*-===// 5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception 7 //===----------------------------------------------------------------------===// 12 //===----------------------------------------------------------------------===// 74 enum class Property { enum 93 LVProperties<Property> Properties; 107 // only-globals, only-locals, a-pattern. 108 bool resolvePrinting() const; 129 // - Preserve the order the logical elements are read in. 130 // - To have a single container with all the logical elements, when [all …]
|
H A D | LVSymbol.h | 1 //===-- LVSymbol.h ----------------------------------------------*- C++ -*-===// 5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception 7 //===----------------------------------------------------------------------===// 12 //===----------------------------------------------------------------------===// 37 enum class Property { HasLocation, FillGaps, LastEntry }; enum 41 LVProperties<Property> Properties; 78 static bool classof(const LVElement *Element) { in classof() 79 return Element->getSubclassID() == LVSubclassID::LV_SYMBOL; in classof() 90 PROPERTY(Property, HasLocation); 91 PROPERTY(Property, FillGaps); [all …]
|
/freebsd-src/usr.bin/dtc/ |
H A D | checking.hh | 1 /*- 2 * SPDX-License-Identifier: BSD-2-Clause 8 * Cambridge Computer Laboratory under DARPA/AFRL contract (FA8750-10-C-0237) 68 bool visit_node(device_tree *tree, const node_ptr &n); 89 virtual bool check_node(device_tree *, const node_ptr &) in check_node() 94 * Method for checking that a property is valid. The root class 97 virtual bool check_property(device_tree *, const node_ptr &, property_ptr ) in check_property() 104 bool check_tree(fdt::device_tree *tree) in check_tree() 106 return visit_node(tree, tree->get_root()); in check_tree() 111 * Abstract base class for simple property checks. This class defines a check [all …]
|
H A D | fdt.hh | 1 /*- 2 * SPDX-License-Identifier: BSD-2-Clause 8 * Cambridge Computer Laboratory under DARPA/AFRL contract (FA8750-10-C-0237) 56 class property; 70 typedef std::shared_ptr<property> property_ptr; 76 * Map from macros to property pointers. 104 * property-coded arrays will appear simply as binary (or possibly 105 * string, if they happen to be nul-terminated and printable), and must 112 * lists become one property value for each string, however 113 * when read from binary we have a single property value [all …]
|
H A D | fdt.cc | 1 /*- 2 * SPDX-License-Identifier: BSD-2-Clause 8 * Cambridge Computer Laboratory under DARPA/AFRL contract (FA8750-10-C-0237) 133 bool is_all_printable = true; in resolve_type() 136 bool lastWasNull = false; in resolve_type() 194 bool hasNull = (byte_data.back() == '\0'); in write_as_string() 258 property::parse_string(text_input_buffer &input) in parse_string() 264 bool isEscaped = false; in parse_string() 281 property::parse_cells(text_input_buffer &input, int cell_size) in parse_cells() 296 input.parse_error("reference only permitted in 32-bit arrays"); in parse_cells() [all …]
|
/freebsd-src/contrib/llvm-project/clang/include/clang/AST/ |
H A D | PropertiesBase.td | 1 //==--- PropertiesBase.td - Baseline definitions for AST properties ------ [all...] |
H A D | TypeProperties.td | 1 //==--- TypeProperties.td - Type property definitions ----- [all...] |
/freebsd-src/contrib/llvm-project/llvm/include/llvm/Frontend/OpenMP/ |
H A D | OMPContext.h | 1 //===- OpenMP/OMPContext.h ----- OpenMP context helper functions - C++ -*-===// 5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception 7 //===----------------------------------------------------------------------===// 13 //===----------------------------------------------------------------------===// 57 /// Return the trait set for which \p Property is a property. 58 TraitSet getOpenMPContextTraitSetForProperty(TraitProperty Property); 67 /// Return the trait selector for which \p Property is a property. 68 TraitSelector getOpenMPContextTraitSelectorForProperty(TraitProperty Property); 73 /// Parse \p Str and return the trait property it matches in the set \p Set and 79 /// Return the trait property for a singleton selector \p Selector. [all …]
|
/freebsd-src/contrib/llvm-project/llvm/lib/Frontend/OpenMP/ |
H A D | OMPContext.cpp | 1 //===- OMPContext.cpp ------ Collection of helpers for OpenMP contexts --- 166 __anonba6335200102(TraitProperty Property, bool WasFound) isVariantApplicableInContextHelper() argument 195 TraitProperty Property = TraitProperty(Bit); isVariantApplicableInContextHelper() local 223 for (TraitProperty Property : VMI.ConstructTraits) { isVariantApplicableInContextHelper() local 276 TraitProperty Property = TraitProperty(Bit); getVariantMatchScore() local 325 for (TraitProperty Property : VMI.ConstructTraits) { getVariantMatchScore() local 394 getOpenMPContextTraitSetForProperty(TraitProperty Property) getOpenMPContextTraitSetForProperty() argument 421 getOpenMPContextTraitSelectorForProperty(TraitProperty Property) getOpenMPContextTraitSelectorForProperty() argument 501 isValidTraitPropertyForTraitSetAndSelector(TraitProperty Property,TraitSelector Selector,TraitSet Set) isValidTraitPropertyForTraitSetAndSelector() argument [all...] |
/freebsd-src/contrib/llvm-project/lldb/include/lldb/Interpreter/ |
H A D | OptionValueProperties.h | 1 //===-- OptionValueProperties.h ---------------------------------*- C++ -*-===// 5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception 7 //===----------------------------------------------------------------------===// 17 #include "lldb/Interpreter/Property.h" 55 uint32_t dump_mask, bool is_json = false); 61 std::vector<const Property *> &matching_properties) const; 67 // Get the index of a property given its exact name in this property 68 // collection, "name" can't be a path to a property path that refers to a 69 // property within a property 72 // Get a property by exact name exists in this property collection, name can [all …]
|
H A D | Property.h | 1 //===-- Property.h ----------------------------------------------*- C++ -*-===// 5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception 7 //===----------------------------------------------------------------------===// 14 #include "lldb/lldb-defines.h" 15 #include "lldb/lldb-private-types.h" 22 // Property class instances can be constructed using one of these. 26 bool global; // false == this setting is a global setting by default 35 class Property { 37 Property(const PropertyDefinition &definition); 39 Property(llvm::StringRef name, llvm::StringRef desc, bool is_global, [all …]
|
/freebsd-src/contrib/llvm-project/clang/lib/Sema/ |
H A D | SemaObjCProperty.cpp | 1 //===--- SemaObjCProperty.cpp - Semantic Analysis for ObjC @property ----- 65 checkPropertyDeclWithOwnership(Sema & S,ObjCPropertyDecl * property) checkPropertyDeclWithOwnership() argument 349 __anon41a7efea0102(ObjCPropertyDecl *Property) checkAtomicPropertyMismatch() argument 722 checkARCPropertyImpl(Sema & S,SourceLocation propertyImplLoc,ObjCPropertyDecl * property,ObjCIvarDecl * ivar) checkARCPropertyImpl() argument 801 setImpliedPropertyAttributeForReadOnlyProperty(ObjCPropertyDecl * property,ObjCIvarDecl * ivar) setImpliedPropertyAttributeForReadOnlyProperty() argument 840 SelectPropertyForSynthesisFromProtocols(Sema & S,SourceLocation AtLoc,ObjCInterfaceDecl * ClassDecl,ObjCPropertyDecl * Property) SelectPropertyForSynthesisFromProtocols() argument 1097 ObjCPropertyDecl *property = nullptr; ActOnPropertyImplDecl() local 1634 DiagnosePropertyMismatch(ObjCPropertyDecl * Property,ObjCPropertyDecl * SuperProperty,const IdentifierInfo * inheritedName,bool OverridingProtocolProperty) DiagnosePropertyMismatch() argument 1708 DiagnosePropertyAccessorMismatch(ObjCPropertyDecl * property,ObjCMethodDecl * GetterMethod,SourceLocation Loc) DiagnosePropertyAccessorMismatch() argument 1846 for (const auto *Property : IFace->instance_properties()) { IvarBacksCurrentMethodAccessor() local 1855 for (const auto *Property : Ext->instance_properties()) IvarBacksCurrentMethodAccessor() local 2138 const auto *property = propertyImpl->getPropertyDecl(); diagnoseNullResettableSynthesizedSetters() local 2176 const ObjCPropertyDecl *Property = I->second; AtomicPropertySetterGetterRules() local 2360 AddPropertyAttrs(Sema & S,ObjCMethodDecl * PropertyMethod,ObjCPropertyDecl * Property) AddPropertyAttrs() argument 2374 ProcessPropertyDecl(ObjCPropertyDecl * property) ProcessPropertyDecl() argument [all...] |
/freebsd-src/contrib/llvm-project/lldb/source/Interpreter/ |
H A D | OptionValueProperties.cpp | 1 //===-- OptionValueProperties.cpp -----------------------------------------===// 5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception 7 //===----------------------------------------------------------------------===// 15 #include "lldb/Interpreter/Property.h" 28 Property property(definition); in Initialize() local 29 assert(property.IsValid()); in Initialize() 30 m_name_to_index.insert({property.GetName(), m_properties.size()}); in Initialize() 31 property.GetValue()->SetParent(shared_from_this()); in Initialize() 32 m_properties.push_back(property); in Initialize() 38 Property *property = ProtectedGetPropertyAtIndex(property_idx); in SetValueChangedCallback() local [all …]
|
H A D | Property.cpp | 1 //===-- Property.cpp ------------------------------------------------------===// 5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception 7 //===----------------------------------------------------------------------===// 9 #include "lldb/Interpreter/Property.h" 22 Property::Property(const PropertyDefinition &definition) in Property() function in Property 88 ->SetValueFromString( in Property() 91 enum_value->SetDefaultValue(enum_value->GetCurrentValue()); in Property() 96 enum_value->Clear(); in Property() 111 const bool resolve = definition.default_uint_value != 0; in Property() 224 string_value->GetOptions().Reset(definition.default_uint_value); in Property() [all …]
|
/freebsd-src/contrib/llvm-project/lldb/utils/TableGen/ |
H A D | LLDBPropertyDefEmitter.cpp | 1 //===- LLDBPropertyDefEmitter.cpp -----------------------------------------===// 5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception 7 //===----------------------------------------------------------------------===// 11 //===----------------------------------------------------------------------===// 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 33 // Emit the property name. in emitProperty() 34 OS << "\"" << Property->getValueAsString("Name") << "\""; in emitProperty() 37 // Emit the property type. in emitProperty() [all …]
|
/freebsd-src/contrib/llvm-project/clang/lib/APINotes/ |
H A D | APINotesYAMLCompiler.cpp | 1 //===-- APINotesYAMLCompiler.cpp - API Notes YAML Format Reader -*- C++ -*-===// 5 // SPDX-License-Identifier: Apache-2. 202 struct Property { global() struct 203 Name__anon561c0f8f0511::Property global() argument 204 Kind__anon561c0f8f0511::Property global() argument 205 Nullability__anon561c0f8f0511::Property global() argument 206 Availability__anon561c0f8f0511::Property global() argument 207 SwiftPrivate__anon561c0f8f0511::Property global() argument 208 SwiftName__anon561c0f8f0511::Property global() argument 209 SwiftImportAsAccessors__anon561c0f8f0511::Property global() argument 210 Type__anon561c0f8f0511::Property global() argument 821 for (const auto &Property : C.Properties) { convertContext() local [all...] |
/freebsd-src/contrib/llvm-project/clang/utils/TableGen/ |
H A D | ASTTableGen.h | 1 //=== ASTTableGen.h - Common definitions for AST node tablegen --*- C++ -*-===// 5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception 7 //===----------------------------------------------------------------------===// 43 // Cases of various non-ASTNode structured types like DeclarationName. 50 #define PropertyClassName "Property" 103 explicit operator bool() const { return Record != nullptr; } 106 return get()->getLoc(); in getLoc() 110 bool isSubClassOf(llvm::StringRef className) const { in isSubClassOf() 111 return get()->isSubClassOf(className); in isSubClassOf() 120 friend bool operator<(WrappedRecord lhs, WrappedRecord rhs) { [all …]
|
/freebsd-src/sys/contrib/device-tree/Bindings/ |
H A D | example-schema.yaml | 1 # SPDX-License-Identifier: (GPL-2.0-only OR BSD-2-Clause) 4 --- 5 # All the top-level keys are standard json-schema keywords except for 10 $id: http://devicetree.org/schemas/example-schema.yaml# 11 # $schema is the meta-schema this schema should be validated with. 12 $schema: http://devicetree.org/meta-schemas/core.yaml# 17 - Rob Herring <robh@kernel.org> 20 A more detailed multi-line description of the binding. 44 - items: 45 # items is a list of possible values for the property. The number of [all …]
|
/freebsd-src/contrib/llvm-project/libcxx/include/ |
H A D | random | 1 // -*- C++ -*- 2 //===------ [all...] |
/freebsd-src/contrib/llvm-project/clang/lib/StaticAnalyzer/Checkers/ |
H A D | IvarInvalidationChecker.cpp | 1 //===- IvarInvalidationChecker.cpp ------------------------------*- C++ -*-===// 5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception 7 //===----------------------------------------------------------------------===// 11 // - (void) foo 17 // to invalidate the ivar. An ivar or property are considered to be 28 //===----------------------------------------------------------------------===// 48 bool check_MissingInvalidationMethod = false; 50 bool check_InstanceVariableInvalidation = false; 67 bool IsInvalidated = false; 77 bool needsInvalidation() const { in needsInvalidation() [all …]
|
H A D | CheckObjCDealloc.cpp | 1 //==- CheckObjCDealloc.cpp - Check ObjC -dealloc implementation --*- C++ -*-==// 5 // SPDX-License-Identifie [all...] |
/freebsd-src/contrib/llvm-project/clang/lib/AST/ |
H A D | DeclObjC.cpp | 1 //===- DeclObjC.cpp - ObjC Declaration AST Node Implementation -------- 2063 collectInheritedProtocolProperties(const ObjCPropertyDecl * Property,ProtocolPropertySet & PS,PropertyDeclOrder & PO) const collectInheritedProtocolProperties() argument 2222 addPropertyImplementation(ObjCPropertyImplDecl * property) addPropertyImplementation() argument 2405 Create(ASTContext & C,DeclContext * DC,SourceLocation atLoc,SourceLocation L,ObjCPropertyDecl * property,Kind PK,ObjCIvarDecl * ivar,SourceLocation ivarLoc) Create() argument [all...] |