Home
last modified time | relevance | path

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

12345678910>>...19

/netbsd-src/external/apache2/llvm/dist/clang/include/clang/Basic/
H A DBuiltins.h55 const char *Name, *Type, *Attributes, *HeaderName; member
100 return strchr(getRecord(ID).Attributes, 'U') != nullptr; in isPure()
106 return strchr(getRecord(ID).Attributes, 'c') != nullptr; in isConst()
111 return strchr(getRecord(ID).Attributes, 'n') != nullptr; in isNoThrow()
116 return strchr(getRecord(ID).Attributes, 'r') != nullptr; in isNoReturn()
121 return strchr(getRecord(ID).Attributes, 'j') != nullptr; in isReturnsTwice()
127 return strchr(getRecord(ID).Attributes, 'u') != nullptr; in isUnevaluated()
133 return strchr(getRecord(ID).Attributes, 'F') != nullptr; in isLibFunction()
140 return strchr(getRecord(ID).Attributes, 'f') != nullptr; in isPredefinedLibFunction()
147 return strchr(getRecord(ID).Attributes, 'h') != nullptr; in isHeaderDependentFunction()
[all …]
/netbsd-src/external/apache2/llvm/dist/clang/lib/Sema/
H A DSemaObjCProperty.cpp180 unsigned Attributes = ODS.getPropertyAttributes(); in ActOnProperty() local
181 FD.D.setObjCWeakProperty((Attributes & ObjCPropertyAttribute::kind_weak) != in ActOnProperty()
185 if (!getOwnershipRule(Attributes)) { in ActOnProperty()
186 Attributes |= deducePropertyOwnershipFromType(*this, T); in ActOnProperty()
188 bool isReadWrite = ((Attributes & ObjCPropertyAttribute::kind_readwrite) || in ActOnProperty()
190 !(Attributes & ObjCPropertyAttribute::kind_readonly)); in ActOnProperty()
201 isReadWrite, Attributes, in ActOnProperty()
212 ODS.getSetterNameLoc(), isReadWrite, Attributes, in ActOnProperty()
220 CheckObjCPropertyAttributes(Res, AtLoc, Attributes, in ActOnProperty()
272 makePropertyAttributesAsWritten(unsigned Attributes) { in makePropertyAttributesAsWritten() argument
[all …]
/netbsd-src/external/apache2/llvm/dist/llvm/utils/TableGen/
H A DAttributes.cpp20 class Attributes { class
22 Attributes(RecordKeeper &R) : Records(R) {} in Attributes() function in __anon84b3666d0111::Attributes
34 void Attributes::emitTargetIndependentNames(raw_ostream &OS) { in emitTargetIndependentNames()
64 void Attributes::emitFnAttrCompatCheck(raw_ostream &OS, bool IsStringAttr) { in emitFnAttrCompatCheck()
99 void Attributes::emit(raw_ostream &OS) { in emit()
107 Attributes(RK).emit(OS); in EmitAttributes()
/netbsd-src/external/apache2/llvm/dist/llvm/lib/Target/X86/
H A DX86InstrFMA3Info.h30 uint16_t Attributes; member
70 bool isIntrinsic() const { return (Attributes & Intrinsic) != 0; } in isIntrinsic()
74 return (Attributes & KMergeMasked) != 0; in isKMergeMasked()
78 bool isKZeroMasked() const { return (Attributes &KZeroMasked) != 0; } in isKZeroMasked()
82 return (Attributes & (KMergeMasked | KZeroMasked)) != 0; in isKMasked()
/netbsd-src/external/apache2/llvm/dist/llvm/lib/Object/
H A DELFObjectFile.cpp162 ARMAttributeParser Attributes; in getARMFeatures() local
163 if (Error E = getBuildAttributes(Attributes)) { in getARMFeatures()
171 Attributes.getAttributeValue(ARMBuildAttrs::CPU_arch); in getARMFeatures()
175 Attr = Attributes.getAttributeValue(ARMBuildAttrs::CPU_arch_profile); in getARMFeatures()
194 Attr = Attributes.getAttributeValue(ARMBuildAttrs::THUMB_ISA_use); in getARMFeatures()
209 Attr = Attributes.getAttributeValue(ARMBuildAttrs::FP_arch); in getARMFeatures()
233 Attr = Attributes.getAttributeValue(ARMBuildAttrs::Advanced_SIMD_arch); in getARMFeatures()
252 Attr = Attributes.getAttributeValue(ARMBuildAttrs::MVE_arch); in getARMFeatures()
271 Attr = Attributes.getAttributeValue(ARMBuildAttrs::DIV_use); in getARMFeatures()
300 RISCVAttributeParser Attributes; in getRISCVFeatures() local
[all …]
/netbsd-src/external/apache2/llvm/dist/llvm/include/llvm/MC/
H A DMCPseudoProbe.h74 uint8_t Attributes; variable
78 uint64_t Attributes) in MCPseudoProbe() argument
80 Attributes(Attributes) { in MCPseudoProbe()
82 assert(Attributes <= 0xFF && in MCPseudoProbe()
94 uint8_t getAttributes() const { return Attributes; } in getAttributes()
/netbsd-src/external/gpl3/binutils.old/dist/gprofng/src/
H A DDefaultHandler.h32 class Attributes
35 virtual ~Attributes () { }; in ~Attributes()
89 Attributes *attributes) = 0;
111 void dump_startElement (const char *qName, Attributes *attributes);
H A DSAXParserFactory.cc34 class AttributesP : public Attributes
181 Attributes *parseAttributes ();
451 Attributes *
497 Attributes *attrs = parseAttributes (); in parseTag()
657 DefaultHandler::dump_startElement (const char *qName, Attributes *attrs) in dump_startElement()
/netbsd-src/external/gpl3/binutils/dist/gprofng/src/
H A DDefaultHandler.h32 class Attributes
35 virtual ~Attributes () { }; in ~Attributes()
89 Attributes *attributes) = 0;
111 void dump_startElement (const char *qName, Attributes *attributes);
H A DSAXParserFactory.cc34 class AttributesP : public Attributes
181 Attributes *parseAttributes ();
451 Attributes *
497 Attributes *attrs = parseAttributes (); in parseTag()
657 DefaultHandler::dump_startElement (const char *qName, Attributes *attrs) in dump_startElement()
/netbsd-src/external/apache2/llvm/dist/llvm/lib/Target/AMDGPU/
H A DAMDGPUPropagateAttributes.cpp78 Attributes[I] = F.getFnAttribute(AttributeNames[I]); in FnProperties()
85 if (Attributes[I] != Other.Attributes[I]) in operator ==()
93 New.Attributes[I] = CallerProps.Attributes[I]; in adjustToCaller()
98 Optional<Attribute> Attributes[NumAttr]; member in __anon0f7074c60111::AMDGPUPropagateAttributes::FnProperties
277 setAttributes(F, NewProps.Attributes); in process()
320 setAttributes(*NewF, NewProps.Attributes); in cloneWithProperties()
/netbsd-src/sys/external/bsd/gnu-efi/dist/inc/
H A Defipciio.h194 IN UINT64 Attributes
205 IN UINT64 Attributes
314 IN UINT64 Attributes,
332 OUT UINT64 *Attributes
339 IN UINT64 Attributes,
349 IN UINT64 Attributes,
367 EFI_PCI_IO_PROTOCOL_ATTRIBUTES Attributes; member
/netbsd-src/external/apache2/llvm/dist/clang/lib/Basic/
H A DBuiltins.cpp53 return strchr(BuiltinInfo[i].Attributes, 'f') != nullptr; in isBuiltinFunc()
62 strchr(BuiltinInfo.Attributes, 'f'); in builtinIsSupported()
110 const char *WidthPos = ::strchr(getRecord(ID).Attributes, 'V'); in getRequiredVectorWidth()
133 const char *Like = ::strpbrk(getRecord(ID).Attributes, Fmt); in isLike()
160 const char *CalleePos = ::strchr(getRecord(ID).Attributes, 'C'); in performsCallback()
/netbsd-src/external/bsd/openldap/dist/doc/rfc/
H A Drfc3671.txt12 Collective Attributes in
60 RFC 3671 Collective Attributes in LDAP December 2003
63 1.2. Collective Attributes
65 Attributes shared by the entries comprising an entry collection are
91 2. System Schema for Collective Attributes
94 Attributes. LDAP servers [RFC3377] MUST act in accordance with the
116 RFC 3671 Collective Attributes in LDAP December 2003
172 RFC 3671 Collective Attributes in LDAP December 2003
228 RFC 3671 Collective Attributes in LDAP December 2003
284 RFC 3671 Collective Attributes in LDAP December 2003
[all …]
H A Drfc4529.txt12 Requesting Attributes by Object Class in the
38 3. Return of all Attributes of an Object Class .....................2
60 RFC 4529 Requesting Attributes by Object Class June 2006
88 3. Return of All Attributes of an Object Class
116 RFC 4529 Requesting Attributes by Object Class June 2006
172 RFC 4529 Requesting Attributes by Object Class June 2006
212 version 3 (LDAPv3): All Operational Attributes", RFC
228 RFC 4529 Requesting Attributes by Object Class June 2006
284 RFC 4529 Requesting Attributes by Object Class June 2006
H A Drfc3673.txt13 All Operational Attributes
60 RFC 3673 LDAPv3: All Operational Attributes December 2003
63 2. All Operational Attributes
116 RFC 3673 LDAPv3: All Operational Attributes December 2003
172 RFC 3673 LDAPv3: All Operational Attributes December 2003
228 RFC 3673 LDAPv3: All Operational Attributes December 2003
/netbsd-src/external/apache2/llvm/dist/llvm/include/llvm/
H A Dmodule.install.modulemap11 textual header "IR/Attributes.gen"
12 textual header "IR/Attributes.inc"
/netbsd-src/external/gpl3/gcc/dist/libphobos/libdruntime/core/sys/windows/
H A Dntdef.d30 Attributes = a; in InitializeObjectAttributes()
77 ULONG Attributes; variable
/netbsd-src/external/apache2/llvm/dist/clang/include/clang/Lex/
H A DModuleMap.h230 struct Attributes { struct
244 Attributes() in Attributes() argument
255 Attributes Attrs;
378 Attributes Attrs, Module *Parent);
/netbsd-src/external/apache2/llvm/dist/llvm/utils/gn/secondary/llvm/include/llvm/IR/
H A DBUILD.gn3 tablegen("Attributes") {
176 # IR's public headers include Attributes.inc.
177 ":Attributes",
/netbsd-src/external/gpl3/gcc.old/dist/gcc/
H A Dbuiltin-attrs.def21 that are applied to some built-in functions by default. Attributes
355 /* Attributes for fprintf(f, f, va). */
357 /* Attributes for v{f,s}printf(d, f, va). vsprintf is nothrow, vfprintf
360 /* Attributes for {f,s}printf(d, f, ...). sprintf is nothrow, fprintf
363 /* Attributes for vprintf_chk. */
365 /* Attributes for printf_chk. */
367 /* Attributes for v{f,s}printf_chk(d, t, bos, f, va). vsprintf_chk is
370 /* Attributes for {f,s}printf_chk(d, t, bos, f, ...). sprintf_chk is
/netbsd-src/external/gpl3/gcc/dist/gcc/
H A Dbuiltin-attrs.def21 that are applied to some built-in functions by default. Attributes
361 /* Attributes for fprintf(f, f, va). */
363 /* Attributes for v{f,s}printf(d, f, va). vsprintf is nothrow, vfprintf
366 /* Attributes for {f,s}printf(d, f, ...). sprintf is nothrow, fprintf
369 /* Attributes for vprintf_chk. */
371 /* Attributes for printf_chk. */
373 /* Attributes for v{f,s}printf_chk(d, t, bos, f, va). vsprintf_chk is
376 /* Attributes for {f,s}printf_chk(d, t, bos, f, ...). sprintf_chk is
/netbsd-src/sys/external/bsd/gnu-efi/dist/lib/
H A Dinit.c177 UINT32 Attributes; in EFIDebugVariable() local
182 …Status = uefi_call_wrapper(RT->GetVariable, 5, L"EFIDebug", &EfiGlobalVariable, &Attributes, &Data… in EFIDebugVariable()
/netbsd-src/external/apache2/llvm/dist/llvm/include/llvm/IR/
H A DCMakeLists.txt1 set(LLVM_TARGET_DEFINITIONS Attributes.td)
2 tablegen(LLVM Attributes.inc -gen-attrs)
/netbsd-src/external/apache2/llvm/dist/llvm/include/llvm/ProfileData/
H A DSampleProf.h407 SampleContext() : State(UnknownContext), Attributes(ContextNone) {}
409 : Attributes(ContextNone) {
454 bool hasAttribute(ContextAttributeMask A) { return Attributes & (uint32_t)A; }
455 void setAttribute(ContextAttributeMask A) { Attributes |= (uint32_t)A; }
456 uint32_t getAllAttributes() { return Attributes; }
457 void setAllAttributes(uint32_t A) { Attributes = A; }
513 uint32_t Attributes;

12345678910>>...19