Home
last modified time | relevance | path

Searched refs:hasAncestor (Results 1 – 22 of 22) sorted by relevance

/external/clang/unittests/AST/
DASTContextParentMapTest.cpp66 allOf(hasAncestor(recordDecl(isTemplateInstantiation())), in TEST()
67 hasAncestor(recordDecl(unless(isTemplateInstantiation()))))))); in TEST()
/external/antlr/antlr-3.4/runtime/Java/src/main/java/org/antlr/runtime/tree/
DTree.java58 public boolean hasAncestor(int ttype); in hasAncestor() method
DBaseTree.java313 public boolean hasAncestor(int ttype) { return getAncestor(ttype)!=null; } in hasAncestor() method in BaseTree
/external/antlr/antlr-3.4/runtime/ObjC/ANTLR.framework/Versions/Current/Headers/
DANTLRTree.h41 - (BOOL) hasAncestor:(NSInteger)ttype;
DANTLRBaseTree.h147 - (BOOL) hasAncestor:(NSInteger) ttype;
/external/antlr/antlr-3.4/runtime/ObjC/ANTLR.framework/Versions/A/Headers/
DANTLRTree.h41 - (BOOL) hasAncestor:(NSInteger)ttype;
DANTLRBaseTree.h147 - (BOOL) hasAncestor:(NSInteger) ttype;
/external/antlr/antlr-3.4/runtime/ObjC/ANTLR.framework/Headers/
DANTLRTree.h41 - (BOOL) hasAncestor:(NSInteger)ttype;
DANTLRBaseTree.h147 - (BOOL) hasAncestor:(NSInteger) ttype;
/external/antlr/antlr-3.4/runtime/ObjC/Framework/
DANTLRTree.h47 - (BOOL) hasAncestor:(NSInteger)ttype;
DANTLRBaseTree.h151 - (BOOL) hasAncestor:(NSInteger) ttype;
DANTLRBaseTree.m411 - (BOOL) hasAncestor:(NSInteger) ttype
/external/clang/unittests/ASTMatchers/
DASTMatchersTest.cpp3476 functionDecl(decl().bind("x"), hasAncestor(recordDecl(hasName("::A")))), in TEST()
3483 ifStmt(stmt().bind("x"), hasAncestor(recordDecl(hasName("::A")))), in TEST()
3737 recordDecl(hasName("C"), hasAncestor(recordDecl(hasName("A")))))); in TEST()
3743 recordDecl(hasName("C"), hasAncestor(recordDecl(hasName("X")))))); in TEST()
3750 hasAncestor(recordDecl(hasName("A")))))))); in TEST()
3756 integerLiteral(equals(42), hasAncestor(ifStmt())))); in TEST()
3762 integerLiteral(equals(42), hasAncestor(functionDecl(hasName("f")))))); in TEST()
3768 fieldDecl(hasAncestor(recordDecl(hasAncestor(recordDecl().bind("r"))))), in TEST()
3775 fieldDecl(hasAncestor( in TEST()
3778 hasAncestor(recordDecl()))) in TEST()
[all …]
/external/antlr/antlr-3.4/runtime/ActionScript/project/src/org/antlr/runtime/tree/
DTree.as25 function hasAncestor(ttype:int):Boolean;
DBaseTree.as266 public function hasAncestor(ttype:int):Boolean { return getAncestor(ttype)!=null; }
/external/jmonkeyengine/engine/src/core/com/jme3/scene/
DSpatial.java765 public boolean hasAncestor(Node ancestor) { in hasAncestor() method in Spatial
771 return parent.hasAncestor(ancestor); in hasAncestor()
/external/antlr/antlr-3.4/tool/src/main/java/org/antlr/tool/
DStrip.java154 if ( !a.hasAncestor(ANTLRv3Parser.OPTIONS) ) { // avoid options in rewrite()
/external/clang/include/clang/ASTMatchers/
DASTMatchers.h1966 internal::TypeList<Decl, Stmt> > LLVM_ATTRIBUTE_UNUSED hasAncestor = {}; variable
3297 return decl(anyOf(IsInstantiation, hasAncestor(IsInstantiation))); in AST_MATCHER_FUNCTION()
3316 hasAncestor(decl(anyOf(recordDecl(isTemplateInstantiation()), in AST_MATCHER_FUNCTION()
/external/clang/lib/ASTMatchers/Dynamic/
DRegistry.cpp171 REGISTER_MATCHER(hasAncestor); in RegistryMaps()
/external/antlr/antlr-3.4/runtime/Python/antlr3/
Dtree.py133 def hasAncestor(self, ttype): member in Tree
889 def hasAncestor(self, ttype): member in BaseTree
/external/antlr/antlr-3.4/runtime/ObjC/Framework/test/runtime/tree/
DANTLRCommonTreeTest.m334 …STAssertTrue([tree hasAncestor:ANTLRTokenTypeUP], @"Should have an ancestor of type ANTLRTokenType…
/external/antlr/antlr-3.4/tool/
DCHANGES.txt519 public boolean hasAncestor(int ttype);