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

1 23 4 5 6 7 8 91011>>

  /prebuilts/tools/common/proguard/
proguard4.7.zip 
  /art/runtime/native/
dalvik_system_VMStack.cc 70 NthCallerVisitor visitor(soa.Self(), 2);
71 visitor.WalkStack();
72 return soa.AddLocalReference<jobject>(visitor.caller->GetDeclaringClass()->GetClassLoader());
99 ClosestUserClassLoaderVisitor visitor(soa.Self(), bootstrap, system);
100 visitor.WalkStack();
101 return soa.AddLocalReference<jobject>(visitor.class_loader);
107 NthCallerVisitor visitor(soa.Self(), 3);
108 visitor.WalkStack();
109 return soa.AddLocalReference<jclass>(visitor.caller->GetDeclaringClass());
  /external/chromium_org/net/quic/
reliable_quic_stream.h 33 QuicSpdyDecompressor::Visitor {
35 // Visitor receives callbacks from the stream.
36 class Visitor {
38 Visitor() {}
44 virtual ~Visitor() {}
47 DISALLOW_COPY_AND_ASSIGN(Visitor);
111 Visitor* visitor() { return visitor_; } function in class:net::ReliableQuicStream
112 void set_visitor(Visitor* visitor) { visitor_ = visitor;
    [all...]
  /external/openfst/src/include/fst/
visit.h 32 // Visitor Interface - class determines actions taken during a visit.
37 // Note this is more general than the visitor interface in
41 // class Visitor {
45 // Visitor(T *return_data);
62 // Performs queue-dependent visitation. Visitor class argument
67 // some DFS-specific Visitor behavior.
69 void Visit(const Fst<Arc> &fst, V *visitor, Q *queue, ArcFilter filter) {
74 visitor->InitVisit(fst);
78 visitor->FinishVisit();
109 visit = visitor->InitState(root, root)
    [all...]
  /external/proguard/src/proguard/optimize/peephole/
PeepholeOptimizer.java 25 import proguard.classfile.attribute.visitor.AttributeVisitor;
27 import proguard.classfile.instruction.visitor.InstructionVisitor;
32 * instruction visitor. The instruction visitor should be using the same
50 * @param instructionVisitor the instruction visitor that performs
67 * @param instructionVisitor the instruction visitor that performs
  /packages/apps/UnifiedEmail/src/com/android/mail/utils/
DequeMap.java 32 public interface Visitor<V> {
90 * Allows a {@link Visitor} to operate on each value V in this structure, irrespective of each
94 * @param visitor
97 public void visitAll(Visitor<V> visitor) {
100 visitor.visit(item);
  /packages/apps/UnifiedEmail/src/org/apache/james/mime4j/field/address/parser/
SimpleNode.java 48 /** Accept the visitor. **/
49 public Object jjtAccept(AddressListParserVisitor visitor, Object data) {
50 return visitor.visit(this, data);
53 /** Accept the visitor. **/
54 public Object childrenAccept(AddressListParserVisitor visitor, Object data) {
57 children[i].jjtAccept(visitor, data);
  /external/chromium/net/tools/flip_server/
mem_cache.cc 141 StoreBodyAndHeadersVisitor visitor; local
143 framer.set_balsa_visitor(&visitor);
144 framer.set_balsa_headers(&(visitor.headers));
171 if (!visitor.body.length())
172 visitor.body = filename_contents.substr(pos);
176 visitor.headers.RemoveAllOfHeader("content-length");
177 visitor.headers.RemoveAllOfHeader("transfer-encoding");
178 visitor.headers.RemoveAllOfHeader("connection");
179 visitor.headers.AppendHeader("transfer-encoding", "chunked");
180 visitor.headers.AppendHeader("connection", "keep-alive")
    [all...]
  /external/chromium_org/net/tools/flip_server/
mem_cache.cc 142 StoreBodyAndHeadersVisitor visitor; local
144 framer.set_balsa_visitor(&visitor);
145 framer.set_balsa_headers(&(visitor.headers));
172 if (!visitor.body.length())
173 visitor.body = filename_contents.substr(pos);
177 visitor.headers.RemoveAllOfHeader("content-length");
178 visitor.headers.RemoveAllOfHeader("transfer-encoding");
179 visitor.headers.RemoveAllOfHeader("connection");
180 visitor.headers.AppendHeader("transfer-encoding", "chunked");
181 visitor.headers.AppendHeader("connection", "keep-alive")
    [all...]
  /external/chromium_org/net/quic/crypto/
crypto_framer.h 52 // Set callbacks to be called from the framer. A visitor must be set, or
53 // else the framer will crash. It is acceptable for the visitor to do
54 // nothing. If this is called multiple times, only the last visitor
55 // will be used. |visitor| will be owned by the framer.
56 void set_visitor(CryptoFramerVisitorInterface* visitor) {
57 visitor_ = visitor;
76 // Clears per-message state. Does not clear the visitor.
97 // Visitor to invoke when messages are parsed.
crypto_framer_test.cc 46 // Counters from the visitor callbacks.
253 test::TestCryptoVisitor visitor; local
255 framer.set_visitor(&visitor);
283 EXPECT_EQ(0, visitor.error_count_);
284 ASSERT_EQ(1u, visitor.messages_.size());
285 const CryptoHandshakeMessage& message = visitor.messages_[0];
293 test::TestCryptoVisitor visitor; local
295 framer.set_visitor(&visitor);
330 EXPECT_EQ(0, visitor.error_count_);
331 ASSERT_EQ(1u, visitor.messages_.size())
341 test::TestCryptoVisitor visitor; local
381 test::TestCryptoVisitor visitor; local
409 test::TestCryptoVisitor visitor; local
437 test::TestCryptoVisitor visitor; local
457 test::TestCryptoVisitor visitor; local
    [all...]
  /external/chromium_org/v8/src/
objects-visiting.h 37 // and one or more virtual method calls on visitor itself.
38 // Static visitor is different: it provides a dispatch table which contains
40 // field which contains an index of specialized visitor to use.
103 // For data objects, JS objects and structs along with generic visitor which
107 // holes) starting from the id of visitor specialized for 2 words objects
108 // (base visitor id) and ending with the id of generic visitor.
109 // Method GetVisitorIdForSize depends on this ordering to calculate visitor
110 // id of specialized visitor from given instance size, base visitor id an
    [all...]
  /art/runtime/
throw_location.cc 36 void ThrowLocation::VisitRoots(RootVisitor* visitor, void* arg) {
38 visitor(this_object_, arg);
41 visitor(method_, arg);
  /external/proguard/src/proguard/classfile/
Member.java 23 import proguard.classfile.visitor.*;
48 * Accepts the given class visitor.
54 * accept the given visitor.
  /external/proguard/src/proguard/classfile/attribute/annotation/visitor/
AnnotationVisitor.java 21 package proguard.classfile.attribute.annotation.visitor;
27 * This interface specifies the methods for a visitor of
30 * is not strictly necessary as a visitor.
  /external/proguard/src/proguard/classfile/attribute/visitor/
ExceptionInfoVisitor.java 21 package proguard.classfile.attribute.visitor;
27 * This interface specifies the methods for a visitor of
30 * is not strictly necessary as a visitor.
InnerClassesInfoVisitor.java 21 package proguard.classfile.attribute.visitor;
28 * This interface specifies the methods for a visitor of
31 * is not strictly necessary as a visitor.
LineNumberInfoVisitor.java 21 package proguard.classfile.attribute.visitor;
28 * This interface specifies the methods for a visitor of
31 * is not strictly necessary as a visitor.
LocalVariableInfoVisitor.java 21 package proguard.classfile.attribute.visitor;
28 * This interface specifies the methods for a visitor of
31 * is not strictly necessary as a visitor.
LocalVariableTypeInfoVisitor.java 21 package proguard.classfile.attribute.visitor;
28 * This interface specifies the methods for a visitor of
31 * is not strictly necessary as a visitor.
  /external/proguard/src/proguard/classfile/visitor/
ClassPoolVisitor.java 21 package proguard.classfile.visitor;
27 * This interface specifies the methods for a visitor of
30 * is not strictly necessary as a visitor.
  /external/smali/util/src/main/java/ds/tree/
RadixTreeImpl.java 59 Visitor<T,T> visitor = new VisitorImpl<T,T>() { local
68 visit(key, visitor);
70 return visitor.getResult();
74 Visitor<T,T> visitor = new VisitorImpl<T,T>() { local
85 visit(key, visitor);
87 return visitor.getResult() != null;
91 Visitor<T, Boolean> visitor = new VisitorImpl<T, Boolean>(Boolean.FALSE) local
310 Visitor<T, Boolean> visitor = new VisitorImpl<T,Boolean>(Boolean.FALSE) { local
    [all...]
Visitor.java 30 * The visitor interface that is used by {@link RadixTreeImpl} for perfroming
38 public interface Visitor<T, R> {
40 * This method gets called by {@link RadixTreeImpl#visit(String, Visitor) visit}
50 * The visitor can store any type of result object, depending on the context of
53 * @return The result captured by the visitor.
  /external/proguard/src/proguard/classfile/attribute/annotation/
Annotation.java 24 import proguard.classfile.attribute.annotation.visitor.ElementValueVisitor;
25 import proguard.classfile.visitor.ClassVisitor;
85 * Applies the given visitor to the first referenced class. This is the
102 * Applies the given visitor to all referenced classes.
121 * Applies the given visitor to all element value pairs.
  /external/clang/unittests/Tooling/
TestVisitor.h 44 /// \brief Runs the current AST visitor over the given code.
66 FindConsumer(TestVisitor *Visitor) : Visitor(Visitor) {}
69 Visitor->Context = &Context;
70 Visitor->TraverseDecl(Context.getTranslationUnitDecl());
74 TestVisitor *Visitor;
79 TestAction(TestVisitor *Visitor) : Visitor(Visitor) {}
    [all...]

Completed in 1030 milliseconds

1 23 4 5 6 7 8 91011>>