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

1 2 3 4 5 6 7 8

  /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/
ASTMatchersTest.cpp 25 DeclarationMatcher HasEmptyName = recordDecl(hasName(""));
55 EXPECT_FALSE(Finder.addDynamicMatcher(hasName("x"), nullptr));
65 DeclarationMatcher NamedX = namedDecl(hasName("X"));
117 DeclarationMatcher ClassX = recordDecl(recordDecl(hasName("X")));
142 cxxRecordDecl(hasName("Z"), isDerivedFrom("X"));
261 cxxRecordDecl(isDerivedFrom(recordDecl(hasName("Some"))))));
268 cxxRecordDecl(hasName("B"), isDerivedFrom(recordDecl(hasName("A"))))));
284 varDecl(hasName("z_float"),
288 varDecl(hasName("z_float")
    [all...]
  /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 32 cxxMethodDecl(hasParent(recordDecl(hasName("C"))))));
59 cxxMethodDecl(hasName("f"),
64 cxxMethodDecl(hasName("f"),
70 hasName("f"),
NamedDeclPrinterTest.cpp 102 namedDecl(hasName(DeclName)).bind("id"),
114 namedDecl(hasName(DeclName)).bind("id"),
StmtPrinterTest.cpp 118 functionDecl(hasName(ContainingFunction),
144 functionDecl(hasName(ContainingFunction),
SourceLocationTest.cpp 437 Code, friendDecl(has(cxxConstructorDecl(ofClass(hasName("B")))))));
441 Code, friendDecl(has(cxxDestructorDecl(ofClass(hasName("B")))))));
455 Code, friendDecl(has(cxxConstructorDecl(ofClass(hasName("B")))))));
459 Code, friendDecl(has(cxxDestructorDecl(ofClass(hasName("B")))))));
  /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");
Value.cpp 50 NumUserOperands(0), IsUsedByMD(false), HasName(false) {
161 if (!HasName) return nullptr;
174 assert(HasName == Ctx.pImpl->ValueNames.count(this) &&
175 "HasName bit out of sync!");
178 if (HasName)
180 HasName = false;
184 HasName = true;
192 if (!hasName())
199 if (NewName.isTriviallyEmpty() && !hasName())
237 if (hasName()) {
    [all...]
Mangler.cpp 119 if (!GV->hasName()) {
  /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())
SplitModule.cpp 37 if (!GV->hasName())
  /external/llvm/unittests/IR/
TypesTest.cpp 27 EXPECT_FALSE(Struct->hasName());
  /libcore/ojluni/src/main/java/sun/nio/cs/
ThreadLocalCoders.java 60 abstract boolean hasName(Object ob, Object name);
72 if (hasName(ob, name)) {
90 boolean hasName(Object ob, Object name) {
114 boolean hasName(Object ob, Object name) {
  /libcore/ojluni/src/main/java/sun/misc/
LRUCache.java 44 abstract protected boolean hasName(V ob, N name);
61 if (hasName(ob, name)) {
  /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/llvm/unittests/Analysis/
CFGTest.cpp 50 if (I->hasName()) {
88 if (!F.hasName() || F.getName() != "test")
ValueTrackingTest.cpp 44 if (I->hasName()) {
  /external/llvm/lib/Transforms/ObjCARC/
ProvenanceAnalysisEvaluator.cpp 49 if (!V->hasName())
  /external/llvm/lib/Target/PowerPC/
PPCLoopPreIncPrep.cpp 333 MemI->hasName() ? MemI->getName() + ".phi" : "",
353 MemI->hasName() ? MemI->getName() + ".inc" : "", InsPoint);
366 PtrInc->hasName() ? PtrInc->getName() + ".cast" : "", InsPoint);
402 I->Instr->hasName() ? I->Instr->getName() + ".off" : "", PtrIP);
415 Ptr->hasName() ? Ptr->getName() + ".cast" : "");
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/uimodel/
UiFlagAttributeNode.java 254 boolean hasName = mCurrentSet.contains(name);
255 item.setChecked(hasName);
256 if (hasName) {
  /external/clang/unittests/Tooling/
RefactoringCallbacksTest.cpp 86 declRefExpr(to(varDecl(hasName("a"))))))))),
  /external/llvm/lib/Transforms/Scalar/
PartiallyInlineLibCalls.cpp 81 if (CalledFunc->hasLocalLinkage() || !CalledFunc->hasName() ||
  /external/clang/unittests/ASTMatchers/Dynamic/
VariantValueTest.cpp 129 recordDecl(hasName("X"))))

Completed in 258 milliseconds

1 2 3 4 5 6 7 8