HomeSort by relevance Sort by last modified time
    Searched refs:hasName (Results 1 - 25 of 402) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/proguard/src/proguard/obfuscate/
MemberNameFilter.java 56 if (hasName(programField))
65 if (hasName(programClass, programMethod))
74 if (hasName(libraryField))
83 if (hasName(libraryClass, libraryMethod))
95 private boolean hasName(Clazz clazz)
104 private boolean hasName(Clazz clazz, Method method)
107 hasName(method) ||
108 (hasName(clazz) &&
116 private boolean hasName(Member member)
  /external/clang/unittests/ASTMatchers/
ASTMatchersNarrowingTest.cpp 29 callExpr(allOf(callee(functionDecl(hasName("f"))),
32 callExpr(allOf(callee(functionDecl(hasName("f"))),
35 recordDecl(hasName("T")))))))));
37 callExpr(allOf(callee(functionDecl(hasName("f"))),
40 recordDecl(hasName("T"))))),
43 callExpr(allOf(callee(functionDecl(hasName("f"))),
46 recordDecl(hasName("T"))))),
52 DeclarationMatcher HasClassX = recordDecl(has(recordDecl(hasName("X"))));
57 recordDecl(hasName("Y"), has(recordDecl(hasName("X"))))
    [all...]
ASTMatchersTraversalTest.cpp 24 cxxRecordDecl(hasMethod(hasName("func")))));
36 cxxRecordDecl(hasName("B"), isDerivedFrom(recordDecl()))));
46 recordDecl(hasDeclContext(namespaceDecl(hasName("M"))))));
53 recordDecl(hasDeclContext(namespaceDecl(hasName("N"))))));
61 hasName("M"), hasDeclContext(namespaceDecl()))))));
105 varDecl(hasName("i"), has(isInteger()))));
107 varDecl(hasName("i"), has(isInteger()))));
117 varDecl(hasName("i"), hasType(qualType(has(builtinType()))))));
120 varDecl(hasName("i"), hasType(qualType(has(pointerType()))))));
125 expr(hasType(pointsTo(recordDecl(hasName("X"))))
    [all...]
ASTMatchersNodeTest.cpp 31 EXPECT_FALSE(Finder.addDynamicMatcher(hasName("x"), nullptr));
41 DeclarationMatcher NamedX = namedDecl(hasName("X"));
91 DeclarationMatcher ClassX = recordDecl(recordDecl(hasName("X")));
104 Code, varDecl(hasName("MyVar1"), hasDeclContext(translationUnitDecl()))));
106 Code, varDecl(hasName("MyVar2"), hasDeclContext(translationUnitDecl()))));
109 varDecl(hasName("MyVar2"),
119 DeclarationMatcher ClassX = classTemplateDecl(hasName("X"));
125 DeclarationMatcher ClassX = classTemplateDecl(hasName("X"));
133 classTemplateDecl(hasName("X"),
134 hasDescendant(fieldDecl(hasName("a"))))))
    [all...]
ASTMatchersInternalTest.cpp 25 DeclarationMatcher HasEmptyName = recordDecl(hasName(""));
63 DeclarationMatcher HasClassB = just(has(recordDecl(hasName("B")).bind("b")));
86 polymorphicHas(recordDecl(hasName("B")).bind("b"));
98 polymorphicHas(recordDecl(hasName("B")));
185 functionDecl(isInline(), hasName("f"))));
187 namespaceDecl(isInline(), hasName("m"))));
196 recordDecl(hasName("X"), isExpansionInMainFile())));
227 recordDecl(isExpansionInFileMatching("b.*"), hasName("B")), true,
233 recordDecl(isExpansionInFileMatching("f.*"), hasName("X")), false,
  /external/clang/unittests/AST/
DeclPrinterTest.cpp 107 namedDecl(hasName(DeclName)).bind("id"),
130 namedDecl(hasName(DeclName)).bind("id"),
463 functionDecl(hasName("A"), isExplicitTemplateSpecialization()).bind("id"),
474 cxxConstructorDecl(ofClass(hasName("A"))).bind("id"),
483 cxxConstructorDecl(ofClass(hasName("A"))).bind("id"),
492 cxxConstructorDecl(ofClass(hasName("A"))).bind("id"),
501 cxxConstructorDecl(ofClass(hasName("A"))).bind("id"),
510 cxxConstructorDecl(ofClass(hasName("A"))).bind("id"),
519 cxxConstructorDecl(ofClass(hasName("A"))).bind("id"),
528 cxxConstructorDecl(ofClass(hasName("A"))).bind("id")
    [all...]
ASTContextParentMapTest.cpp 28 cxxMethodDecl(hasParent(recordDecl(hasName("C"))))));
55 cxxMethodDecl(hasName("f"),
60 cxxMethodDecl(hasName("f"),
66 hasName("f"),
ASTImporterTest.cpp 229 declRefExpr(hasDeclaration(varDecl(hasName("ptr"))),
243 has(labelStmt(hasDeclaration(labelDecl(hasName("loop"))))),
244 has(addrLabelExpr(hasDeclaration(labelDecl(hasName("loop")))))
271 hasName("f"),
301 hasName("C"),
309 hasName("X"),
NamedDeclPrinterTest.cpp 102 namedDecl(hasName(DeclName)).bind("id"),
114 namedDecl(hasName(DeclName)).bind("id"),
StmtPrinterTest.cpp 118 functionDecl(hasName(ContainingFunction),
144 functionDecl(hasName(ContainingFunction),
  /external/llvm/lib/Transforms/Utils/
InstructionNamer.cpp 37 if (!AI->hasName() && !AI->getType()->isVoidTy())
41 if (!BB.hasName())
45 if (!I.hasName() && !I.getType()->isVoidTy())
NameAnonFunctions.cpp 39 if (F.isDeclaration() || F.hasLocalLinkage() || !F.hasName())
45 if (GV.isDeclaration() || GV.hasLocalLinkage() || !GV.hasName())
67 if (F.hasName())
  /external/swiftshader/third_party/LLVM/lib/Transforms/Utils/
InstructionNamer.cpp 37 if (!AI->hasName() && !AI->getType()->isVoidTy())
41 if (!BB->hasName())
45 if (!I->hasName() && !I->getType()->isVoidTy())
  /external/llvm/lib/IR/
SymbolTableListTraitsImpl.h 50 if (I->hasName())
57 if (I->hasName())
68 if (V->hasName())
77 if (V->hasName())
97 bool HasName = V.hasName();
98 if (OldST && HasName)
101 if (NewST && HasName)
ValueSymbolTable.cpp 56 assert(V->hasName() && "Can't insert nameless Value into symbol table");
  /external/swiftshader/third_party/LLVM/lib/VMCore/
SymbolTableListTraitsImpl.h 51 if (I->hasName())
59 if (I->hasName())
71 if (V->hasName())
80 if (V->hasName())
101 bool HasName = V.hasName();
102 if (OldST && HasName)
105 if (NewST && HasName)
  /external/llvm/unittests/IR/
TypesTest.cpp 27 EXPECT_FALSE(Struct->hasName());
  /libcore/ojluni/src/main/java/sun/nio/cs/
ThreadLocalCoders.java 59 abstract boolean hasName(Object ob, Object name);
71 if (hasName(ob, name)) {
89 boolean hasName(Object ob, Object name) {
113 boolean hasName(Object ob, Object name) {
  /libcore/ojluni/src/main/java/sun/misc/
LRUCache.java 44 abstract protected boolean hasName(V ob, N name);
63 if (hasName(ob, name)) {
  /external/v8/tools/clang/base_bind_rewriters/
BaseBindRewriters.cpp 48 auto is_bind_call = callee(namedDecl(hasName("::base::Bind")));
52 cxxMemberCallExpr(thisPointerType(namedDecl(hasName("scoped_refptr"))),
53 callee(namedDecl(hasName("get"))));
  /external/llvm/tools/llvm-diff/
DiffConsumer.cpp 27 if (!AI->hasName())
32 if (!FI->hasName())
38 if (!BI->hasName() && !BI->getType()->isVoidTy())
49 if (V->hasName()) {
113 if (L->hasName() && R->hasName() && L->getName() == R->getName())
  /external/swiftshader/third_party/LLVM/tools/llvm-diff/
DiffConsumer.cpp 28 if (!AI->hasName())
33 if (!FI->hasName())
39 if (!BI->hasName() && !BI->getType()->isVoidTy())
48 if (V->hasName()) {
108 if (L->hasName() && R->hasName() && L->getName() == R->getName())
  /external/swiftshader/third_party/LLVM/lib/Linker/
LinkArchives.cpp 49 if (I->hasName()) {
61 if (I->hasName()) {
73 if (I->hasName())
  /external/v8/tools/clang/value_cleanup/
ListValueRewriter.cpp 351 callee(cxxMethodDecl(hasName("::base::ListValue::Append"))),
364 hasDeclaration(cxxMethodDecl(hasName(
383 hasDeclaration(cxxMethodDecl(hasName(
402 hasDeclaration(cxxMethodDecl(hasName(
422 hasName("::base::StringValue::StringValue"))),
429 hasName("release"),
430 ofClass(cxxRecordDecl(hasName("::std::unique_ptr"))))),
  /external/v8/tools/clang/rewrite_scoped_refptr/
RewriteScopedRefptr.cpp 329 functionDecl(anyOf(hasName("CheckEQImpl"), hasName("CheckNEImpl")));
332 hasName("::testing::internal::EqHelper")))),
333 hasName("Compare")),
334 hasName("::testing::internal::CmpHelperNE")));
337 isSameOrDerivedFrom(hasName("::testing::AssertionResult")))));

Completed in 383 milliseconds

1 2 3 4 5 6 7 8 91011>>