Home
last modified time | relevance | path

Searched refs:Attributes (Results 1 – 25 of 300) sorted by relevance

12345678910>>...12

/external/swiftshader/third_party/LLVM/include/llvm/
DAttributes.h26 typedef unsigned Attributes; typedef
36 const Attributes None = 0; ///< No attributes have been set
37 const Attributes ZExt = 1<<0; ///< Zero extended before/after call
38 const Attributes SExt = 1<<1; ///< Sign extended before/after call
39 const Attributes NoReturn = 1<<2; ///< Mark the function as not returning
40 const Attributes InReg = 1<<3; ///< Force argument to be passed in register
41 const Attributes StructRet = 1<<4; ///< Hidden pointer to structure to return
42 const Attributes NoUnwind = 1<<5; ///< Function doesn't unwind stack
43 const Attributes NoAlias = 1<<6; ///< Considered to not alias after call
44 const Attributes ByVal = 1<<7; ///< Pass structure by value
[all …]
DFunction.h176 bool hasFnAttr(Attributes N) const {
183 void addFnAttr(Attributes N) {
190 void removeFnAttr(Attributes N) {
203 bool paramHasAttr(unsigned i, Attributes attr) const {
208 void addAttribute(unsigned i, Attributes attr);
211 void removeAttribute(unsigned i, Attributes attr);
/external/gptfdisk/
Dattributes.cc24 string Attributes::atNames[NUM_ATR];
25 int Attributes::numAttrs = 0;
29 Attributes::Attributes(void) { in Attributes() function in Attributes
37 Attributes::Attributes(const uint64_t a) { in Attributes() function in Attributes
45 Attributes::~Attributes(void) { in ~Attributes()
49 void Attributes::Setup(void) { in Setup()
57 Attributes::atNames[i] = temp.str(); in Setup()
70 void Attributes::DisplayAttributes(void) { in DisplayAttributes()
93 void Attributes::ShowAttributes(const uint32_t partNum) { in ShowAttributes()
107 void Attributes::ChangeAttributes(void) { in ChangeAttributes()
[all …]
Dattributes.h15 class Attributes {
23 Attributes(void);
24 Attributes(const uint64_t a);
25 ~Attributes(void);
39 ostream & operator<<(ostream & os, const Attributes & data);
/external/clang/include/clang/Basic/
DBuiltins.h54 const char *Name, *Type, *Attributes, *HeaderName; member
99 return strchr(getRecord(ID).Attributes, 'U') != nullptr; in isPure()
105 return strchr(getRecord(ID).Attributes, 'c') != nullptr; in isConst()
110 return strchr(getRecord(ID).Attributes, 'n') != nullptr; in isNoThrow()
115 return strchr(getRecord(ID).Attributes, 'r') != nullptr; in isNoReturn()
120 return strchr(getRecord(ID).Attributes, 'j') != nullptr; in isReturnsTwice()
126 return strchr(getRecord(ID).Attributes, 'u') != nullptr; in isUnevaluated()
132 return strchr(getRecord(ID).Attributes, 'F') != nullptr; in isLibFunction()
139 return strchr(getRecord(ID).Attributes, 'f') != nullptr; in isPredefinedLibFunction()
146 return strchr(getRecord(ID).Attributes, 'i') != nullptr; in isPredefinedRuntimeFunction()
[all …]
/external/swiftshader/third_party/LLVM/lib/DebugInfo/
DDWARFAbbreviationDeclaration.cpp26 Attributes.clear(); in extract()
36 Attributes.push_back(DWARFAttribute(attr, form)); in extract()
58 for (unsigned i = 0, e = Attributes.size(); i != e; ++i) { in dump()
60 const char *attrString = AttributeString(Attributes[i].getAttribute()); in dump()
64 OS << format("DW_AT_Unknown_%x", Attributes[i].getAttribute()); in dump()
66 const char *formString = FormEncodingString(Attributes[i].getForm()); in dump()
70 OS << format("DW_FORM_Unknown_%x", Attributes[i].getForm()); in dump()
78 for (uint32_t i = 0, e = Attributes.size(); i != e; ++i) { in findAttributeIndex()
79 if (Attributes[i].getAttribute() == attr) in findAttributeIndex()
DDWARFAbbreviationDeclaration.h25 SmallVector<DWARFAttribute, 8> Attributes; variable
34 uint32_t getNumAttributes() const { return Attributes.size(); } in getNumAttributes()
36 return Attributes.size() > idx ? Attributes[idx].getAttribute() : 0; in getAttrByIndex()
39 return Attributes.size() > idx ? Attributes[idx].getForm() : 0; in getFormByIndex()
48 return Attributes; in getAttributes()
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/asn1/cms/
DAttributes.java24 public class Attributes class
29 private Attributes(ASN1Set set) in Attributes() method in Attributes
34 public Attributes(ASN1EncodableVector v) in Attributes() method in Attributes
52 public static Attributes getInstance(Object obj) in getInstance()
54 if (obj instanceof Attributes) in getInstance()
56 return (Attributes)obj; in getInstance()
60 return new Attributes(ASN1Set.getInstance(obj)); in getInstance()
/external/clang/lib/Sema/
DSemaObjCProperty.cpp186 unsigned Attributes = ODS.getPropertyAttributes(); in ActOnProperty() local
187 FD.D.setObjCWeakProperty((Attributes & ObjCDeclSpec::DQ_PR_weak) != 0); in ActOnProperty()
190 if (!getOwnershipRule(Attributes)) { in ActOnProperty()
191 Attributes |= deducePropertyOwnershipFromType(*this, T); in ActOnProperty()
193 bool isReadWrite = ((Attributes & ObjCDeclSpec::DQ_PR_readwrite) || in ActOnProperty()
195 !(Attributes & ObjCDeclSpec::DQ_PR_readonly)); in ActOnProperty()
205 Attributes, in ActOnProperty()
216 Attributes, ODS.getPropertyAttributes(), in ActOnProperty()
223 CheckObjCPropertyAttributes(Res, AtLoc, Attributes, in ActOnProperty()
280 makePropertyAttributesAsWritten(unsigned Attributes) { in makePropertyAttributesAsWritten() argument
[all …]
/external/llvm/utils/TableGen/
DAttributes.cpp23 class Attributes { class
25 Attributes(RecordKeeper &R) : Records(R) {} in Attributes() function in __anona06382030111::Attributes
43 void Attributes::emitTargetIndependentEnums(raw_ostream &OS) { in emitTargetIndependentEnums()
56 void Attributes::emitConversionFn(raw_ostream &OS) { in emitConversionFn()
77 void Attributes::emitFnAttrCompatCheck(raw_ostream &OS, bool IsStringAttr) { in emitFnAttrCompatCheck()
141 void Attributes::printEnumAttrClasses(raw_ostream &OS, in printEnumAttrClasses()
154 void Attributes::printStrBoolAttrClasses(raw_ostream &OS, in printStrBoolAttrClasses()
167 void Attributes::emit(raw_ostream &OS) { in emit()
176 Attributes(RK).emit(OS); in EmitAttributes()
/external/swiftshader/third_party/LLVM/lib/VMCore/
DAttributes.cpp29 std::string Attribute::getAsString(Attributes Attrs) { in getAsString()
95 Attributes Attribute::typeIncompatible(Type *Ty) { in typeIncompatible()
96 Attributes Incompatible = None; in typeIncompatible()
246 Attributes AttrListPtr::getAttributes(unsigned Idx) const { in getAttributes()
258 bool AttrListPtr::hasAttrSomewhere(Attributes Attr) const { in hasAttrSomewhere()
269 AttrListPtr AttrListPtr::addAttr(unsigned Idx, Attributes Attrs) const { in addAttr()
270 Attributes OldAttrs = getAttributes(Idx); in addAttr()
274 Attributes OldAlign = OldAttrs & Attribute::Alignment; in addAttr()
275 Attributes NewAlign = Attrs & Attribute::Alignment; in addAttr()
280 Attributes NewAttrs = OldAttrs | Attrs; in addAttr()
[all …]
/external/llvm/test/Verifier/
Dinalloca1.ll4 ; CHECK: Attributes {{.*}} are incompatible
7 ; CHECK: Attributes {{.*}} are incompatible
10 ; CHECK: Attributes {{.*}} are incompatible
13 ; CHECK: Attributes {{.*}} are incompatible
16 ; CHECK: Attributes {{.*}} are incompatible
Dwriteonly.ll4 ; CHECK: Attributes {{.*}} are incompatible
7 ; CHECK: Attributes {{.*}} are incompatible
10 ; CHECK: Attributes {{.*}} are incompatible
13 ; CHECK: Attributes {{.*}} are incompatible
/external/jacoco/org.jacoco.core/src/org/jacoco/core/internal/instr/
DSignatureRemover.java19 import java.util.jar.Attributes;
94 private void filterManifestEntry(final Collection<Attributes> entry) { in filterManifestEntry()
95 for (final Iterator<Attributes> i = entry.iterator(); i.hasNext();) { in filterManifestEntry()
96 final Attributes attributes = i.next(); in filterManifestEntry()
104 private void filterManifestEntryAttributes(final Attributes attrs) { in filterManifestEntryAttributes()
/external/robolectric/v1/src/main/java/com/xtremelabs/robolectric/bytecode/
DClassCache.java11 import java.util.jar.Attributes;
18 private static final Attributes.Name VERSION_ATTRIBUTE = new Attributes.Name("version");
31 Attributes attributes = manifest.getEntries().get("robolectric"); in ClassCache()
51 Attributes attributes = new Attributes(); in ClassCache()
/external/testng/src/main/java/org/testng/xml/
DTestNGContentHandler.java11 import org.xml.sax.Attributes;
124 private void xmlSuiteFile(boolean start, Attributes attributes) { in xmlSuiteFile()
139 private void xmlSuite(boolean start, Attributes attributes) { in xmlSuite()
231 private void xmlDefine(boolean start, Attributes attributes) { in xmlDefine()
247 private void xmlScript(boolean start, Attributes attributes) { in xmlScript()
268 private void xmlTest(boolean start, Attributes attributes) { in xmlTest()
343 public void xmlClasses(boolean start, Attributes attributes) { in xmlClasses()
357 public void xmlListeners(boolean start, Attributes attributes) { in xmlListeners()
372 public void xmlListener(boolean start, Attributes attributes) { in xmlListener()
382 public void xmlPackages(boolean start, Attributes attributes) { in xmlPackages()
[all …]
/external/llvm/test/tools/dsymutil/X86/
Ddsym-companion.test43 CHECK: Attributes [ (0x800004)
61 CHECK: Attributes [ (0x0)
76 CHECK32: Attributes [ (0x0)
92 CHECK: Attributes [ (0x0)
108 CHECK: Attributes [ (0x0)
124 CHECK: Attributes [ (0x0)
139 CHECK64: Attributes [ (0x0)
154 CHECK64: Attributes [ (0x0)
169 CHECK64: Attributes [ (0x0)
184 CHECK64: Attributes [ (0x0)
[all …]
/external/llvm/test/DebugInfo/PDB/DIA/
Dpdbdump-flags.test9 ; NO_ARGS: Attributes: HasPrivateSymbols
18 ; TYPES: Attributes: HasPrivateSymbols
27 ; COMPILANDS: Attributes: HasPrivateSymbols
36 ; MULTIPLE: Attributes: HasPrivateSymbols
/external/llvm/test/tools/llvm-readobj/
Dsections.test132 MACHO-I386-NEXT: Attributes [ (0x800004)
150 MACHO-I386-NEXT: Attributes [ (0x0)
169 MACHO-X86-64-NEXT: Attributes [ (0x800004)
188 MACHO-X86-64-NEXT: Attributes [ (0x0)
208 MACHO-PPC-NEXT: Attributes [ (0x800004)
226 MACHO-PPC-NEXT: Attributes [ (0x800004)
244 MACHO-PPC-NEXT: Attributes [ (0x0)
260 MACHO-PPC-NEXT: Attributes [ (0x0)
276 MACHO-PPC-NEXT: Attributes [ (0x0)
295 MACHO-PPC64-NEXT: Attributes [ (0x800004)
[all …]
Dmacho-universal-x86_64.i386.test68 MULTISECTIONS: Attributes [ (0x800004)
86 MULTISECTIONS: Attributes [ (0x0)
102 MULTISECTIONS: Attributes [ (0x0)
124 MULTISECTIONS: Attributes [ (0x800004)
142 MULTISECTIONS: Attributes [ (0x0)
197 MULTISECTIONS-ARCHIVE: Attributes [ (0x800004)
215 MULTISECTIONS-ARCHIVE: Attributes [ (0x0)
231 MULTISECTIONS-ARCHIVE: Attributes [ (0x20000)
248 MULTISECTIONS-ARCHIVE: Attributes [ (0x680000)
273 MULTISECTIONS-ARCHIVE: Attributes [ (0x800004)
[all …]
/external/apache-xml/src/main/java/org/apache/xalan/processor/
DXSLTElementProcessor.java33 import org.xml.sax.Attributes;
158 … StylesheetHandler handler, String uri, String localName, String rawName, Attributes attributes) in startElement()
264 StylesheetHandler handler, String rawName, Attributes attributes, in setPropertiesFromAttributes()
285 Attributes setPropertiesFromAttributes( in setPropertiesFromAttributes()
286 StylesheetHandler handler, String rawName, Attributes attributes, in setPropertiesFromAttributes()
/external/llvm/include/llvm/IR/
DCMakeLists.txt1 set(LLVM_TARGET_DEFINITIONS Attributes.td)
2 tablegen(LLVM Attributes.inc -gen-attrs)
/external/syslinux/gnu-efi/gnu-efi-3.0/inc/
Defipciio.h116 IN UINT64 Attributes
176 IN UINT64 Attributes,
193 IN UINT64 Attributes,
212 EFI_PCI_IO_PROTOCOL_ATTRIBUTES Attributes; member
/external/syslinux/efi32/include/efi/
Defipciio.h116 IN UINT64 Attributes
176 IN UINT64 Attributes,
193 IN UINT64 Attributes,
212 EFI_PCI_IO_PROTOCOL_ATTRIBUTES Attributes; member
/external/syslinux/gpxe/src/include/gpxe/efi/Protocol/
DPciIo.h321 IN UINT64 Attributes
408 IN UINT64 Attributes,
471 IN UINT64 Attributes,
497 EFI_PCI_IO_PROTOCOL_ATTRIBUTES Attributes; member

12345678910>>...12