HomeSort by relevance Sort by last modified time
    Searched full:visitor (Results 76 - 100 of 1112) sorted by null

1 2 34 5 6 7 8 91011>>

  /external/chromium_org/third_party/WebKit/Source/wtf/
TCPageMap.h 157 template<class Visitor, class MemoryReader>
158 void visitValues(Visitor& visitor, const MemoryReader& reader)
165 for (int j = 0; j < LEAF_LENGTH; j += visitor.visit(l->values[j]))
170 template<class Visitor, class MemoryReader>
171 void visitAllocations(Visitor& visitor, const MemoryReader&) {
174 visitor.visit(root_[i], sizeof(Leaf));
265 template<class Visitor, class MemoryReader>
266 void visitValues(Visitor& visitor, const MemoryReader& reader)
    [all...]
  /art/runtime/gc/collector/
mark_sweep.h 166 void ScanObjectVisit(const mirror::Object* obj, const MarkVisitor& visitor)
217 template <typename Visitor>
218 static void VisitObjectReferences(const mirror::Object* obj, const Visitor& visitor)
318 const StackVisitor *visitor);
320 void VerifyRoot(const mirror::Object* root, size_t vreg, const StackVisitor* visitor)
323 template <typename Visitor>
325 const Visitor& visitor)
329 template <typename Visitor>
    [all...]
  /art/runtime/gc/accounting/
mod_union_table.cc 88 ModUnionClearCardSetVisitor visitor(&cleared_cards_);
90 card_table->ModifyCardsAtomic(space->Begin(), space->End(), AgeCardVisitor(), visitor);
101 // Extra parameters are required since we use this same visitor signature for checking objects.
126 // We don't have an early exit since we use the visitor pattern, an early
128 AddToReferenceArrayVisitor visitor(mod_union_table_, references_);
129 collector::MarkSweep::VisitObjectReferences(obj, visitor);
144 // Extra parameters are required since we use this same visitor signature for checking objects.
180 CheckReferenceVisitor visitor(mod_union_table_, references_);
181 collector::MarkSweep::VisitObjectReferences(obj, visitor);
204 ModUnionCheckReferences visitor(this, reference_set)
    [all...]
space_bitmap.h 105 void VisitRange(uintptr_t base, uintptr_t max, Callback* visitor, void* arg) const;
120 template <typename Visitor>
121 void VisitRange(uintptr_t visit_begin, uintptr_t visit_end, const Visitor& visitor) const {
123 visitor(reinterpret_cast<mirror::Object*>(visit_begin));
127 template <typename Visitor>
128 void VisitMarkedRange(uintptr_t visit_begin, uintptr_t visit_end, const Visitor& visitor) const
248 template <typename Visitor>
249 void Visit(const Visitor& visitor) NO_THREAD_SAFETY_ANALYSIS
    [all...]
  /external/javassist/src/main/javassist/bytecode/annotation/
AnnotationMemberValue.java 90 * Accepts a visitor.
92 public void accept(MemberValueVisitor visitor) {
93 visitor.visitAnnotationMemberValue(this);
  /external/javassist/src/main/javassist/compiler/ast/
ASTree.java 36 * Is a method for the visitor pattern. It calls
37 * <code>atXXX()</code> on the given visitor, where
40 public abstract void accept(Visitor v) throws CompileError;
Visitor.java 21 * The visitor pattern.
23 * @see ast.ASTree#accept(Visitor)
25 public class Visitor {
  /external/proguard/src/proguard/classfile/attribute/
ExceptionsAttribute.java 24 import proguard.classfile.attribute.visitor.AttributeVisitor;
25 import proguard.classfile.constant.visitor.ConstantVisitor;
69 * Applies the given constant pool visitor to all exception class pool info
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
  /external/proguard/src/proguard/classfile/attribute/annotation/
AnnotationDefaultAttribute.java 25 import proguard.classfile.attribute.annotation.visitor.ElementValueVisitor;
26 import proguard.classfile.attribute.visitor.AttributeVisitor;
59 * Applies the given visitor to the default element value.
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/visitor/
ExceptionHandlerConstantVisitor.java 21 package proguard.classfile.visitor;
24 import proguard.classfile.constant.visitor.ConstantVisitor;
26 import proguard.classfile.attribute.visitor.ExceptionInfoVisitor;
ReferencedMemberVisitor.java 21 package proguard.classfile.visitor;
25 import proguard.classfile.attribute.annotation.visitor.ElementValueVisitor;
27 import proguard.classfile.constant.visitor.ConstantVisitor;
  /external/proguard/src/proguard/optimize/
KeepMarker.java 25 import proguard.classfile.visitor.*;
39 // A visitor info flag to indicate the visitor accepter is being kept.
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
  /external/proguard/src/proguard/preverify/
Preverifier.java 25 import proguard.classfile.attribute.visitor.AllAttributeVisitor;
26 import proguard.classfile.visitor.*;
53 // Clean up any old visitor info.
SubroutineInliner.java 25 import proguard.classfile.attribute.visitor.AllAttributeVisitor;
26 import proguard.classfile.visitor.*;
53 // Clean up any old visitor info.
  /art/compiler/sea_ir/types/
type_inference_visitor.h 22 #include "sea_ir/ir/visitor.h"
28 // the current type of the operands. The type is stored in the visitor.
29 // We may be better off by using a separate visitor type hierarchy that has return values
33 // that does not horribly duplicate the visitor infrastructure code (version 1: no return value,
  /external/chromium_org/net/quic/
quic_spdy_decompressor_test.cc 50 TestDecompressorVisitor visitor; local
57 &visitor));
64 &visitor));
65 EXPECT_EQ(SpdyUtils::SerializeUncompressedHeaders(headers), visitor.data());
  /external/clang/unittests/Frontend/
FrontendActionTest.cpp 31 return new Visitor(decl_names);
35 class Visitor : public ASTConsumer, public RecursiveASTVisitor<Visitor> {
37 Visitor(std::vector<std::string> &decl_names) : decl_names_(decl_names) {}
  /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.
  /frameworks/base/tools/layoutlib/create/src/com/android/tools/layoutlib/create/
RenameClassAdapter.java 22 * This class visitor renames a class from a given old name to a given new name.
23 * The class visitor will also rename all inner classes and references in the methods.
38 * Creates a class visitor that renames a class from a given old name to a given new name.
39 * The class visitor will also rename all inner classes and references in the methods.

Completed in 296 milliseconds

1 2 34 5 6 7 8 91011>>