Searched defs:Attributes (Results 1 - 25 of 33) sorted by relevance

12

/external/llvm/bindings/python/llvm/
H A Denumerations.py22 'Attributes',
33 Attributes = [ variable
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/asn1/cms/
H A DAttributes.java20 * Attributes ::=
24 public class Attributes class in inherits:ASN1Object
29 private Attributes(ASN1Set set) method in class:Attributes
34 public Attributes(ASN1EncodableVector v) method in class:Attributes
45 * <li> {@link Attributes} object
46 * <li> {@link org.bouncycastle.asn1.ASN1Set#getInstance(java.lang.Object) ASN1Set} input formats with Attributes structure inside
52 public static Attributes getInstance(Object obj)
54 if (obj instanceof Attributes)
56 return (Attributes)obj;
60 return new Attributes(ASN1Se
[all...]
/external/gptfdisk/
H A Dattributes.h15 class Attributes { class
23 Attributes(void);
24 Attributes(const uint64_t a);
25 ~Attributes(void);
37 }; // class Attributes
39 ostream & operator<<(ostream & os, const Attributes & data);
H A Dattributes.cc22 string Attributes::atNames[NUM_ATR];
23 int Attributes::numAttrs = 0;
24 //Attributes::staticInit Attributes::staticInitializer;
27 Attributes::Attributes(void) { function in class:Attributes
35 Attributes::Attributes(const uint64_t a) { function in class:Attributes
43 Attributes::~Attributes(voi
[all...]
/external/jetty/src/java/org/eclipse/jetty/util/
H A DAttributes.java24 /** Attributes.
29 public interface Attributes interface
/external/lldb/source/Plugins/SymbolFile/DWARF/
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 DDWARFAbbreviationDeclaration.h72 // DWARFAttribute::collection& Attributes() { return m_attributes; }
73 const DWARFAttribute::collection& Attributes() const { return m_attributes; } function in class:DWARFAbbreviationDeclaration
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;
/external/icu/icu4c/source/i18n/unicode/
H A Dtblcoll.h813 enum Attributes { enum in class:RuleBasedCollator
/external/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') != nullptr;
102 return strchr(GetRecord(ID).Attributes, 'n') != nullptr;
107 return strchr(GetRecord(ID).Attributes, 'r') != nullptr;
112 return strchr(GetRecord(ID).Attributes, 'j') != nullptr;
118 return strchr(GetRecord(ID).Attributes, 'u') != nullptr;
124 return strchr(GetRecord(ID).Attributes, 'F') != nullptr;
131 return strchr(GetRecord(ID).Attributes, '
[all...]
/external/clang/include/clang/Lex/
H A DModuleMap.h131 struct Attributes { struct in class:clang::ModuleMap
132 Attributes() : IsSystem(), IsExternC(), IsExhaustive() {} function in struct:clang::ModuleMap::Attributes
152 Attributes Attrs;
233 Attributes Attrs, Module *Parent);
/external/llvm/lib/IR/
H A DDebugInfoMetadata.cpp532 MDString *GetterName, MDString *SetterName, unsigned Attributes,
539 getString(SetterName), Attributes, Type));
541 DEFINE_GETIMPL_STORE(MDObjCProperty, (Line, Attributes), Ops);
530 getImpl( LLVMContext &Context, MDString *Name, Metadata *File, unsigned Line, MDString *GetterName, MDString *SetterName, unsigned Attributes, Metadata *Type, StorageType Storage, bool ShouldCreate) argument
H A DLLVMContextImpl.h780 unsigned Attributes; member in struct:llvm::MDNodeKeyImpl
784 StringRef GetterName, StringRef SetterName, unsigned Attributes,
787 SetterName(SetterName), Attributes(Attributes), Type(Type) {}
791 Attributes(N->getAttributes()), Type(N->getRawType()) {}
797 Attributes == RHS->getAttributes() && Type == RHS->getRawType();
800 return hash_combine(Name, File, Line, GetterName, SetterName, Attributes,
783 MDNodeKeyImpl(StringRef Name, Metadata *File, unsigned Line, StringRef GetterName, StringRef SetterName, unsigned Attributes, Metadata *Type) argument
/external/clang/include/clang/AST/
H A DComment.h457 ArrayRef<Attribute> Attributes; member in class:clang::comments::HTMLStartTagComment
479 return Attributes.size();
483 return Attributes[Idx];
487 Attributes = Attrs;
/external/clang/lib/Lex/
H A DModuleMap.cpp603 Attributes Attrs;
610 Attributes Attrs, Module *Parent) {
1060 typedef ModuleMap::Attributes Attributes; typedef in class:clang::ModuleMapParser
1061 bool parseOptionalAttributes(Attributes &Attrs);
1395 Attributes Attrs;
1977 Attributes Attrs;
2125 Attributes Attrs;
2230 bool ModuleMapParser::parseOptionalAttributes(Attributes &Attrs) {
/external/clang/lib/Parse/
H A DParseDeclCXX.cpp18 #include "clang/Basic/Attributes.h"
1195 ParsedAttributesWithRange &Attributes) {
1433 MaybeParseCXX11Attributes(Attributes);
1511 SourceRange AttrRange = Attributes.Range;
1521 attrs.takeAllFrom(Attributes);
1828 ParsedAttributesWithRange Attributes(AttrFactory);
1829 MaybeParseCXX11Attributes(Attributes);
1835 CheckMisplacedCXX11Attribute(Attributes, StartLoc);
1842 CheckMisplacedCXX11Attribute(Attributes, StartLoc);
1857 CheckMisplacedCXX11Attribute(Attributes, StartLo
1190 ParseClassSpecifier(tok::TokenKind TagTokKind, SourceLocation StartLoc, DeclSpec &DS, const ParsedTemplateInfo &TemplateInfo, AccessSpecifier AS, bool EnteringContext, DeclSpecContext DSC, ParsedAttributesWithRange &Attributes) argument
[all...]
/external/clang/lib/Sema/
H A DSemaObjCProperty.cpp148 unsigned Attributes = ODS.getPropertyAttributes(); local
151 Attributes |= deduceWeakPropertyFromType(*this, T);
153 bool isReadWrite = ((Attributes & ObjCDeclSpec::DQ_PR_readwrite) ||
155 !(Attributes & ObjCDeclSpec::DQ_PR_readonly));
158 bool isAssign = ((Attributes & ObjCDeclSpec::DQ_PR_assign) ||
160 !(Attributes & ObjCDeclSpec::DQ_PR_retain) &&
161 !(Attributes & ObjCDeclSpec::DQ_PR_strong) &&
162 !(Attributes & ObjCDeclSpec::DQ_PR_copy) &&
163 !(Attributes & ObjCDeclSpec::DQ_PR_unsafe_unretained) &&
164 !(Attributes
245 makePropertyAttributesAsWritten(unsigned Attributes) argument
315 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
523 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
1767 unsigned Attributes = Property->getPropertyAttributes(); local
2116 CheckObjCPropertyAttributes(Decl *PDecl, SourceLocation Loc, unsigned &Attributes, bool propertyInPrimaryClass) argument
[all...]
H A DSemaCodeComplete.cpp4788 static bool ObjCPropertyFlagConflicts(unsigned Attributes, unsigned NewFlag) { argument
4790 if (Attributes & NewFlag)
4793 Attributes |= NewFlag;
4796 if ((Attributes & ObjCDeclSpec::DQ_PR_readonly) &&
4797 (Attributes & ObjCDeclSpec::DQ_PR_readwrite))
4801 unsigned AssignCopyRetMask = Attributes & (ObjCDeclSpec::DQ_PR_assign |
4823 unsigned Attributes = ODS.getPropertyAttributes(); local
4829 if (!ObjCPropertyFlagConflicts(Attributes, ObjCDeclSpec::DQ_PR_readonly))
4831 if (!ObjCPropertyFlagConflicts(Attributes, ObjCDeclSpec::DQ_PR_assign))
4833 if (!ObjCPropertyFlagConflicts(Attributes,
[all...]
H A DSemaOpenMP.cpp80 OpenMPClauseKind Attributes; member in struct:__anon1198::DSAStackTy::DSAInfo
277 DVar.CKind = Iter->SharingMap[D].Attributes;
362 Stack[0].SharingMap[D].Attributes = A;
366 Stack.back().SharingMap[D].Attributes = A;
477 DVar.CKind = I->SharingMap[D].Attributes;
/external/llvm/unittests/IR/
H A DMetadataTest.cpp1914 unsigned Attributes = 7; local
1918 SetterName, Attributes, Type);
1926 EXPECT_EQ(Attributes, N->getAttributes());
1929 SetterName, Attributes, Type));
1932 SetterName, Attributes, Type));
1934 SetterName, Attributes, Type));
1936 SetterName, Attributes, Type));
1938 SetterName, Attributes, Type));
1940 "other", Attributes, Type));
1942 SetterName, Attributes
[all...]
/external/llvm/include/llvm/IR/
H A DDebugInfoMetadata.h2088 unsigned Attributes; member in class:llvm::MDObjCProperty
2091 unsigned Attributes, ArrayRef<Metadata *> Ops)
2094 Line(Line), Attributes(Attributes) {}
2099 StringRef GetterName, StringRef SetterName, unsigned Attributes,
2103 getCanonicalMDString(Context, SetterName), Attributes, Type,
2109 unsigned Attributes, Metadata *Type,
2122 unsigned Attributes, MDType *Type),
2123 (Name, File, Line, GetterName, SetterName, Attributes,
2128 unsigned Attributes, Metadat
2090 MDObjCProperty(LLVMContext &C, StorageType Storage, unsigned Line, unsigned Attributes, ArrayRef<Metadata *> Ops) argument
2098 getImpl(LLVMContext &Context, StringRef Name, MDFile *File, unsigned Line, StringRef GetterName, StringRef SetterName, unsigned Attributes, MDType *Type, StorageType Storage, bool ShouldCreate = true) argument
[all...]
/external/llvm/include/llvm/Object/
H A DCOFF.h195 // dumpbin reports this field as "Characteristics" instead of "Attributes".
196 support::ulittle32_t Attributes; member in struct:llvm::object::delay_import_directory_table_entry
/external/llvm/tools/dsymutil/
H A DDwarfLinker.cpp719 const std::vector<std::pair<DIEInteger *, int64_t>> &Attributes = local
722 if (Attributes.empty())
738 for (const auto &Attr : Attributes) {
1099 /// clone*Attributes helpers about the attributes of a particular DIE.
/external/v8/tools/
H A Dgrokdump.py979 # Instance Attributes
1243 def Attributes(self, value): member in class:DescriptorArray
1264 self.Attributes(value),
/external/clang/lib/Frontend/Rewrite/
H A DRewriteObjC.cpp789 unsigned Attributes = PD->getPropertyAttributes(); local
791 bool GenGetProperty = !(Attributes & ObjCPropertyDecl::OBJC_PR_nonatomic) &&
792 (Attributes & (ObjCPropertyDecl::OBJC_PR_retain |
851 bool GenSetProperty = Attributes & (ObjCPropertyDecl::OBJC_PR_retain |
871 if (Attributes & ObjCPropertyDecl::OBJC_PR_nonatomic)
875 if (Attributes & ObjCPropertyDecl::OBJC_PR_copy)

Completed in 806 milliseconds

12