/netbsd-src/external/apache2/llvm/dist/clang/lib/Basic/ |
H A D | Attributes.cpp | 17 StringRef ScopeName = Scope ? Scope->getName() : ""; in hasAttribute() local 18 if (ScopeName == "__gnu__") in hasAttribute() 19 ScopeName = "gnu"; in hasAttribute() 20 else if (ScopeName == "_Clang") in hasAttribute() 21 ScopeName = "clang"; in hasAttribute() 46 StringRef ScopeName = Scope->getName(); in normalizeAttrScopeName() local 49 if (ScopeName == "__gnu__") in normalizeAttrScopeName() 50 ScopeName = "gnu"; in normalizeAttrScopeName() 51 else if (ScopeName == "_Clang") in normalizeAttrScopeName() 52 ScopeName = "clang"; in normalizeAttrScopeName() [all …]
|
/netbsd-src/external/apache2/llvm/dist/clang/include/clang/Basic/ |
H A D | AttributeCommonInfo.h | 63 const IdentifierInfo *ScopeName = nullptr; variable 85 const IdentifierInfo *ScopeName, SourceRange AttrRange, in AttributeCommonInfo() argument 87 : AttrName(AttrName), ScopeName(ScopeName), AttrRange(AttrRange), in AttributeCommonInfo() 89 AttrKind(getParsedKind(AttrName, ScopeName, SyntaxUsed)), in AttributeCommonInfo() 93 const IdentifierInfo *ScopeName, SourceRange AttrRange, in AttributeCommonInfo() argument 95 : AttrName(AttrName), ScopeName(ScopeName), AttrRange(AttrRange), in AttributeCommonInfo() 100 const IdentifierInfo *ScopeName, SourceRange AttrRange, in AttributeCommonInfo() argument 103 : AttrName(AttrName), ScopeName(ScopeName), AttrRange(AttrRange), in AttributeCommonInfo() 109 : AttrName(AttrName), ScopeName(nullptr), AttrRange(AttrRange), in AttributeCommonInfo() 110 ScopeLoc(), AttrKind(getParsedKind(AttrName, ScopeName, SyntaxUsed)), in AttributeCommonInfo() [all …]
|
/netbsd-src/external/apache2/llvm/dist/clang/include/clang/Sema/ |
H A D | ParsedAttr.h | 295 IdentifierInfo *scopeName, SourceLocation scopeLoc, in ParsedAttr() argument 298 : AttributeCommonInfo(attrName, scopeName, attrRange, scopeLoc, in ParsedAttr() 311 IdentifierInfo *scopeName, SourceLocation scopeLoc, in ParsedAttr() argument 317 : AttributeCommonInfo(attrName, scopeName, attrRange, scopeLoc, in ParsedAttr() 332 IdentifierInfo *scopeName, SourceLocation scopeLoc, in ParsedAttr() argument 335 : AttributeCommonInfo(attrName, scopeName, attrRange, scopeLoc, in ParsedAttr() 349 IdentifierInfo *scopeName, SourceLocation scopeLoc, in ParsedAttr() argument 352 : AttributeCommonInfo(attrName, scopeName, attrRange, scopeLoc, in ParsedAttr() 368 IdentifierInfo *scopeName, SourceLocation scopeLoc, in ParsedAttr() argument 370 : AttributeCommonInfo(attrName, scopeName, attrRange, scopeLoc, in ParsedAttr() [all …]
|
/netbsd-src/external/mpl/dhcp/bind/dist/lib/isc/ |
H A D | netscope.c | 28 isc_netscope_pton(int af, char *scopename, void *addr, uint32_t *zoneid) { in isc_netscope_pton() argument 57 (ifid = if_nametoindex((const char *)scopename)) != 0) in isc_netscope_pton() 62 llz = strtoull(scopename, &ep, 10); in isc_netscope_pton() 63 if (ep == scopename) { in isc_netscope_pton()
|
/netbsd-src/external/mpl/bind/dist/lib/isc/ |
H A D | netscope.c | 28 isc_netscope_pton(int af, char *scopename, void *addr, uint32_t *zoneid) { in isc_netscope_pton() argument 57 (ifid = if_nametoindex((const char *)scopename)) != 0) in isc_netscope_pton() 62 llz = strtoull(scopename, &ep, 10); in isc_netscope_pton() 63 if (ep == scopename) { in isc_netscope_pton()
|
/netbsd-src/external/apache2/llvm/dist/llvm/lib/Support/ |
H A D | ELFAttributeParser.cpp | 154 StringRef scopeName, indexName; in parseSubsection() local 158 scopeName = "FileAttributes"; in parseSubsection() 161 scopeName = "SectionAttributes"; in parseSubsection() 166 scopeName = "SymbolAttributes"; in parseSubsection() 178 DictScope scope(*sw, scopeName); in parseSubsection()
|
/netbsd-src/external/apache2/llvm/dist/llvm/utils/vscode/llvm/ |
H A D | package.json | 47 "scopeName": "source.tablegen", string 52 "scopeName": "source.llvm", string
|
/netbsd-src/sys/external/bsd/acpica/dist/namespace/ |
H A D | nssearch.c | 113 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()
|
H A D | nsinit.c | 746 char *ScopeName = AcpiNsGetNormalizedPathname (DeviceNode, TRUE); in AcpiNsInitOneDevice() local 749 ScopeName)); in AcpiNsInitOneDevice() 750 ACPI_FREE (ScopeName); in AcpiNsInitOneDevice()
|
/netbsd-src/external/mpl/dhcp/bind/dist/lib/isc/include/isc/ |
H A D | netscope.h | 37 isc_netscope_pton(int af, char *scopename, void *addr, uint32_t *zoneid);
|
/netbsd-src/external/mpl/bind/dist/lib/isc/include/isc/ |
H A D | netscope.h | 36 isc_netscope_pton(int af, char *scopename, void *addr, uint32_t *zoneid);
|
/netbsd-src/external/apache2/llvm/dist/clang/lib/Parse/ |
H A D | ParseDeclCXX.cpp | 4056 IdentifierInfo *ScopeName) { in IsBuiltInOrStandardCXX11Attribute() argument 4058 ParsedAttr::getParsedKind(AttrName, ScopeName, ParsedAttr::AS_CXX11)) { in IsBuiltInOrStandardCXX11Attribute() 4068 return !ScopeName && AttrName->getName().equals("nodiscard"); in IsBuiltInOrStandardCXX11Attribute() 4070 return !ScopeName && AttrName->getName().equals("maybe_unused"); in IsBuiltInOrStandardCXX11Attribute() 4094 IdentifierInfo *ScopeName, in ParseCXX11AttributeArgs() argument 4104 if (!hasAttribute(LO.CPlusPlus ? AttrSyntax::CXX : AttrSyntax::C, ScopeName, in ParseCXX11AttributeArgs() 4112 if (ScopeName && (ScopeName->isStr("gnu") || ScopeName->isStr("__gnu__"))) { in ParseCXX11AttributeArgs() 4115 ParseGNUAttributeArgs(AttrName, AttrNameLoc, Attrs, EndLoc, ScopeName, in ParseCXX11AttributeArgs() 4122 if (ScopeName && (ScopeName->isStr("clang") || ScopeName->isStr("_Clang"))) in ParseCXX11AttributeArgs() 4124 ScopeName, ScopeLoc, Syntax); in ParseCXX11AttributeArgs() [all …]
|
H A D | ParseDecl.cpp | 330 IdentifierInfo *ScopeName, in ParseAttributeWithTypeArg() argument 349 ScopeName, ScopeLoc, T.get(), Syntax); in ParseAttributeWithTypeArg() 352 ScopeName, ScopeLoc, nullptr, 0, Syntax); in ParseAttributeWithTypeArg() 357 ParsedAttributes &Attrs, SourceLocation *EndLoc, IdentifierInfo *ScopeName, in ParseAttributeArgsCommon() argument 375 ParsedAttr::getParsedKind(AttrName, ScopeName, Syntax); in ParseAttributeArgsCommon() 439 ScopeName, ScopeLoc, TheParsedType, Syntax); in ParseAttributeArgsCommon() 441 Attrs.addNew(AttrName, SourceRange(AttrLoc, RParen), ScopeName, ScopeLoc, in ParseAttributeArgsCommon() 458 IdentifierInfo *ScopeName, in ParseGNUAttributeArgs() argument 466 ParsedAttr::getParsedKind(AttrName, ScopeName, Syntax); in ParseGNUAttributeArgs() 469 ParseAvailabilityAttribute(*AttrName, AttrNameLoc, Attrs, EndLoc, ScopeName, in ParseGNUAttributeArgs() [all …]
|
H A D | ParsePragma.cpp | 1608 /*ScopeName=*/nullptr, in HandlePragmaAttribute() 1624 Tok.getIdentifierInfo(), /*ScopeName=*/nullptr, in HandlePragmaAttribute()
|
/netbsd-src/external/apache2/llvm/dist/llvm/utils/textmate/TableGen.tmbundle/Syntaxes/ |
H A D | TableGen.tmLanguage | 127 <key>scopeName</key>
|
/netbsd-src/external/apache2/llvm/dist/llvm/utils/vscode/llvm/syntaxes/ |
H A D | TableGen.tmLanguage | 127 <key>scopeName</key>
|
H A D | ll.tmLanguage.yaml | 13 scopeName: source.llvm
|
/netbsd-src/external/apache2/llvm/dist/clang/include/clang/Parse/ |
H A D | Parser.h | 2643 IdentifierInfo *ScopeName, SourceLocation ScopeLoc, 2759 IdentifierInfo *ScopeName, SourceLocation ScopeLoc, 2766 IdentifierInfo *ScopeName, SourceLocation ScopeLoc, 2807 IdentifierInfo *ScopeName, 2848 IdentifierInfo *ScopeName, 2859 IdentifierInfo *ScopeName, 2867 IdentifierInfo *ScopeName, 2875 IdentifierInfo *ScopeName, 2883 IdentifierInfo *ScopeName, 2890 SourceLocation *EndLoc, IdentifierInfo *ScopeName,
|
/netbsd-src/external/mpl/dhcp/dist/contrib/ms2isc/ |
H A D | ms2isc.pl | 125 my ($Scopename) = $i; 126 $Scopename =~ s/ //g; 127 print $outfile "shared-network $Scopename {\n";
|
/netbsd-src/external/apache2/llvm/dist/llvm/lib/CodeGen/AsmPrinter/ |
H A D | CodeViewDebug.cpp | 264 StringRef ScopeName = Scope->getName(); in getPrettyScopeName() local 265 if (!ScopeName.empty()) in getPrettyScopeName() 266 return ScopeName; in getPrettyScopeName() 294 StringRef ScopeName = getPrettyScopeName(Scope); in collectParentScopeNames() local 295 if (!ScopeName.empty()) in collectParentScopeNames() 296 QualifiedNameComponents.push_back(ScopeName); in collectParentScopeNames() 355 std::string ScopeName = getFullyQualifiedName(Scope); in getScopeIndex() local 356 StringIdRecord SID(TypeIndex(), ScopeName); in getScopeIndex()
|
/netbsd-src/external/apache2/llvm/dist/llvm/lib/Transforms/Utils/ |
H A D | CloneFunction.cpp | 940 auto ScopeName = SNANode.getName(); in cloneNoAliasScopes() local 941 if (!ScopeName.empty()) in cloneNoAliasScopes() 942 Name = (Twine(ScopeName) + ":" + Ext).str(); in cloneNoAliasScopes()
|
/netbsd-src/external/gpl3/binutils.old/dist/gprofng/src/ |
H A D | Dbe.cc | 6413 char *size, *offset, *elements, *scopename; in setDataSummary() local 6416 member = elist = type = size = offset = elements = scopename = NULL; in setDataSummary() 6429 scopename = dbe_strdup (GTXT ("(Global)")); in setDataSummary() 6435 scopename = dbe_sprintf (NTXT ("%s(%s)"), in setDataSummary() 6442 scopename = dbe_strdup (scope->get_name ()); in setDataSummary() 6485 jvalues->store (1, scopename); in setDataSummary()
|
/netbsd-src/external/gpl3/binutils/dist/gprofng/src/ |
H A D | Dbe.cc | 6413 char *size, *offset, *elements, *scopename; in setDataSummary() local 6416 member = elist = type = size = offset = elements = scopename = NULL; in setDataSummary() 6429 scopename = dbe_strdup (GTXT ("(Global)")); in setDataSummary() 6435 scopename = dbe_sprintf (NTXT ("%s(%s)"), in setDataSummary() 6442 scopename = dbe_strdup (scope->get_name ()); in setDataSummary() 6485 jvalues->store (1, scopename); in setDataSummary()
|
/netbsd-src/external/apache2/llvm/dist/clang/lib/Serialization/ |
H A D | ASTReaderDecl.cpp | 2783 IdentifierInfo *ScopeName = Record.readIdentifier(); in readAttr() local 2790 AttributeCommonInfo Info(AttrName, ScopeName, AttrRange, ScopeLoc, in readAttr()
|
/netbsd-src/external/apache2/llvm/dist/clang/utils/TableGen/ |
H A D | ClangAttrEmitter.cpp | 3183 OS << "if (ScopeName == \"\") {\n"; in EmitClangAttrHasAttrImpl() 3185 OS << "if (ScopeName == \"" << I->first << "\") {\n"; in EmitClangAttrHasAttrImpl()
|