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

  /external/clang/lib/Parse/
ParseAST.cpp 40 void clang::ParseAST(Preprocessor &PP, ASTConsumer *Consumer,
46 OwningPtr<Sema> S(new Sema(PP, Ctx, *Consumer,
67 ASTConsumer *Consumer = &S.getASTConsumer();
90 External->StartTranslationUnit(Consumer);
100 if (ADecl && !Consumer->HandleTopLevelDecl(ADecl.get()))
109 Consumer->HandleTopLevelDecl(DeclGroupRef(*I));
111 Consumer->HandleTranslationUnit(S.getASTContext());
120 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)();
  /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
31 class Consumer {
53 virtual ~Consumer() {}
56 class DiffConsumer : public 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 120 ObjCMigrateASTConsumer &Consumer;
123 ObjCMigrator(ObjCMigrateASTConsumer &consumer) : Consumer(consumer) { }
129 if (Consumer.MigrateLiterals) {
130 edit::Commit commit(*Consumer.Editor);
131 edit::rewriteToObjCLiteralSyntax(E, *Consumer.NSAPIObj, commit);
132 Consumer.Editor->commit(commit);
135 if (Consumer.MigrateSubscripting) {
136 edit::Commit commit(*Consumer.Editor)
    [all...]
  /external/clang/lib/Frontend/
FrontendAction.cpp 127 ASTConsumer* Consumer = CreateASTConsumer(CI, InFile);
128 if (!Consumer)
132 return Consumer;
134 // Make sure the non-plugin consumer is first, so that plugins can't
136 std::vector<ASTConsumer*> Consumers(1, Consumer);
197 /// Create the AST consumer.
239 /// Create the AST context and consumer unless this is a preprocessor only
244 OwningPtr<ASTConsumer> Consumer(
246 if (!Consumer)
249 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 88 /// The AST consumer.
89 OwningPtr<ASTConsumer> Consumer;
91 /// The code completion consumer.
381 bool hasASTConsumer() const { return Consumer != 0; }
384 assert(Consumer && "Compiler instance has no AST consumer!");
385 return *Consumer;
388 /// takeASTConsumer - Remove the current AST consumer and give ownership to
390 ASTConsumer *takeASTConsumer() { return Consumer.take(); }
392 /// setASTConsumer - Replace the current AST consumer; the compiler instanc
    [all...]
ASTUnit.h 76 /// \brief The AST consumer that received information about the translation
78 OwningPtr<ASTConsumer> Consumer;
787 CodeCompleteConsumer &Consumer,
  /external/clang/test/SemaCXX/
overload-call.cpp 562 struct Consumer {
567 Consumer c;
  /external/clang/include/clang/Serialization/
ASTReader.h 245 /// \brief The AST consumer.
246 ASTConsumer *Consumer;
456 /// consumer eagerly.
656 /// "interesting" decls to consumer inside FinishedDeserializing().
658 /// passing decls to consumer.
683 /// "interesting" to the ASTConsumer, when we get that AST consumer.
    [all...]
  /external/clang/include/clang/Sema/
Sema.h 204 ASTConsumer &Consumer;
214 /// \brief Code-completion consumer.
733 Sema(Preprocessor &pp, ASTContext &ctxt, ASTConsumer &consumer,
751 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/tools/common/osgi/
osgi.jar 
  /prebuilts/sdk/tools/lib/
dx.jar 

Completed in 396 milliseconds