HomeSort by relevance Sort by last modified time
    Searched defs:Consumer (Results 1 - 20 of 20) sorted by null

  /packages/apps/QuickSearchBox/src/com/android/quicksearchbox/util/
Consumer.java 24 public interface Consumer<A> {
  /external/llvm/tools/llvm-diff/
DiffConsumer.h 1 //===-- DiffConsumer.h - Difference Consumer --------------------*- C++ -*-===//
10 // This header defines the interface to the LLVM difference Consumer
30 class Consumer {
52 virtual ~Consumer() {}
55 class DiffConsumer : public Consumer {
  /external/clang/lib/Parse/
ParseAST.cpp 74 void clang::ParseAST(Preprocessor &PP, ASTConsumer *Consumer,
80 OwningPtr<Sema> S(new Sema(PP, Ctx, *Consumer, TUKind, CompletionConsumer));
99 ASTConsumer *Consumer = &S.getASTConsumer();
121 External->StartTranslationUnit(Consumer);
131 if (ADecl && !Consumer->HandleTopLevelDecl(ADecl.get()))
140 Consumer->HandleTopLevelDecl(DeclGroupRef(*I));
142 Consumer->HandleTranslationUnit(S.getASTContext());
151 Consumer->PrintStats();
RAIIObjectsForParser.h 362 SourceLocation (Parser::*Consumer)();
388 Consumer = &Parser::ConsumeBrace;
392 Consumer = &Parser::ConsumeParen;
397 Consumer = &Parser::ConsumeBracket;
411 LOpen = (P.*Consumer)();
423 LClose = (P.*Consumer)();
  /external/chromium/base/memory/
weak_ptr_unittest.cc 39 struct Consumer { WeakPtr<Producer> producer; };
131 scoped_ptr<Consumer> consumer(OffThreadObjectCreator<Consumer>::NewObject());
133 consumer->producer = producer.AsWeakPtr();
134 EXPECT_EQ(&producer, consumer->producer.get());
  /dalvik/dx/src/com/android/dx/cf/direct/
ClassPathOpener.java 42 private final Consumer consumer; field in class:ClassPathOpener
53 public interface Consumer {
70 * Informs consumer that an exception occurred while processing
78 * Informs consumer that processing of an archive file has begun.
92 * @param consumer {@code non-null;} callback interface
94 public ClassPathOpener(String pathname, boolean sort, Consumer consumer) {
97 this.consumer = consumer;
    [all...]
  /external/clang/lib/ARCMigrate/
ObjCMT.cpp 123 ObjCMigrateASTConsumer &Consumer;
127 ObjCMigrator(ObjCMigrateASTConsumer &consumer, ParentMap &PMap)
128 : Consumer(consumer), PMap(PMap) { }
134 if (Consumer.MigrateLiterals) {
135 edit::Commit commit(*Consumer.Editor);
136 edit::rewriteToObjCLiteralSyntax(E, *Consumer.NSAPIObj, commit, &PMap);
137 Consumer.Editor->commit(commit);
140 if (Consumer.MigrateSubscripting) {
141 edit::Commit commit(*Consumer.Editor)
    [all...]
  /external/clang/lib/Frontend/
FrontendAction.cpp 130 ASTConsumer* Consumer = CreateASTConsumer(CI, InFile);
131 if (!Consumer)
135 return Consumer;
137 // Make sure the non-plugin consumer is first, so that plugins can't
139 std::vector<ASTConsumer*> Consumers(1, Consumer);
206 // Create the AST consumer.
279 // Create the AST context and consumer unless this is a preprocessor only
284 OwningPtr<ASTConsumer> Consumer(
286 if (!Consumer)
289 CI.getASTContext().setASTMutationListener(Consumer->GetASTMutationListener())
    [all...]
  /external/chromium/chrome/common/extensions/docs/examples/apps/hello-python/oauth2/
__init__.py 68 def build_xoauth_string(url, consumer, token=None):
70 request = Request.from_consumer_and_token(consumer, token,
74 request.sign_request(signing_method, consumer, token)
104 class Consumer(object):
105 """A consumer of OAuth-protected services.
107 The OAuth consumer is a "third-party" service that wants to access
111 Usually a consumer must be registered with the service provider by the
112 developer of the consumer software. As part of that process, the service
113 provider gives the consumer a *key* and a *secret* with which the consumer
    [all...]
  /external/clang/include/clang/Frontend/
CompilerInstance.h 89 /// The AST consumer.
90 OwningPtr<ASTConsumer> Consumer;
92 /// The code completion consumer.
398 bool hasASTConsumer() const { return Consumer != 0; }
401 assert(Consumer && "Compiler instance has no AST consumer!");
402 return *Consumer;
405 /// takeASTConsumer - Remove the current AST consumer and give ownership to
407 ASTConsumer *takeASTConsumer() { return Consumer.take(); }
409 /// setASTConsumer - Replace the current AST consumer; the compiler instanc
    [all...]
ASTUnit.h 84 /// \brief The AST consumer that received information about the translation
86 OwningPtr<ASTConsumer> Consumer;
819 CodeCompleteConsumer &Consumer,
    [all...]
  /external/clang/test/SemaCXX/
overload-call.cpp 562 struct Consumer {
567 Consumer c;
  /external/clang/lib/Sema/
SemaTemplateInstantiateDecl.cpp     [all...]
  /external/clang/include/clang/Serialization/
ASTReader.h 291 /// \brief The AST consumer.
292 ASTConsumer *Consumer;
586 /// consumer eagerly.
788 /// "interesting" decls to consumer inside FinishedDeserializing().
790 /// passing decls to consumer.
809 /// "interesting" to the ASTConsumer, when we get that AST consumer.
    [all...]
  /external/clang/include/clang/Sema/
Sema.h 216 ASTConsumer &Consumer;
223 /// \brief Code-completion consumer.
807 Sema(Preprocessor &pp, ASTContext &ctxt, ASTConsumer &consumer,
825 ASTConsumer &getASTConsumer() const { return Consumer; }
    [all...]
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
org.eclipse.osgi.services_3.2.100.v20100503.jar 
  /prebuilts/devtools/tools/lib/
osgi-4.0.0.jar 
  /prebuilts/tools/common/m2/repository/com/android/external/osgi/osgi/4.0.0/
osgi-4.0.0.jar 
  /prebuilts/tools/common/osgi/
osgi.jar 
  /prebuilts/sdk/tools/lib/
dx.jar 

Completed in 653 milliseconds