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

1 2 3

  /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())
239 if (BB->hasName()) NewBB->setName(BB->getName()+NameSuffix);
286 if (II->hasName())
338 if (OldTI->hasName())
BasicBlockUtils.cpp 164 if (!PredBB->hasName())
203 if (I.hasName() && !V->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 181 if (NewName.isTriviallyEmpty() && !hasName())
223 if (hasName()) {
245 if (hasName()) {
250 if (V->hasName()) V->setName("");
264 if (!V->hasName()) return;
TypeFinder.cpp 100 if (!OnlyNamed || STy->hasName())
AsmWriter.cpp 492 if (!I->hasName())
507 if (!I->hasName())
529 if (!AI->hasName())
539 if (!BB->hasName())
544 if (!I->getType()->isVoidTy() && !I->hasName())
637 assert(!V->hasName() && "Doesn't need a slot!");
652 assert(!V->getType()->isVoidTy() && !V->hasName() && "Doesn't need a slot!");
    [all...]
  /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/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())
  /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/ExecutionEngine/OProfileJIT/
OProfileJITEventListener.cpp 95 assert(F.hasName() && FnStart != 0 && "Bad symbol to add");
  /external/llvm/lib/Target/NVPTX/
NVPTXUtilities.cpp 202 assert(val.hasName() && "Found texture variable with no name");
207 assert(val.hasName() && "Found surface variable with no name");
212 assert(val.hasName() && "Found sampler variable with no name");
  /external/llvm/tools/bugpoint/
ExtractFunction.cpp 299 if (I->hasName() && I->getName()[0] == '\01')
390 if (!BB->hasName()) BB->setName("tmpbb");
  /external/llvm/include/llvm/IR/
DerivedTypes.h 254 /// hasName - Return true if this is a named struct that has a non-empty name.
255 bool hasName() const { return SymbolTableEntry != 0; }
Value.h 112 bool hasName() const { return Name != 0 && SubclassID != MDStringVal; }
  /external/llvm/lib/Archive/
Archive.cpp 213 if (AI->hasName())
  /external/llvm/lib/Target/
Mangler.cpp 190 if (GV->hasName()) {
  /external/llvm/lib/Bitcode/Writer/
ValueEnumerator.cpp 150 if (V->hasName())
161 if((*UI)->hasName())

Completed in 681 milliseconds

1 2 3