Searched refs:Attributes (Results 1 - 25 of 31) sorted by relevance

12

/freebsd-10.3-release/contrib/llvm/lib/DebugInfo/
H A DDWARFAbbreviationDeclaration.h30 SmallVector<AttributeSpec, 8> Attributes; member in class:llvm::DWARFAbbreviationDeclaration
37 uint32_t getNumAttributes() const { return Attributes.size(); }
39 return idx < Attributes.size() ? Attributes[idx].Attr : 0;
42 return idx < Attributes.size() ? Attributes[idx].Form : 0;
H A DDWARFAbbreviationDeclaration.cpp21 Attributes.clear();
54 Attributes.push_back(AttributeSpec(Attr, Form));
72 for (unsigned i = 0, e = Attributes.size(); i != e; ++i) {
74 const char *attrString = AttributeString(Attributes[i].Attr);
78 OS << format("DW_AT_Unknown_%x", Attributes[i].Attr);
80 const char *formString = FormEncodingString(Attributes[i].Form);
84 OS << format("DW_FORM_Unknown_%x", Attributes[i].Form);
92 for (uint32_t i = 0, e = Attributes.size(); i != e; ++i) {
93 if (Attributes[i].Attr == attr)
/freebsd-10.3-release/contrib/llvm/tools/clang/include/clang/Basic/
H A DBuiltins.h53 const char *Name, *Type, *Attributes, *HeaderName; member in struct:clang::Builtin::Info
59 !strcmp(Attributes, RHS.Attributes);
97 return strchr(GetRecord(ID).Attributes, 'c') != 0;
102 return strchr(GetRecord(ID).Attributes, 'n') != 0;
107 return strchr(GetRecord(ID).Attributes, 'r') != 0;
112 return strchr(GetRecord(ID).Attributes, 'j') != 0;
118 return strchr(GetRecord(ID).Attributes, 'u') != 0;
124 return strchr(GetRecord(ID).Attributes, 'F') != 0;
131 return strchr(GetRecord(ID).Attributes, '
[all...]
/freebsd-10.3-release/contrib/llvm/tools/clang/lib/Sema/
H A DSemaObjCProperty.cpp151 unsigned Attributes = ODS.getPropertyAttributes(); local
154 Attributes |= deduceWeakPropertyFromType(*this, T);
156 bool isReadWrite = ((Attributes & ObjCDeclSpec::DQ_PR_readwrite) ||
158 !(Attributes & ObjCDeclSpec::DQ_PR_readonly));
161 bool isAssign = ((Attributes & ObjCDeclSpec::DQ_PR_assign) ||
163 !(Attributes & ObjCDeclSpec::DQ_PR_retain) &&
164 !(Attributes & ObjCDeclSpec::DQ_PR_strong) &&
165 !(Attributes & ObjCDeclSpec::DQ_PR_copy) &&
166 !(Attributes & ObjCDeclSpec::DQ_PR_unsafe_unretained) &&
167 !(Attributes
254 makePropertyAttributesAsWritten(unsigned Attributes) argument
340 HandlePropertyInClassExtension(Scope *S, SourceLocation AtLoc, SourceLocation LParenLoc, FieldDeclarator &FD, Selector GetterSel, Selector SetterSel, const bool isAssign, const bool isReadWrite, const unsigned Attributes, const unsigned AttributesAsWritten, bool *isOverridingProperty, TypeSourceInfo *T, tok::ObjCKeywordKind MethodImplKind) argument
535 CreatePropertyDecl(Scope *S, ObjCContainerDecl *CDecl, SourceLocation AtLoc, SourceLocation LParenLoc, FieldDeclarator &FD, Selector GetterSel, Selector SetterSel, const bool isAssign, const bool isReadWrite, const unsigned Attributes, const unsigned AttributesAsWritten, TypeSourceInfo *TInfo, tok::ObjCKeywordKind MethodImplKind, DeclContext *lexicalDC) argument
1728 unsigned Attributes = Property->getPropertyAttributes(); local
2013 CheckObjCPropertyAttributes(Decl *PDecl, SourceLocation Loc, unsigned &Attributes, bool propertyInPrimaryClass) argument
[all...]
H A DSemaOpenMP.cpp54 OpenMPClauseKind Attributes; member in struct:__anon3436::DSAStackTy::DSAInfo
160 DVar.CKind = Iter->SharingMap[D].Attributes;
225 Stack[0].SharingMap[D].Attributes = A;
229 Stack.back().SharingMap[D].Attributes = A;
331 DVar.CKind = Stack.back().SharingMap[D].Attributes;
H A DSemaCodeComplete.cpp4692 static bool ObjCPropertyFlagConflicts(unsigned Attributes, unsigned NewFlag) { argument
4694 if (Attributes & NewFlag)
4697 Attributes |= NewFlag;
4700 if ((Attributes & ObjCDeclSpec::DQ_PR_readonly) &&
4701 (Attributes & ObjCDeclSpec::DQ_PR_readwrite))
4705 unsigned AssignCopyRetMask = Attributes & (ObjCDeclSpec::DQ_PR_assign |
4727 unsigned Attributes = ODS.getPropertyAttributes(); local
4733 if (!ObjCPropertyFlagConflicts(Attributes, ObjCDeclSpec::DQ_PR_readonly))
4735 if (!ObjCPropertyFlagConflicts(Attributes, ObjCDeclSpec::DQ_PR_assign))
4737 if (!ObjCPropertyFlagConflicts(Attributes,
[all...]
/freebsd-10.3-release/contrib/llvm/tools/clang/lib/Basic/
H A DBuiltins.cpp52 strchr(BuiltinInfo.Attributes, 'f');
79 if (!LangOpts.NoBuiltin || !strchr(TSRecords[i].Attributes, 'f'))
87 if (!strchr(BuiltinInfo[i].Attributes, 'f'))
92 if (!strchr(TSRecords[i].Attributes, 'f'))
103 const char *Printf = strpbrk(GetRecord(ID).Attributes, "pP");
122 const char *Scanf = strpbrk(GetRecord(ID).Attributes, "sS");
/freebsd-10.3-release/contrib/llvm/tools/lldb/source/Plugins/SymbolFile/DWARF/
H A DDWARFAbbreviationDeclaration.cpp102 const DWARFAttribute::collection& attributes = abbr_decl.Attributes();
152 const DWARFAttribute::collection& attributes = abbr_decl.Attributes();
193 && Attributes() == rhs.Attributes();
H A DDWARFDebugInfoEntry.h60 class Attributes class in class:DWARFDebugInfoEntry
63 Attributes();
64 ~Attributes();
166 DWARFDebugInfoEntry::Attributes& attrs,
253 const DWARFDebugInfoEntry::Attributes& attributes,
390 const DWARFDebugInfoEntry::Attributes& attributes) const;
H A DDWARFAbbreviationDeclaration.h72 // DWARFAttribute::collection& Attributes() { return m_attributes; }
73 const DWARFAttribute::collection& Attributes() const { return m_attributes; } function in class:DWARFAbbreviationDeclaration
H A DDWARFDebugInfoEntry.cpp39 DWARFDebugInfoEntry::Attributes::Attributes() : function in class:DWARFDebugInfoEntry::Attributes
44 DWARFDebugInfoEntry::Attributes::~Attributes()
50 DWARFDebugInfoEntry::Attributes::FindAttributeIndex(dw_attr_t attr) const
64 DWARFDebugInfoEntry::Attributes::Append(const DWARFCompileUnit *cu, dw_offset_t attr_die_offset, dw_attr_t attr, dw_form_t form)
71 DWARFDebugInfoEntry::Attributes::ContainsAttribute(dw_attr_t attr) const
77 DWARFDebugInfoEntry::Attributes::RemoveAttribute(dw_attr_t attr)
89 DWARFDebugInfoEntry::Attributes::ExtractFormValueAtIndex (SymbolFileDWARF* dwarf2Data, uint32_t i, DWARFFormValue &form_value) const
97 DWARFDebugInfoEntry::Attributes
[all...]
H A DDWARFDebugPubnames.cpp104 DWARFDebugInfoEntry::Attributes attributes;
H A DDWARFCompileUnit.cpp635 DWARFDebugInfoEntry::Attributes attributes;
H A DSymbolFileDWARF.cpp1420 DWARFDebugInfoEntry::Attributes attributes;
1727 DWARFDebugInfoEntry::Attributes attributes;
2136 DWARFDebugInfoEntry::Attributes attributes;
2407 DWARFDebugInfoEntry::Attributes attributes;
3499 DWARFDebugInfoEntry::Attributes attributes;
4223 DWARFDebugInfoEntry::Attributes attributes;
4393 DWARFDebugInfoEntry::Attributes attributes;
4473 DWARFDebugInfoEntry::Attributes attributes;
5727 DWARFDebugInfoEntry::Attributes attributes;
7331 DWARFDebugInfoEntry::Attributes attribute
[all...]
/freebsd-10.3-release/lib/clang/libllvmcore/
H A DMakefile9 Attributes.cpp \
/freebsd-10.3-release/sys/boot/efi/include/
H A Defipciio.h110 /// Set the PCI controller's current attributes to Attributes.
114 /// Enable the attributes specified by the bits that are set in Attributes for this PCI controller.
118 /// Disable the attributes specified by the bits that are set in Attributes for this PCI controller.
342 @param Attributes The requested bit mask of attributes for the allocated range.
345 @retval EFI_UNSUPPORTED Attributes is unsupported. The only legal attribute bits are
359 IN UINT64 Attributes
429 @param Attributes The mask of attributes that are used for Set, Enable, and Disable
437 Attributes are not supported by this PCI controller or one of
446 IN UINT64 Attributes,
466 @retval EFI_INVALID_PARAMETER Both Supports and Attributes ar
535 EFI_PCI_IO_PROTOCOL_ATTRIBUTES Attributes; member in struct:_EFI_PCI_IO_PROTOCOL
[all...]
H A Defiapi.h233 OUT UINT32 *Attributes OPTIONAL,
252 IN UINT32 Attributes,
573 IN UINT32 Attributes
588 UINT32 Attributes; member in struct:__anon6459
H A Defiprot.h188 IN UINT64 Attributes
/freebsd-10.3-release/contrib/llvm/tools/clang/include/clang/AST/
H A DComment.h436 ArrayRef<Attribute> Attributes; member in class:clang::comments::HTMLStartTagComment
458 return Attributes.size();
462 return Attributes[Idx];
466 Attributes = Attrs;
/freebsd-10.3-release/contrib/llvm/tools/clang/lib/Lex/
H A DModuleMap.cpp820 struct Attributes { struct in namespace:clang
821 Attributes() : IsSystem(), IsExhaustive() { } function in struct:clang::Attributes
885 bool parseOptionalAttributes(Attributes &Attrs);
1203 Attributes Attrs;
1759 Attributes Attrs;
1904 Attributes Attrs;
2006 bool ModuleMapParser::parseOptionalAttributes(Attributes &Attrs) {
/freebsd-10.3-release/contrib/less/
H A Dscreen.c1652 fillchar.Attributes = curr_attr;
1708 fillchar.Attributes = curr_attr;
1794 fillchar.Attributes = MAKEATTR(nm_fg_color, nm_bg_color);
1797 SetConsoleTextAttribute(con_out, fillchar.Attributes);
1806 FillConsoleOutputAttribute(con_out, fillchar.Attributes, size, topleft,
/freebsd-10.3-release/contrib/llvm/tools/clang/lib/Parse/
H A DParseDeclCXX.cpp1125 ParsedAttributesWithRange &Attributes) {
1324 MaybeParseCXX11Attributes(Attributes);
1400 SourceRange AttrRange = Attributes.Range;
1410 attrs.takeAllFrom(Attributes);
1712 ParsedAttributesWithRange Attributes(AttrFactory);
1713 MaybeParseCXX11Attributes(Attributes);
1721 CheckMisplacedCXX11Attribute(Attributes, StartLoc);
1728 CheckMisplacedCXX11Attribute(Attributes, StartLoc);
1743 CheckMisplacedCXX11Attribute(Attributes, StartLoc);
1764 return Actions.ActOnBaseSpecifier(ClassDecl, Range, Attributes, IsVirtua
1120 ParseClassSpecifier(tok::TokenKind TagTokKind, SourceLocation StartLoc, DeclSpec &DS, const ParsedTemplateInfo &TemplateInfo, AccessSpecifier AS, bool EnteringContext, DeclSpecContext DSC, ParsedAttributesWithRange &Attributes) argument
[all...]
H A DParseStmt.cpp2645 ParsedAttributesWithRange Attributes(AttrFactory);
2646 MaybeParseCXX11Attributes(Attributes);
2649 DS.takeAttributesFrom(Attributes);
/freebsd-10.3-release/contrib/gdb/gdb/
H A Dwin32-nat.c1552 new_priv.Privileges[0].Attributes = enable ? SE_PRIVILEGE_ENABLED : 0;
1567 ret = orig_priv.Privileges[0].Attributes == SE_PRIVILEGE_ENABLED ? 1 : 0;
/freebsd-10.3-release/contrib/llvm/tools/clang/lib/Rewrite/Frontend/
H A DRewriteObjC.cpp791 unsigned Attributes = PD->getPropertyAttributes(); local
793 bool GenGetProperty = !(Attributes & ObjCPropertyDecl::OBJC_PR_nonatomic) &&
794 (Attributes & (ObjCPropertyDecl::OBJC_PR_retain |
852 bool GenSetProperty = Attributes & (ObjCPropertyDecl::OBJC_PR_retain |
872 if (Attributes & ObjCPropertyDecl::OBJC_PR_nonatomic)
876 if (Attributes & ObjCPropertyDecl::OBJC_PR_copy)

Completed in 189 milliseconds

12