HomeSort by relevance Sort by last modified time
    Searched full:visitor (Results 151 - 175 of 737) sorted by null

1 2 3 4 5 67 8 91011>>

  /external/proguard/src/proguard/shrink/
UsedClassFilter.java 24 import proguard.classfile.visitor.ClassVisitor;
45 * @param classVisitor the class visitor to which the visiting will be
UsedMemberFilter.java 24 import proguard.classfile.visitor.MemberVisitor;
45 * @param memberVisitor the member visitor to which the visiting will be
  /external/clang/include/clang/StaticAnalyzer/Core/BugReporter/
BugReporterVisitor.h 38 /// The last parameter can be used to register a new visitor with the given
49 /// Also note that at most one visitor of a BugReport should generate a
71 /// \brief Convenience method to create a visitor given only the MemRegion.
72 /// Returns NULL if the visitor cannot be created. For example, when the
77 /// Creates a visitor for every VarDecl inside a Stmt and registers it with
127 /// Visitor that tries to report interesting diagnostics from conditions.
  /external/proguard/src/proguard/classfile/visitor/
ClassCleaner.java 21 package proguard.classfile.visitor;
26 import proguard.classfile.attribute.annotation.visitor.*;
28 import proguard.classfile.attribute.preverification.visitor.*;
29 import proguard.classfile.attribute.visitor.*;
31 import proguard.classfile.constant.visitor.ConstantVisitor;
35 * This <code>ClassVisitor</code> removes all visitor information of the
  /external/chromium/net/spdy/
spdy_framer.h 71 // When this function returns true the visitor indicates that it accepted
129 // The maximum size of header data chunks delivered to the framer visitor
138 // Set callbacks to be called from the framer. A visitor must be set, or
139 // else the framer will likely crash. It is acceptable for the visitor
140 // to do nothing. If this is called multiple times, only the last visitor
142 void set_visitor(SpdyFramerVisitorInterface* visitor) {
143 visitor_ = visitor;
383 // Deliver the given control frame's compressed headers block to the visitor
384 // in decompressed form, in chunks. Returns true if the visitor has
389 // Deliver the given control frame's compressed headers block to the visitor
    [all...]
  /dalvik/dexgen/src/com/android/dexgen/rop/code/
BasicBlockList.java 93 RegCountVisitor visitor = new RegCountVisitor(); local
94 forEachInsn(visitor);
95 regCount = visitor.getRegCount();
172 * @param visitor {@code non-null;} visitor to use
174 public void forEachInsn(Insn.Visitor visitor) {
180 insns.forEach(visitor);
312 * Instruction visitor class for counting registers used.
315 implements Insn.Visitor {
    [all...]
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/
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);
  /sdk/lint/libs/lint_api/src/com/android/tools/lint/api/
Lint.java 133 XmlVisitor visitor = getVisitor(xmlChecks, type); local
134 if (visitor != null) {
136 visitor.visitFile(context, file);
193 // If the list of detectors hasn't changed, then just use the current visitor!
242 XmlVisitor visitor = getVisitor(xmlChecks, type); local
243 if (visitor != null) { // if not, there are no applicable rules in this folder
247 visitor.visitFile(context, xmlFile);
  /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/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.
  /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/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);
  /external/emma/core/java12/com/vladium/jcd/cls/constant/
CONSTANT_Fieldref_info.java 46 // Visitor:
48 public Object accept (final ICONSTANTVisitor visitor, final Object ctx)
50 return visitor.visit (this, ctx);
CONSTANT_InterfaceMethodref_info.java 45 // Visitor:
47 public Object accept (final ICONSTANTVisitor visitor, final Object ctx)
49 return visitor.visit (this, ctx);
CONSTANT_Methodref_info.java 46 // Visitor:
48 public Object accept (final ICONSTANTVisitor visitor, final Object ctx)
50 return visitor.visit (this, ctx);

Completed in 1813 milliseconds

1 2 3 4 5 67 8 91011>>