/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/chromium-trace/catapult/tracing/tracing/ui/analysis/ |
stack_frame.html | 45 var hasName = false; 50 hasName |= row.name !== undefined; 55 if (hasName) {
|
/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"),
|
/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)
|
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...] |
/external/clang/unittests/ASTMatchers/Dynamic/ |
RegistryTest.cpp | 147 "namedDecl", constructMatcher("hasName", StringRef("X"))) 181 "hasParameter", 1, constructMatcher("hasName", StringRef("x"))) 199 constructMatcher("hasName", StringRef("x"))))) 218 specifiesType(hasDeclaration(recordDecl(hasName("A"))))))) 247 "recordDecl", constructMatcher("hasName", StringRef("Foo")), 264 "ofClass", constructMatcher("hasName", StringRef("Foo")))))) 307 constructMatcher("hasName", StringRef("foo"))))) 320 constructMatcher("hasName", StringRef("X"))))) 331 constructMatcher("hasName", StringRef("X"))))) 349 constructMatcher("hasName", StringRef("Foo"))) [all...] |
/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) {
|
/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/lib/Transforms/Utils/ |
InstructionNamer.cpp | 37 if (!AI->hasName() && !AI->getType()->isVoidTy()) 41 if (!BB->hasName()) 45 if (!I->hasName() && !I->getType()->isVoidTy())
|
/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/unittests/IR/ |
TypesTest.cpp | 27 EXPECT_FALSE(Struct->hasName());
|
/external/clang/docs/ |
LibASTMatchers.rst | 33 insert a `hasName <LibASTMatchersReference.html#hasName0Anchor>`_ matcher: the 34 call ``recordDecl(hasName("Foo"))`` returns a matcher that matches classes or 39 "``Bar``": ``recordDecl(hasName("Foo"), isDerivedFrom("Bar"))``. 81 are bindable; for example, ``recordDecl(hasName("MyClass")).bind("id")`` will
|
/prebuilts/gdb/darwin-x86/lib/python2.7/ |
opcode.py | 7 __all__ = ["cmp_op", "hasconst", "hasname", "hasjrel", "hasjabs", 15 hasname = [] variable 33 hasname.append(op)
|
dis.py | 96 elif op in hasname: 134 elif op in hasname:
|
/prebuilts/gdb/linux-x86/lib/python2.7/ |
opcode.py | 7 __all__ = ["cmp_op", "hasconst", "hasname", "hasjrel", "hasjabs", 15 hasname = [] variable 33 hasname.append(op)
|
dis.py | 96 elif op in hasname: 134 elif op in hasname:
|
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/ |
opcode.py | 7 __all__ = ["cmp_op", "hasconst", "hasname", "hasjrel", "hasjabs", 15 hasname = [] variable 33 hasname.append(op)
|
dis.py | 96 elif op in hasname: 134 elif op in hasname:
|
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/ |
opcode.py | 7 __all__ = ["cmp_op", "hasconst", "hasname", "hasjrel", "hasjabs", 15 hasname = [] variable 33 hasname.append(op)
|
/external/clang/include/clang/ASTMatchers/ |
ASTMatchers.h | 17 // cxxRecordDecl(hasName("MyClass")) 28 // cxxRecordDecl(hasName("MyClass"), hasChild(id("child", recordDecl()))) 643 /// refersToType(class(hasName("X"))))) 662 /// refersToDeclaration(fieldDecl(hasName("next")))) 681 /// isExpr(hasDescendant(declRefExpr(to(fieldDecl(hasName("next")))))))) [all...] |
/external/compiler-rt/lib/sanitizer_common/tests/ |
sanitizer_thread_registry_test.cc | 52 static bool HasName(ThreadContextBase *tctx, void *arg) { 101 EXPECT_EQ(7U, registry->FindThread(HasName, (void*)"seven")); 103 registry->FindThread(HasName, (void*)"none"));
|
/external/llvm/lib/Transforms/ObjCARC/ |
ProvenanceAnalysisEvaluator.cpp | 49 if (!V->hasName())
|