Searched defs:AttributeList (Results 1 - 9 of 9) sorted by relevance

/external/clang/include/clang/Sema/
H A DAttributeList.h1 //===--- AttributeList.h - Parsed attribute sets ----------------*- C++ -*-===//
10 // This file defines the AttributeList class, which is used to collect
47 /// AttributeList - Represents GCC's __attribute__ declaration. There are
55 class AttributeList { // TODO: This should really be called ParsedAttribute class in namespace:clang
104 AttributeList *NextInPosition;
107 AttributeList *NextInPool;
143 AttributeList(const AttributeList &); // DO NOT IMPLEMENT
144 void operator=(const AttributeList &); // DO NOT IMPLEMENT
146 ~AttributeList(); // D
151 AttributeList(IdentifierInfo *attrName, SourceRange attrRange, function in class:clang::AttributeList
166 AttributeList(IdentifierInfo *attrName, SourceRange attrRange, function in class:clang::AttributeList
189 AttributeList(IdentifierInfo *attrName, SourceRange attrRange, function in class:clang::AttributeList
[all...]
/external/llvm/include/llvm/
H A DFunction.h88 AttrListPtr AttributeList; ///< Parameter attributes member in class:llvm::Function
165 const AttrListPtr &getAttributes() const { return AttributeList; }
169 void setAttributes(const AttrListPtr &attrs) { AttributeList = attrs; }
174 return AttributeList.paramHasAttr(~0U, N);
200 return AttributeList.paramHasAttr(i, attr);
211 return AttributeList.getParamAlignment(i);
H A DInstructions.h1160 AttrListPtr AttributeList; ///< parameter attributes for call member in class:llvm::CallInst
1258 const AttrListPtr &getAttributes() const { return AttributeList; }
1262 void setAttributes(const AttrListPtr &Attrs) { AttributeList = Attrs; }
1280 return AttributeList.getParamAlignment(i);
1340 return AttributeList.hasAttrSomewhere(Attribute::ByVal);
2959 AttrListPtr AttributeList; member in class:llvm::InvokeInst
3020 const AttrListPtr &getAttributes() const { return AttributeList; }
3024 void setAttributes(const AttrListPtr &Attrs) { AttributeList = Attrs; }
3042 return AttributeList.getParamAlignment(i);
3093 return AttributeList
[all...]
/external/llvm/lib/VMCore/
H A DModule.cpp141 AttrListPtr AttributeList) {
148 New->setAttributes(AttributeList);
174 AttrListPtr AttributeList) {
180 New->setAttributes(AttributeList);
200 AttrListPtr AttributeList,
215 AttributeList);
139 getOrInsertFunction(StringRef Name, FunctionType *Ty, AttrListPtr AttributeList) argument
172 getOrInsertTargetIntrinsic(StringRef Name, FunctionType *Ty, AttrListPtr AttributeList) argument
199 getOrInsertFunction(StringRef Name, AttrListPtr AttributeList, Type *RetTy, ...) argument
/external/webkit/Source/WebCore/html/parser/
H A DHTMLToken.h62 typedef WTF::Vector<Attribute, 10> AttributeList; typedef in class:WebCore::HTMLToken
246 const AttributeList& attributes() const
375 AttributeList m_attributes;
498 void initializeAttributes(const HTMLToken::AttributeList& attributes);
535 inline void AtomicHTMLToken::initializeAttributes(const HTMLToken::AttributeList& attributes)
/external/clang/test/Index/
H A Drecursive-cxx-member-calls.cpp12 class AttributeList { class in namespace:clang
100 AttributeList::Kind AttributeList::getKind(const IdentifierInfo * Name) {
105 return llvm::StringSwitch < AttributeList::Kind > (AttrName)
251 // CHECK-tokens: Keyword: "class" [12:3 - 12:8] ClassDecl=AttributeList:12:9 (Definition)
252 // CHECK-tokens: Identifier: "AttributeList" [12:9 - 12:22] ClassDecl=AttributeList:12:9 (Definition)
253 // CHECK-tokens: Punctuation: "{" [12:23 - 12:24] ClassDecl=AttributeList:12:9 (Definition)
399 // CHECK-tokens: Punctuation: ";" [32:6 - 32:7] ClassDecl=AttributeList:12:9 (Definition)
400 // CHECK-tokens: Keyword: "static" [33:5 - 33:11] ClassDecl=AttributeList
[all...]
/external/clang/lib/CodeGen/
H A DCGCall.cpp2125 CodeGen::AttributeListType AttributeList; local
2126 CGM.ConstructAttributeList(CallInfo, TargetDecl, AttributeList, CallingConv);
2127 llvm::AttrListPtr Attrs = llvm::AttrListPtr::get(AttributeList);
H A DCodeGenModule.cpp530 AttributeListType AttributeList; local
531 ConstructAttributeList(Info, D, AttributeList, CallingConv);
532 F->setAttributes(llvm::AttrListPtr::get(AttributeList));
/external/antlr/antlr-3.4/lib/
H A Dantlr-3.4-complete.jarMETA-INF/ META-INF/MANIFEST.MF org/ org/antlr/ org/antlr/analysis/ org/antlr/codegen/ org/ ...

Completed in 1768 milliseconds