Searched defs:AttrName (Results 1 - 12 of 12) sorted by relevance

/external/chromium-trace/catapult/third_party/gsutil/third_party/boto/boto/ec2/
H A Dsnapshot.py31 AttrName = 'createVolumePermission' variable in class:Snapshot
102 self.AttrName,
109 self.AttrName,
117 self.AttrName,
126 self.AttrName,
/external/llvm/lib/Target/AMDGPU/
H A DAMDGPUAnnotateKernelFeatures.cpp27 void addAttrToCallers(Function *Intrin, StringRef AttrName);
59 StringRef AttrName) {
68 CallingFunction->addFnAttr(AttrName);
58 addAttrToCallers(Function *Intrin, StringRef AttrName) argument
/external/clang/lib/Sema/
H A DAttributeList.cpp112 static StringRef normalizeAttrName(StringRef AttrName, StringRef ScopeName, argument
118 if (IsGNU && AttrName.size() >= 4 && AttrName.startswith("__") &&
119 AttrName.endswith("__"))
120 AttrName = AttrName.slice(2, AttrName.size() - 2);
122 return AttrName;
128 StringRef AttrName = Name->getName(); local
134 AttrName
[all...]
H A DSemaDeclAttr.cpp1350 static bool normalizeName(StringRef &AttrName) { argument
1351 if (AttrName.size() > 4 && AttrName.startswith("__") &&
1352 AttrName.endswith("__")) {
1353 AttrName = AttrName.drop_front(2).drop_back(2);
4865 StringRef AttrName = Attr.getName()->getName(); local
4866 normalizeName(AttrName);
4868 llvm::StringSwitch<std::string>(AttrName)
/external/clang/unittests/AST/
H A DCommentParser.cpp388 StringRef AttrName,
404 if (ActualName != AttrName)
407 "expected \"" << AttrName.str() << "\"";
384 HasHTMLStartTagAt(const Comment *C, size_t Idx, HTMLStartTagComment *&HST, StringRef TagName, StringRef AttrName, StringRef AttrValue) argument
/external/clang/test/Index/
H A Drecursive-cxx-member-calls.cpp101 llvm::StringRef AttrName = Name->getName(); local
102 if (AttrName.startswith("__") && AttrName.endswith("__"))
103 AttrName = AttrName.substr(2, AttrName.size() - 4);
105 return llvm::StringSwitch < AttributeList::Kind > (AttrName)
909 // CHECK-tokens: Punctuation: "::" [101:7 - 101:9] VarDecl=AttrName:101:19 (Definition)
911 // CHECK-tokens: Identifier: "AttrName" [101:19 - 101:27] VarDecl=AttrName
[all...]
/external/clang/utils/TableGen/
H A DClangAttrEmitter.cpp105 static StringRef NormalizeAttrName(StringRef AttrName) { argument
106 if (AttrName.startswith("__"))
107 AttrName = AttrName.substr(2, AttrName.size());
109 if (AttrName.endswith("__"))
110 AttrName = AttrName.substr(0, AttrName.size() - 2);
112 return AttrName;
[all...]
/external/clang/include/clang/Sema/
H A DAttributeList.h91 IdentifierInfo *AttrName; member in class:clang::AttributeList
219 : AttrName(attrName), ScopeName(scopeName), AttrRange(attrRange),
237 : AttrName(attrName), ScopeName(scopeName), AttrRange(attrRange),
258 : AttrName(attrName), ScopeName(scopeName), AttrRange(attrRange),
276 : AttrName(attrName), ScopeName(scopeName), AttrRange(attrRange),
294 : AttrName(attrName), ScopeName(scopeName), AttrRange(attrRange),
308 : AttrName(attrName), ScopeName(scopeName), AttrRange(attrRange),
329 IdentifierInfo *getName() const { return AttrName; }
/external/clang/lib/Parse/
H A DParseDeclCXX.cpp1072 IdentifierInfo *AttrName = Tok.getIdentifierInfo(); local
1074 attrs.addNew(AttrName, AttrNameLoc, nullptr, AttrNameLoc, nullptr, 0,
3623 static bool IsBuiltInOrStandardCXX11Attribute(IdentifierInfo *AttrName, argument
3625 switch (AttributeList::getKind(AttrName, ScopeName,
3652 bool Parser::ParseCXX11AttributeArgs(IdentifierInfo *AttrName, argument
3663 if (!hasAttribute(AttrSyntax::CXX, ScopeName, AttrName,
3674 ParseGNUAttributeArgs(AttrName, AttrNameLoc, Attrs, EndLoc, ScopeName,
3678 ParseAttributeArgsCommon(AttrName, AttrNameLoc, Attrs, EndLoc,
3682 if (Attr && IsBuiltInOrStandardCXX11Attribute(AttrName, ScopeName)) {
3690 Diag(LParenLoc, diag::err_attribute_requires_arguments) << AttrName;
3752 IdentifierInfo *ScopeName = nullptr, *AttrName = nullptr; local
[all...]
H A DParseObjc.cpp888 SourceLocation AttrName = ConsumeToken(); // consume last attribute name local
985 Diag(AttrName, diag::err_objc_expected_property_attr) << II;
H A DParseDecl.cpp149 IdentifierInfo *AttrName = Tok.getIdentifierInfo(); local
150 if (!AttrName)
156 attrs.addNew(AttrName, AttrNameLoc, nullptr, AttrNameLoc, nullptr, 0,
162 if (!LateAttrs || !isAttributeLateParsed(*AttrName)) {
163 ParseGNUAttributeArgs(AttrName, AttrNameLoc, attrs, endLoc, nullptr,
170 new LateParsedAttribute(this, *AttrName, AttrNameLoc);
241 void Parser::ParseAttributeWithTypeArg(IdentifierInfo &AttrName, argument
262 Attrs.addNewTypeAttr(&AttrName,
266 Attrs.addNew(&AttrName, SourceRange(AttrNameLoc, Parens.getCloseLocation()),
271 IdentifierInfo *AttrName, SourceLocatio
270 ParseAttributeArgsCommon( IdentifierInfo *AttrName, SourceLocation AttrNameLoc, ParsedAttributes &Attrs, SourceLocation *EndLoc, IdentifierInfo *ScopeName, SourceLocation ScopeLoc, AttributeList::Syntax Syntax) argument
334 ParseGNUAttributeArgs(IdentifierInfo *AttrName, SourceLocation AttrNameLoc, ParsedAttributes &Attrs, SourceLocation *EndLoc, IdentifierInfo *ScopeName, SourceLocation ScopeLoc, AttributeList::Syntax Syntax, Declarator *D) argument
385 ParseMicrosoftDeclSpecArgs(IdentifierInfo *AttrName, SourceLocation AttrNameLoc, ParsedAttributes &Attrs) argument
563 IdentifierInfo *AttrName; local
615 IdentifierInfo *AttrName = Tok.getIdentifierInfo(); local
666 IdentifierInfo *AttrName = Tok.getIdentifierInfo(); local
676 IdentifierInfo *AttrName = Tok.getIdentifierInfo(); local
684 IdentifierInfo *AttrName = Tok.getIdentifierInfo(); local
697 IdentifierInfo *AttrName = Tok.getIdentifierInfo(); local
1259 ParseTypeTagForDatatypeAttribute(IdentifierInfo &AttrName, SourceLocation AttrNameLoc, ParsedAttributes &Attrs, SourceLocation *EndLoc, IdentifierInfo *ScopeName, SourceLocation ScopeLoc, AttributeList::Syntax Syntax) argument
3055 IdentifierInfo *AttrName = Tok.getIdentifierInfo(); local
[all...]
/external/clang/include/clang/Parse/
H A DParser.h933 IdentifierInfo &AttrName; member in struct:clang::Parser::LateParsedAttribute
939 : Self(P), AttrName(Name), AttrNameLoc(Loc) {}
2089 ParseAttributeArgsCommon(IdentifierInfo *AttrName, SourceLocation AttrNameLoc,
2113 void ParseGNUAttributeArgs(IdentifierInfo *AttrName,
2153 bool ParseCXX11AttributeArgs(IdentifierInfo *AttrName,
2176 bool ParseMicrosoftDeclSpecArgs(IdentifierInfo *AttrName,
2205 void ParseTypeTagForDatatypeAttribute(IdentifierInfo &AttrName,
2213 void ParseAttributeWithTypeArg(IdentifierInfo &AttrName,

Completed in 408 milliseconds