/external/clang/include/clang/Serialization/ |
ModuleManager.h | 219 /// \param Visitor A visitor function that will be invoked with each 225 /// \param UserData User data associated with the visitor object, which 226 /// will be passed along to the visitor. 232 void visit(bool (*Visitor)(ModuleFile &M, void *UserData), void *UserData, 243 /// \param Visitor A visitor function that will be invoked with each 246 /// visitor may return true at any time to abort the depth-first 249 /// \param UserData User data ssociated with the visitor object, 251 void visitDepthFirst(bool (*Visitor)(ModuleFile &M, bool Preorder, [all...] |
/external/dexmaker/src/dx/java/com/android/dx/rop/code/ |
BasicBlockList.java | 93 RegCountVisitor visitor = new RegCountVisitor(); local 94 forEachInsn(visitor); 95 regCount = visitor.getRegCount(); 171 * @param visitor {@code non-null;} visitor to use 173 public void forEachInsn(Insn.Visitor visitor) { 179 insns.forEach(visitor); 310 * Instruction visitor class for counting registers used. 313 implements Insn.Visitor { [all...] |
FillArrayDataInsn.java | 90 public void accept(Visitor visitor) { 91 visitor.visitFillArrayDataInsn(this);
|
PlainInsn.java | 79 public void accept(Visitor visitor) { 80 visitor.visitPlainInsn(this);
|
ThrowingInsn.java | 92 public void accept(Visitor visitor) { 93 visitor.visitThrowingInsn(this);
|
/external/proguard/src/proguard/ |
ClassSpecificationVisitorFactory.java | 23 import proguard.classfile.attribute.annotation.visitor.*; 24 import proguard.classfile.attribute.visitor.AllAttributeVisitor; 25 import proguard.classfile.visitor.*; 149 // Replace the class visitor. 154 // Discard the member visitor, because it has already been included. 293 // The class visitor for classes and their members. 296 // If specified, let the class visitor visit the class itself. 299 // This class visitor may be the only one. 308 // If specified, let the member info visitor visit the class members. 314 // This class visitor may be the only one [all...] |
/external/apache-xml/src/main/java/org/apache/xpath/axes/ |
FilterExprIteratorSimple.java | 271 * This will traverse the heararchy, calling the visitor for 272 * each member. If the called visitor method returns 275 * @param visitor The visitor whose appropriate method will be called. 277 public void callPredicateVisitors(XPathVisitor visitor) 279 m_expr.callVisitors(new filterExprOwner(), visitor); 281 super.callPredicateVisitors(visitor);
|
FilterExprWalker.java | 318 * This will traverse the heararchy, calling the visitor for 319 * each member. If the called visitor method returns 322 * @param visitor The visitor whose appropriate method will be called. 324 public void callPredicateVisitors(XPathVisitor visitor) 326 m_expr.callVisitors(new filterExprOwner(), visitor); 328 super.callPredicateVisitors(visitor);
|
/external/apache-xml/src/main/java/org/apache/xalan/templates/ |
ElemCopyOf.java | 230 * @param visitor The visitor whose appropriate method will be called. 232 protected void callChildVisitors(XSLTVisitor visitor, boolean callAttrs) 235 m_selectExpression.getExpression().callVisitors(m_selectExpression, visitor); 236 super.callChildVisitors(visitor, callAttrs);
|
/external/chromium_org/net/spdy/ |
spdy_framer.h | 116 // decompressed header block to be delivered in chunks to the visitor. 124 // During step 2 the visitor may return false, indicating that the chunk of 125 // header data could not be handled by the visitor (typically this indicates 127 // delivering chunks to the visitor, set a SPDY_CONTROL_PAYLOAD_TOO_LARGE 130 // making the SPDY session unusable for future work. The visitor's OnError 163 // When this function returns true the visitor indicates that it accepted 217 // When this function returns true the visitor indicates that it accepted 298 // The maximum size of header data chunks delivered to the framer visitor 317 // Set callbacks to be called from the framer. A visitor must be set, or 318 // else the framer will likely crash. It is acceptable for the visitor [all...] |
/external/proguard/src/proguard/classfile/editor/ |
MethodInvocationFixer.java | 25 import proguard.classfile.attribute.visitor.AttributeVisitor; 27 import proguard.classfile.constant.visitor.ConstantVisitor; 29 import proguard.classfile.instruction.visitor.InstructionVisitor; 31 import proguard.classfile.visitor.*; 52 // Return values for the visitor methods.
|
/prebuilts/tools/common/proguard/proguard4.7/lib/ |
proguard.jar | |
/external/antlr/antlr-3.4/runtime/ObjC/Framework/ |
ANTLRTreeWizard.m | 352 visit(t, ttype, new TreeWizard.Visitor() { 360 [self visit:t Type:ttype Visitor:contextVisitor]; 392 [self visit:t Type:rootTokenType Visitor:contextVisitor]; 406 /** Visit every ttype node in t, invoking the visitor. This is a quicker 408 * of the visitor action method is never set (it's nil) since using 411 - (void) visit:(ANTLRCommonTree *)t Type:(NSInteger)ttype Visitor:(ANTLRVisitor *)visitor 413 [self _visit:t Parent:nil ChildIndex:0 Type:ttype Visitor:visitor]; 421 Visitor:(ANTLRVisitor *)visito [all...] |
/external/clang/lib/ASTMatchers/ |
ASTMatchFinder.cpp | 82 // Creates an AST visitor that matches 'matcher' on all children or 138 // The following are overriding methods from the base visitor class. 220 // base visitor class. 407 MatchChildASTVisitor Visitor( 409 return Visitor.findMatch(Node); 459 MatchVisitor Visitor(ActiveASTContext, I->second); 460 Builder.visitMatches(&Visitor); 568 // Implements a BoundNodesTree::Visitor that calls a MatchCallback with 570 class MatchVisitor : public BoundNodesTreeBuilder::Visitor { 749 : Visitor(MatcherCallbackPairs) [all...] |
/art/runtime/gc/accounting/ |
heap_bitmap.h | 89 template <typename Visitor> 90 void Visit(const Visitor& visitor)
|
/dalvik/dexgen/src/com/android/dexgen/rop/code/ |
FillArrayDataInsn.java | 90 public void accept(Visitor visitor) { 91 visitor.visitFillArrayDataInsn(this);
|
PlainInsn.java | 78 public void accept(Visitor visitor) { 79 visitor.visitPlainInsn(this);
|
ThrowingInsn.java | 92 public void accept(Visitor visitor) { 93 visitor.visitThrowingInsn(this);
|
/dalvik/dx/src/com/android/dx/rop/code/ |
FillArrayDataInsn.java | 89 public void accept(Visitor visitor) { 90 visitor.visitFillArrayDataInsn(this);
|
PlainInsn.java | 79 public void accept(Visitor visitor) { 80 visitor.visitPlainInsn(this);
|
ThrowingInsn.java | 92 public void accept(Visitor visitor) { 93 visitor.visitThrowingInsn(this);
|
/dalvik/vm/alloc/ |
Verify.cpp | 24 * Visitor applied to each reference field when searching for things 38 * Visitor applied to each bitmap element to search for things that 54 * Visitor applied to each root to search for things that point to an
|
/external/apache-xml/src/main/java/org/apache/xpath/operations/ |
UnaryOperation.java | 122 public void callVisitors(ExpressionOwner owner, XPathVisitor visitor) 124 if(visitor.visitUnaryOperation(owner, this)) 126 m_right.callVisitors(this, visitor);
|
/external/chromium_org/chrome/browser/extensions/ |
external_provider_interface.h | 29 // is not transferred to the visitor. Callers of the methods below must 66 // The visitor (ExtensionsService) calls this function before it goes away. 70 // OnExternalExtension(File|UpdateUrl)Found on the |visitor| object for each
|
/external/emma/core/java12/com/vladium/jcd/cls/attribute/ |
BridgeAttribute_info.java | 38 // Visitor: 40 public void accept (final IAttributeVisitor visitor, final Object ctx) 42 visitor.visit (this, ctx);
|