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

1 23 4 5 6 7 8 91011>>

  /external/clang/unittests/Frontend/
FrontendActionTest.cpp 32 return new Visitor(decl_names);
36 class Visitor : public ASTConsumer, public RecursiveASTVisitor<Visitor> {
38 Visitor(std::vector<std::string> &decl_names) : decl_names_(decl_names) {}
  /external/proguard/src/proguard/classfile/attribute/
CodeAttribute.java 24 import proguard.classfile.attribute.visitor.*;
26 import proguard.classfile.instruction.visitor.InstructionVisitor;
106 * Applies the given instruction visitor to all instructions.
115 * Applies the given instruction visitor to the instruction at the specified
126 * Applies the given instruction visitor to all instructions in the
145 * Applies the given exception visitor to all exceptions.
159 * Applies the given exception visitor to all exceptions that are applicable
176 * Applies the given exception visitor to all exceptions that are applicable
193 * Applies the given attribute visitor to all attributes.
EnclosingMethodAttribute.java 24 import proguard.classfile.attribute.visitor.AttributeVisitor;
25 import proguard.classfile.visitor.*;
102 * Lets the referenced class accept the given visitor.
114 * Lets the referenced class member accept the given visitor.
InnerClassesInfo.java 24 import proguard.classfile.constant.visitor.ConstantVisitor;
70 * Applies the given constant pool visitor to the class constant of the
84 * Applies the given constant pool visitor to the class constant of the
98 * Applies the given constant pool visitor to the Utf8 constant of the
Attribute.java 24 import proguard.classfile.attribute.visitor.AttributeVisitor;
75 * Accepts the given visitor.
83 * Accepts the given visitor in the context of the given field.
99 * Accepts the given visitor in the context of the given method.
115 * Accepts the given visitor in the context of the given code attribute.
  /external/proguard/src/proguard/classfile/attribute/annotation/
AnnotationsAttribute.java 25 import proguard.classfile.attribute.annotation.visitor.AnnotationVisitor;
61 * Applies the given visitor to all class annotations.
75 * Applies the given visitor to all field annotations.
89 * Applies the given visitor to all method annotations.
ElementValue.java 24 import proguard.classfile.attribute.annotation.visitor.ElementValueVisitor;
25 import proguard.classfile.visitor.MemberVisitor;
97 * Accepts the given visitor.
104 * Applies the given visitor to the referenced method.
  /external/proguard/src/proguard/classfile/attribute/preverification/
VerificationType.java 25 import proguard.classfile.attribute.preverification.visitor.VerificationTypeVisitor;
59 * Accepts the given visitor in the context of a method's code, either on
66 * Accepts the given visitor in the context of a stack in a method's code .
72 * Accepts the given visitor in the context of a variable in a method's code.
  /external/proguard/src/proguard/optimize/
MethodStaticizer.java 24 import proguard.classfile.attribute.visitor.AttributeVisitor;
27 import proguard.classfile.visitor.MemberVisitor;
58 * Creates a new MethodStaticizer with an extra visitor.
59 * @param extraStaticMemberVisitor an optional extra visitor for all
DuplicateInitializerInvocationFixer.java 25 import proguard.classfile.attribute.visitor.AttributeVisitor;
27 import proguard.classfile.constant.visitor.ConstantVisitor;
30 import proguard.classfile.instruction.visitor.InstructionVisitor;
32 import proguard.classfile.visitor.MemberVisitor;
66 * @param extraAddedInstructionVisitor an optional extra visitor for all
  /external/proguard/src/proguard/classfile/constant/visitor/
AllConstantVisitor.java 21 package proguard.classfile.constant.visitor;
24 import proguard.classfile.visitor.ClassVisitor;
  /external/proguard/src/proguard/classfile/instruction/visitor/
AllInstructionVisitor.java 21 package proguard.classfile.instruction.visitor;
25 import proguard.classfile.attribute.visitor.AttributeVisitor;
  /external/proguard/src/proguard/classfile/visitor/
ClassVisitor.java 21 package proguard.classfile.visitor;
27 * This interface specifies the methods for a visitor of
ExceptionCounter.java 21 package proguard.classfile.visitor;
25 import proguard.classfile.attribute.visitor.ExceptionInfoVisitor;
MemberVisitor.java 21 package proguard.classfile.visitor;
27 * This interface specifies the methods for a visitor of
  /packages/apps/Email/emailcommon/src/org/apache/james/mime4j/field/address/parser/
Node.java 35 /** Accept the visitor. **/
36 public Object jjtAccept(AddressListParserVisitor visitor, Object data);
  /external/clang/tools/libclang/
CIndexHigh.cpp 46 CXCursorAndRangeVisitor visitor; member in struct:__anon5352::FindFileIdRefVisitData
53 CXCursorAndRangeVisitor visitor)
54 : TU(TU), FID(FID), SelectorIdIdx(selectorIdIdx), visitor(visitor) {
189 data->visitor.visit(data->visitor.context, cursor,
197 CXCursorAndRangeVisitor Visitor) {
207 Visitor);
253 CXCursorAndRangeVisitor visitor) {
266 if (!visitor.visit)
296 visitor); local
309 CXCursorAndRangeVisitor visitor = { block, local
    [all...]
  /dalvik/dexgen/src/com/android/dexgen/rop/code/
InsnList.java 70 * @param visitor {@code non-null;} visitor to use
72 public void forEach(Insn.Visitor visitor) {
76 get(i).accept(visitor);
  /dalvik/dx/src/com/android/dx/merge/
InstructionTransformer.java 59 private class GenericVisitor implements CodeReader.Visitor {
65 private class StringVisitor implements CodeReader.Visitor {
74 private class FieldVisitor implements CodeReader.Visitor {
83 private class TypeVisitor implements CodeReader.Visitor {
92 private class MethodVisitor implements CodeReader.Visitor {
  /dalvik/dx/src/com/android/dx/rop/code/
InsnList.java 70 * @param visitor {@code non-null;} visitor to use
72 public void forEach(Insn.Visitor visitor) {
76 get(i).accept(visitor);
  /external/apache-xml/src/main/java/org/apache/xalan/templates/
ElemIf.java 141 * @param visitor The visitor whose appropriate method will be called.
143 protected void callChildVisitors(XSLTVisitor visitor, boolean callAttrs)
146 m_test.getExpression().callVisitors(m_test, visitor);
147 super.callChildVisitors(visitor, callAttrs);
ElemWhen.java 117 * @param visitor The visitor whose appropriate method will be called.
119 protected void callChildVisitors(XSLTVisitor visitor, boolean callAttrs)
122 m_test.getExpression().callVisitors(m_test, visitor);
123 super.callChildVisitors(visitor, callAttrs);
  /external/proguard/src/proguard/shrink/
Shrinker.java 25 import proguard.classfile.attribute.visitor.*;
26 import proguard.classfile.visitor.*;
61 // Clean up any old visitor info.
65 // Create a visitor for marking the seeds.
99 // Create a visitor for explaining classes and class members.
  /external/clang/include/clang/Serialization/
ModuleManager.h 120 /// \param Visitor A visitor function that will be invoked with each
126 /// \param UserData User data associated with the visitor object, which
127 /// will be passed along to the visitor.
128 void visit(bool (*Visitor)(Module &M, void *UserData), void *UserData);
138 /// \param Visitor A visitor function that will be invoked with each
141 /// visitor may return true at any time to abort the depth-first
144 /// \param UserData User data ssociated with the visitor object,
146 void visitDepthFirst(bool (*Visitor)(Module &M, bool Preorder,
    [all...]
  /external/proguard/docs/manual/retrace/
examples.html 103 at proguard.classfile.visitor.NamedMethodVisitor.visitProgramClassFile(ProGuard:51)
105 at proguard.classfile.visitor.ClassFileUpDownTraveler.visitProgramClassFile(ProGuard:109)
107 at proguard.classfile.visitor.ClassFileUpDownTraveler.visitLibraryClassFile(ProGuard:186)
120 at proguard.classfile.visitor.VariableClassFileVisitor.visitProgramClassFile(ProGuard:66)
121 at proguard.classfile.visitor.MultiClassFileVisitor.visitProgramClassFile(ProGuard:83)
122 at proguard.classfile.visitor.FilteredClassFileVisitor.visitProgramClassFile(ProGuard:69)
125 at proguard.classfile.visitor.NamedClassFileVisitor.visitClassPool(ProGuard:49)
152 at proguard.classfile.CodeAttrInfo.void accept(proguard.classfile.ClassFile,proguard.classfile.visitor.AttrInfoVisitor)(ProGuard:129)
153 at proguard.classfile.ProgramMemberInfo.void attributesAccept(proguard.classfile.ProgramClassFile,proguard.classfile.visitor.AttrInfoVisitor)(ProGuard:125)
156 at proguard.classfile.ProgramMethodInfo.void accept(proguard.classfile.ProgramClassFile,proguard.classfile.visitor.MemberInfoVisitor)(ProGuard:55
    [all...]

Completed in 2238 milliseconds

1 23 4 5 6 7 8 91011>>