Home
last modified time | relevance | path

Searched refs:scopeName (Results 1 – 15 of 15) sorted by relevance

/external/clang/include/clang/Sema/
DAttributeList.h238 IdentifierInfo *scopeName, SourceLocation scopeLoc, in AttributeList() argument
241 : AttrName(attrName), ScopeName(scopeName), AttrRange(attrRange), in AttributeList()
253 IdentifierInfo *scopeName, SourceLocation scopeLoc, in AttributeList() argument
261 : AttrName(attrName), ScopeName(scopeName), AttrRange(attrRange), in AttributeList()
276 IdentifierInfo *scopeName, SourceLocation scopeLoc, in AttributeList() argument
281 : AttrName(attrName), ScopeName(scopeName), AttrRange(attrRange), in AttributeList()
295 IdentifierInfo *scopeName, SourceLocation scopeLoc, in AttributeList() argument
298 : AttrName(attrName), ScopeName(scopeName), AttrRange(attrRange), in AttributeList()
314 IdentifierInfo *scopeName, SourceLocation scopeLoc, in AttributeList() argument
316 : AttrName(attrName), ScopeName(scopeName), AttrRange(attrRange), in AttributeList()
[all …]
/external/llvm-project/clang/include/clang/Sema/
DParsedAttr.h283 IdentifierInfo *scopeName, SourceLocation scopeLoc, in ParsedAttr() argument
286 : AttributeCommonInfo(attrName, scopeName, attrRange, scopeLoc, in ParsedAttr()
299 IdentifierInfo *scopeName, SourceLocation scopeLoc, in ParsedAttr() argument
305 : AttributeCommonInfo(attrName, scopeName, attrRange, scopeLoc, in ParsedAttr()
320 IdentifierInfo *scopeName, SourceLocation scopeLoc, in ParsedAttr() argument
323 : AttributeCommonInfo(attrName, scopeName, attrRange, scopeLoc, in ParsedAttr()
337 IdentifierInfo *scopeName, SourceLocation scopeLoc, in ParsedAttr() argument
340 : AttributeCommonInfo(attrName, scopeName, attrRange, scopeLoc, in ParsedAttr()
356 IdentifierInfo *scopeName, SourceLocation scopeLoc, in ParsedAttr() argument
358 : AttributeCommonInfo(attrName, scopeName, attrRange, scopeLoc, in ParsedAttr()
[all …]
/external/tensorflow/tensorflow/java/src/main/java/org/tensorflow/op/
DNameScope.java39 NameScope withSubScope(String scopeName) { in withSubScope() argument
40 checkPattern(NAME_REGEX, scopeName); in withSubScope()
42 String actualName = (opName != null) ? opName : scopeName; in withSubScope()
/external/llvm-project/llvm/lib/Support/
DELFAttributeParser.cpp154 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()
/external/chromium-trace/catapult/third_party/polymer/components/shadycss/src/
Dscoping-shim.js480 let scopeName = root.host && root.host.localName;
484 if (!scopeName) {
490 scopeName = k$[i+1];
496 if (scopeName) {
497 classes.push(StyleTransformer.SCOPE_NAME, scopeName);
/external/javaparser/javaparser-symbol-solver-core/src/main/java/com/github/javaparser/symbolsolver/javaparsermodel/contexts/
DAbstractJavaParserContext.java171 FieldAccessExpr scopeName = (FieldAccessExpr) scope; in findTypeDeclarations()
172 if (this.solveType(scopeName.toString()).isSolved()) { in findTypeDeclarations()
/external/swiftshader/third_party/SPIRV-Tools/utils/vscode/
Dspirv.json.tmpl2 "scopeName": "source.spirv",
/external/deqp-deps/SPIRV-Tools/utils/vscode/
Dspirv.json.tmpl2 "scopeName": "source.spirv",
/external/angle/third_party/vulkan-deps/spirv-tools/src/utils/vscode/
Dspirv.json.tmpl2 "scopeName": "source.spirv",
/external/antlr/tool/src/main/antlr3/org/antlr/grammar/v3/
DTreeToNFAConverter.g569 atom[String scopeName] returns [StateCluster g=null]
572 NFAState start = grammar.getRuleStartState(scopeName,$r.text);
575 Rule rr = grammar.getRule(scopeName,$r.text);
592 NFAState start = grammar.getRuleStartState(scopeName,$t.text);
595 Rule rr = grammar.getRule(scopeName,t.getText());
DActionTranslator.g157 AttributeScope resolveDynamicScope(String scopeName) {
158 if ( grammar.getGlobalScope(scopeName)!=null ) {
159 return grammar.getGlobalScope(scopeName);
161 Rule scopeRule = grammar.getRule(scopeName);
DCodeGenTreeWalker.g972 String scopeName = null;
974 scopeName = scope.getText();
976 Rule rdef = grammar.getRule(scopeName, $r.text);
1038 String scopeName = null;
1041 scopeName = scope.getText();
1043 Rule rdef2 = grammar.getRule(scopeName, $t.text);
/external/antlr/tool/src/main/java/org/antlr/tool/
DGrammar.java1711 public Rule getRule(String scopeName, String ruleName) { in getRule() argument
1712 if ( scopeName!=null ) { // scope override in getRule()
1713 Grammar scope = composite.getGrammar(scopeName); in getRule()
1722 public int getRuleIndex(String scopeName, String ruleName) { in getRuleIndex() argument
1723 Rule r = getRule(scopeName, ruleName); in getRuleIndex()
2757 public NFAState getRuleStartState(String scopeName, String ruleName) { in getRuleStartState() argument
2758 Rule r = getRule(scopeName, ruleName); in getRuleStartState()
/external/chromium-trace/catapult/third_party/polymer/components/shadycss/
Dscoping-shim.min.js.map1scopeName","classAttr","k$","_styleInfoForNode.prototype","_styleInfoForNode","scopeNode.prototype…
/external/llvm-project/flang/lib/Semantics/
Dresolve-names.cpp6183 std::optional<SourceName> scopeName{scope.GetName()}; in CheckImports() local
6184 if (!scopeName || name != *scopeName) { in CheckImports()