| /src/external/apache2/llvm/dist/llvm/utils/TableGen/ |
| SDNodeProperties.cpp | 17 for (Record *Property : R->getValueAsListOfDefs("Properties")) { 18 if (Property->getName() == "SDNPCommutative") { 20 } else if (Property->getName() == "SDNPAssociative") { 22 } else if (Property->getName() == "SDNPHasChain") { 24 } else if (Property->getName() == "SDNPOutGlue") { 26 } else if (Property->getName() == "SDNPInGlue") { 28 } else if (Property->getName() == "SDNPOptInGlue") { 30 } else if (Property->getName() == "SDNPMayStore") { 32 } else if (Property->getName() == "SDNPMayLoad") { 34 } else if (Property->getName() == "SDNPSideEffect") [all...] |
| /src/external/apache2/llvm/dist/llvm/include/llvm/Frontend/OpenMP/ |
| OMPContext.h | 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. 82 /// Return a textual representation of the trait property \p Kind, which might 84 /// property into a (distinct) enum [all...] |
| /src/external/apache2/llvm/dist/llvm/include/llvm/CodeGen/GlobalISel/ |
| InstructionSelect.h | 40 .set(MachineFunctionProperties::Property::IsSSA) 41 .set(MachineFunctionProperties::Property::Legalized) 42 .set(MachineFunctionProperties::Property::RegBankSelected); 47 MachineFunctionProperties::Property::Selected);
|
| Legalizer.h | 54 MachineFunctionProperties::Property::IsSSA); 59 MachineFunctionProperties::Property::Legalized); 64 MachineFunctionProperties::Property::NoPHIs);
|
| Localizer.h | 87 .set(MachineFunctionProperties::Property::IsSSA);
|
| RegBankSelect.h | 628 .set(MachineFunctionProperties::Property::IsSSA) 629 .set(MachineFunctionProperties::Property::Legalized); 634 MachineFunctionProperties::Property::RegBankSelected); 639 .set(MachineFunctionProperties::Property::NoPHIs);
|
| /src/external/apache2/llvm/dist/llvm/lib/Frontend/OpenMP/ |
| OMPContext.cpp | 90 TraitProperty Property = TraitProperty(Bit); 91 dbgs() << "\t " << getOpenMPContextTraitPropertyFullName(Property) 163 // Helper to deal with a single property that was (not) found in the OpenMP 166 auto HandleTrait = [MK](TraitProperty Property, 176 // In "all" or "none" mode we accept a matching or non-matching property 181 // We missed a property, provide some debug output and indicate failure. 184 dbgs() << "[" << DEBUG_TYPE << "] Property " 185 << getOpenMPContextTraitPropertyName(Property, "") 188 dbgs() << "[" << DEBUG_TYPE << "] Property " 189 << getOpenMPContextTraitPropertyName(Property, "") [all...] |
| /src/external/apache2/llvm/dist/llvm/lib/CodeGen/ |
| FuncletLayout.cpp | 33 MachineFunctionProperties::Property::NoVRegs);
|
| ResetMachineFunctionPass.cpp | 12 /// happen is that the MachineFunction has the FailedISel property. 63 MachineFunctionProperties::Property::FailedISel)) {
|
| TailDuplication.cpp | 67 .set(MachineFunctionProperties::Property::NoPHIs);
|
| PatchableFunction.cpp | 35 MachineFunctionProperties::Property::NoVRegs);
|
| /src/external/apache2/llvm/dist/llvm/lib/CodeGen/LiveDebugValues/ |
| LiveDebugValues.cpp | 54 MachineFunctionProperties::Property::NoVRegs);
|
| /src/external/gpl3/gcc.old/dist/libobjc/objc/ |
| runtime.h | 49 /* A 'Property' represents a property. It holds information about the 50 name of the property, and its attributes. 54 Property is the right name. */ 55 typedef struct objc_property *Property; 367 /* Return the name of the property. Return NULL if 'property' is 369 objc_EXPORT const char * property_getName (Property property); 371 /* Return the attributes of the property as a string. Return NULL i [all...] |
| /src/external/gpl3/gcc/dist/libobjc/objc/ |
| runtime.h | 49 /* A 'Property' represents a property. It holds information about the 50 name of the property, and its attributes. 54 Property is the right name. */ 55 typedef struct objc_property *Property; 367 /* Return the name of the property. Return NULL if 'property' is 369 objc_EXPORT const char * property_getName (Property property); 371 /* Return the attributes of the property as a string. Return NULL i [all...] |
| /src/external/apache2/llvm/dist/clang/lib/Sema/ |
| ScopeInfo.cpp | 118 : Base(nullptr, true), Property(getBestPropertyDecl(PropE)) { 133 : Base(nullptr, true), Property(Prop) { 136 // else, this is a message accessing a property on super. 141 : Base(nullptr, true), Property(DRE->getDecl()) { 142 assert(isa<VarDecl>(Property)); 147 : Base(getBaseInfo(IvarE->getBase())), Property(IvarE->getDecl()) {
|
| SemaObjCProperty.cpp | 1 //===--- SemaObjCProperty.cpp - Semantic Analysis for ObjC @property ------===// 9 // This file implements semantic analysis for Objective C @property and 32 /// getImpliedARCOwnership - Given a set of property attributes and a 53 // property type. 62 /// Check the internal consistency of a property declaration with 65 ObjCPropertyDecl *property) { 66 if (property->isInvalidDecl()) return; 68 ObjCPropertyAttribute::Kind propertyKind = property->getPropertyAttributes(); 70 = property->getType().getObjCLifetime(); 75 = getImpliedARCOwnership(propertyKind, property->getType()) 1097 ObjCPropertyDecl *property = nullptr; local 2143 const auto *property = propertyImpl->getPropertyDecl(); local [all...] |
| /src/external/apache2/llvm/dist/clang/utils/TableGen/ |
| ClangASTPropertiesEmitter.cpp | 46 /// The name of the property helper member: R/W 78 std::vector<Property> Properties; 101 for (Property property : 103 HasProperties node = property.getClass(); 104 NodeInfos[node].Properties.push_back(property); 149 // Find all the concrete property types. 182 function_ref<void (Property)> visit) { 197 for (Property prop : info.Properties) { 249 void emitReadOfProperty(StringRef readerName, Property property) [all...] |
| /src/external/apache2/llvm/dist/llvm/lib/Target/ARM/ |
| ARMOptimizeBarriersPass.cpp | 31 MachineFunctionProperties::Property::NoVRegs);
|
| /src/external/apache2/llvm/dist/llvm/lib/Target/XCore/ |
| XCoreFrameToArgsOffsetElim.cpp | 31 MachineFunctionProperties::Property::NoVRegs);
|
| /src/external/apache2/llvm/dist/llvm/lib/Target/AArch64/GISel/ |
| AArch64PostSelectOptimize.cpp | 174 MachineFunctionProperties::Property::FailedISel)) 177 MachineFunctionProperties::Property::Selected) &&
|
| /src/external/apache2/llvm/dist/llvm/include/llvm/CodeGen/ |
| IndirectThunks.h | 82 MF.getProperties().set(MachineFunctionProperties::Property::NoVRegs);
|
| /src/external/apache2/llvm/dist/llvm/lib/Target/Mips/ |
| MipsPreLegalizerCombiner.cpp | 96 MachineFunctionProperties::Property::FailedISel))
|
| /src/external/apache2/llvm/dist/llvm/lib/Target/WebAssembly/ |
| WebAssemblyPrepareForLiveIntervals.cpp | 124 MF.getProperties().set(MachineFunctionProperties::Property::TracksLiveness);
|
| /src/external/apache2/llvm/dist/clang/include/clang/Sema/ |
| ScopeInfo.h | 239 /// Access Expression | "Base" Decl | "Property" Decl 241 /// self.property | self (VarDecl) | property (ObjCPropertyDecl) 257 /// The extra flag is "true" if the Base and Property are enough to uniquely 264 /// The "property" decl, as described in the class documentation. 268 const NamedDecl *Property = nullptr; 278 WeakObjectProfileTy(const Expr *Base, const ObjCPropertyDecl *Property); 283 const NamedDecl *getProperty() const { return Property; } 286 /// rather than, say, an instance variable or property of another object. 301 return Base == Other.Base && Property == Other.Property [all...] |
| /src/external/gpl3/gcc.old/dist/libobjc/ |
| protocols.c | 456 Property protocol_getProperty (Protocol *protocol, const char *propertyName, 475 Property *protocol_copyPropertyList (Protocol *protocol, unsigned int *numberOfReturnedProperties) 478 Property *returnValue = NULL;
|