Home
last modified time | relevance | path

Searched refs:ScopeName (Results 1 – 7 of 7) sorted by relevance

/freebsd-10-stable/contrib/llvm/tools/clang/lib/Sema/
DAttributeList.cpp117 const IdentifierInfo *ScopeName, in getKind() argument
127 if (ScopeName) in getKind()
128 Buf += ScopeName->getName(); in getKind()
131 if (ScopeName || SyntaxUsed == AS_CXX11) in getKind()
142 StringRef Scope = ScopeName ? ScopeName->getName() : ""; in getAttributeSpellingListIndex()
/freebsd-10-stable/sys/contrib/dev/acpica/components/namespace/
Dnssearch.c113 char *ScopeName; in AcpiNsSearchOneScope() local
115 ScopeName = AcpiNsGetNormalizedPathname (ParentNode, TRUE); in AcpiNsSearchOneScope()
116 if (ScopeName) in AcpiNsSearchOneScope()
120 ScopeName, ParentNode, ACPI_CAST_PTR (char, &TargetName), in AcpiNsSearchOneScope()
123 ACPI_FREE (ScopeName); in AcpiNsSearchOneScope()
Dnsinit.c696 char *ScopeName = AcpiNsGetNormalizedPathname (DeviceNode, TRUE); in AcpiNsInitOneDevice() local
699 ScopeName)); in AcpiNsInitOneDevice()
700 ACPI_FREE (ScopeName); in AcpiNsInitOneDevice()
/freebsd-10-stable/contrib/llvm/tools/clang/include/clang/Sema/
DAttributeList.h87 IdentifierInfo *ScopeName; variable
216 : AttrName(attrName), ScopeName(scopeName), AttrRange(attrRange), in AttributeList()
234 : AttrName(attrName), ScopeName(scopeName), AttrRange(attrRange), in AttributeList()
253 : AttrName(attrName), ScopeName(scopeName), AttrRange(attrRange), in AttributeList()
271 : AttrName(attrName), ScopeName(scopeName), AttrRange(attrRange), in AttributeList()
285 : AttrName(attrName), ScopeName(scopeName), AttrRange(attrRange), in AttributeList()
310 bool hasScope() const { return ScopeName; } in hasScope()
311 IdentifierInfo *getScopeName() const { return ScopeName; } in getScopeName()
/freebsd-10-stable/contrib/llvm/tools/clang/lib/Parse/
DParseDeclCXX.cpp3182 IdentifierInfo *ScopeName) { in IsBuiltInOrStandardCXX11Attribute() argument
3183 switch (AttributeList::getKind(AttrName, ScopeName, in IsBuiltInOrStandardCXX11Attribute()
3260 IdentifierInfo *ScopeName = 0, *AttrName = 0; in ParseCXX11AttributeSpecifier() local
3271 ScopeName = AttrName; in ParseCXX11AttributeSpecifier()
3282 bool StandardAttr = IsBuiltInOrStandardCXX11Attribute(AttrName,ScopeName); in ParseCXX11AttributeSpecifier()
3292 if (ScopeName && ScopeName->getName() == "gnu") { in ParseCXX11AttributeSpecifier()
3294 ScopeName, ScopeLoc, AttributeList::AS_CXX11); in ParseCXX11AttributeSpecifier()
3311 ScopeName, ScopeLoc, 0, 0, AttributeList::AS_CXX11); in ParseCXX11AttributeSpecifier()
DParseDecl.cpp246 IdentifierInfo *ScopeName, in ParseGNUAttributeArgs() argument
253 AttributeList::getKind(AttrName, ScopeName, Syntax); in ParseGNUAttributeArgs()
323 Attrs.addNew(AttrName, SourceRange(AttrLoc, RParen), ScopeName, ScopeLoc, in ParseGNUAttributeArgs()
/freebsd-10-stable/contrib/llvm/tools/clang/include/clang/Parse/
DParser.h1932 IdentifierInfo *ScopeName,