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

1 2 3 4

  /external/clang/unittests/ASTMatchers/
ASTMatchersTest.cpp 23 DeclarationMatcher HasEmptyName = recordDecl(hasName(""));
50 DeclarationMatcher NamedX = namedDecl(hasName("X"));
101 DeclarationMatcher ClassX = recordDecl(recordDecl(hasName("X")));
126 recordDecl(hasName("Z"), isDerivedFrom("X"));
245 recordDecl(isDerivedFrom(recordDecl(hasName("Some"))))));
252 recordDecl(hasName("B"), isDerivedFrom(recordDecl(hasName("A"))))));
268 varDecl(hasName("z_float"),
272 varDecl(hasName("z_float"),
276 varDecl(hasName("z_char")
    [all...]
  /external/clang/unittests/AST/
DeclPrinterTest.cpp 105 namedDecl(hasName(DeclName)).bind("id"),
128 namedDecl(hasName(DeclName)).bind("id"),
403 functionDecl(hasName("A"), isExplicitTemplateSpecialization()).bind("id"),
414 constructorDecl(ofClass(hasName("A"))).bind("id"),
423 constructorDecl(ofClass(hasName("A"))).bind("id"),
432 constructorDecl(ofClass(hasName("A"))).bind("id"),
441 constructorDecl(ofClass(hasName("A"))).bind("id"),
450 constructorDecl(ofClass(hasName("A"))).bind("id"),
459 constructorDecl(ofClass(hasName("A"))).bind("id"),
468 constructorDecl(ofClass(hasName("A"))).bind("id")
    [all...]
ASTContextParentMapTest.cpp 31 methodDecl(hasParent(recordDecl(hasName("C"))))));
45 methodDecl(hasName("f"),
50 methodDecl(hasName("f"),
55 methodDecl(hasName("f"),
StmtPrinterTest.cpp 107 functionDecl(hasName(ContainingFunction),
122 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())
CloneFunction.cpp 42 if (BB->hasName()) NewBB->setName(BB->getName()+NameSuffix);
50 if (II->hasName())
240 if (BB->hasName()) NewBB->setName(BB->getName()+NameSuffix);
287 if (II->hasName())
339 if (OldTI->hasName())
  /external/llvm/unittests/IR/
TypesTest.cpp 27 EXPECT_FALSE(Struct->hasName());
  /external/llvm/lib/IR/
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)
ValueSymbolTable.cpp 37 assert(V->hasName() && "Can't insert nameless Value into symbol table");
Value.cpp 180 if (NewName.isTriviallyEmpty() && !hasName())
222 if (hasName()) {
244 if (hasName()) {
249 if (V->hasName()) V->setName("");
263 if (!V->hasName()) return;
TypeFinder.cpp 100 if (!OnlyNamed || STy->hasName())
  /cts/tools/signature-tools/src/signature/compare/
Main.java 60 boolean hasName = false;
65 hasName = true;
75 if (hasName) {
96 hasName = false;
101 hasName = true;
111 if (hasName) {
  /external/chromium_org/third_party/WebKit/Source/core/html/parser/
XSSAuditor.cpp 114 static bool hasName(const HTMLToken& token, const QualifiedName& name)
345 if (hasName(request.token, scriptTag)) {
349 } else if (hasName(request.token, objectTag))
351 else if (hasName(request.token, paramTag))
353 else if (hasName(request.token, embedTag))
355 else if (hasName(request.token, appletTag))
357 else if (hasName(request.token, iframeTag))
359 else if (hasName(request.token, metaTag))
361 else if (hasName(request.token, baseTag))
363 else if (hasName(request.token, formTag)
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/html/
HTMLParamElement.cpp 48 if (hasName())
HTMLNameCollection.cpp 93 if (current->getNameAttribute() == m_name || (current->getIdAttribute() == m_name && current->hasName()))
  /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/chromium_org/tools/clang/rewrite_scoped_array/
RewriteScopedArray.cpp 22 using clang::ast_matchers::hasName;
78 loc(qualType(hasDeclaration(recordDecl(hasName("::scoped_array")))))),
  /external/llvm/unittests/Analysis/
CFGTest.cpp 55 if (I->hasName()) {
92 if (!F.hasName() || F.getName() != "test")
  /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/chromium_org/tools/clang/empty_string/
EmptyStringConverter.cpp 30 using clang::ast_matchers::hasName;
102 hasDeclaration(methodDecl(ofClass(hasName("std::basic_string")))),
  /external/clang/unittests/ASTMatchers/Dynamic/
VariantValueTest.cpp 105 EXPECT_TRUE(matches("class X {};", VariantValue(recordDecl(hasName("X")))
RegistryTest.cpp 90 "namedDecl", constructMatcher("hasName", std::string("X")))
122 "hasParameter", 1, hasName("x")).getTypedMatcher<FunctionDecl>());
139 constructMatcher("hasName", std::string("x")))))
218 constructMatcher("forField", hasName("foo"))))
231 constructMatcher("hasName", std::string("X")))))
242 constructMatcher("hasName", std::string("X")))))
  /external/llvm/lib/ExecutionEngine/OProfileJIT/
OProfileJITEventListener.cpp 95 assert(F.hasName() && FnStart != 0 && "Bad symbol to add");
  /external/llvm/lib/Target/Mips/
MipsOptimizeMathLibCalls.cpp 102 if (CalledFunc->hasLocalLinkage() || !CalledFunc->hasName() ||

Completed in 451 milliseconds

1 2 3 4