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

1 2

  /packages/apps/QuickSearchBox/src/com/android/quicksearchbox/util/
Consumer.java 24 public interface Consumer<A> {
  /external/chromium_org/components/signin/core/browser/
signin_oauth_helper.h 19 class Consumer {
21 virtual ~Consumer() {}
40 Consumer* consumer);
57 Consumer* consumer_;
  /external/clang/unittests/AST/
EvaluateAsRValueTest.cpp 64 return new Consumer;
68 class Consumer : public clang::ASTConsumer {
70 ~Consumer() override {}
  /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 85 void clang::ParseAST(Preprocessor &PP, ASTConsumer *Consumer,
92 new Sema(PP, Ctx, *Consumer, TUKind, CompletionConsumer));
111 ASTConsumer *Consumer = &S.getASTConsumer();
133 External->StartTranslationUnit(Consumer);
143 if (ADecl && !Consumer->HandleTopLevelDecl(ADecl.get()))
152 Consumer->HandleTopLevelDecl(DeclGroupRef(*I));
154 Consumer->HandleTranslationUnit(S.getASTContext());
163 Consumer->PrintStats();
RAIIObjectsForParser.h 362 SourceLocation (Parser::*Consumer)();
389 Consumer = &Parser::ConsumeBrace;
393 Consumer = &Parser::ConsumeParen;
398 Consumer = &Parser::ConsumeBracket;
412 LOpen = (P.*Consumer)();
424 LClose = (P.*Consumer)();
  /external/chromium_org/ipc/
ipc_logging.h 39 class Consumer {
44 virtual ~Consumer() {}
47 void SetConsumer(Consumer* consumer);
118 Consumer* consumer_;
  /external/deqp/framework/delibs/decpp/
deThreadSafeRingBuffer.cpp 56 class Consumer : public Thread
59 Consumer (ThreadSafeRingBuffer<Message>& buffer, int numProducers)
135 vector<Consumer*> consumers;
141 consumers.push_back(new Consumer(buffer, numProducers));
144 for (vector<Consumer*>::iterator i = consumers.begin(); i != consumers.end(); i++)
160 for (vector<Consumer*>::iterator i = consumers.begin(); i != consumers.end(); i++)
179 for (vector<Consumer*>::iterator i = consumers.begin(); i != consumers.end(); i++)
deBlockBuffer.cpp 59 class Consumer : public Thread
62 Consumer (MessageBuffer& buffer, int numProducers)
172 vector<Consumer*> consumers;
178 consumers.push_back(new Consumer(buffer, numProducers));
181 for (vector<Consumer*>::iterator i = consumers.begin(); i != consumers.end(); i++)
199 for (vector<Consumer*>::iterator i = consumers.begin(); i != consumers.end(); i++)
218 for (vector<Consumer*>::iterator i = consumers.begin(); i != consumers.end(); i++)
265 class Consumer : public Thread
268 Consumer (BlockBuffer<deUint8>* buffer, deUint32 seed)
314 threads.push_back(new Consumer(&buffer, rnd.getUint32()))
    [all...]
  /external/chromium_org/google_apis/gaia/
oauth2_token_service.h 39 // consumer of the request results. The consumer is required to outlive the
40 // request. The request can be deleted. The consumer may be called back
43 // - If the consumer is not called back before the request is deleted, it will
46 // cache will be populated with the fetched results; it is just the consumer
49 // - Otherwise the consumer will be called back with the request and the fetch
68 // Class representing the consumer of a Request passed to |StartRequest|,
70 class Consumer {
72 Consumer(const std::string& id);
73 virtual ~Consumer();
    [all...]
oauth2_token_service.cc 52 OAuth2TokenService::Consumer* consumer)
54 consumer_(consumer) {
374 OAuth2TokenService::Consumer::Consumer(const std::string& id)
377 OAuth2TokenService::Consumer::~Consumer() {
413 OAuth2TokenService::Consumer* consumer) {
420 consumer);
    [all...]
  /external/clang/unittests/Tooling/
ToolingTest.cpp 28 /// Takes an ast consumer and returns it from CreateASTConsumer. This only
331 TestDiagnosticConsumer Consumer;
332 Tool.setDiagnosticConsumer(&Consumer);
336 EXPECT_EQ(1u, Consumer.NumDiagnosticsSeen);
343 TestDiagnosticConsumer Consumer;
344 Tool.setDiagnosticConsumer(&Consumer);
348 EXPECT_EQ(1u, Consumer.NumDiagnosticsSeen);
  /dalvik/dx/src/com/android/dx/cf/direct/
ClassPathOpener.java 42 private final Consumer consumer; field in class:ClassPathOpener
54 public interface Consumer {
71 * Informs consumer that an exception occurred while processing
79 * Informs consumer that processing of an archive file has begun.
112 * @param consumer {@code non-null;} callback interface
114 public ClassPathOpener(String pathname, boolean sort, Consumer consumer) {
115 this(pathname, sort, acceptAll, consumer);
125 * @param consumer {@code non-null;} callback interfac
    [all...]
  /external/clang/lib/Frontend/
FrontendAction.cpp 137 ASTConsumer* Consumer = CreateASTConsumer(CI, InFile);
138 if (!Consumer)
142 return Consumer;
144 // Make sure the non-plugin consumer is first, so that plugins can't
146 std::vector<ASTConsumer*> Consumers(1, Consumer);
212 // Create the AST consumer.
303 // Create the AST context and consumer unless this is a preprocessor only
308 std::unique_ptr<ASTConsumer> Consumer(
310 if (!Consumer)
313 CI.getASTContext().setASTMutationListener(Consumer->GetASTMutationListener())
    [all...]
  /external/clang/unittests/Lex/
PPCallbacksTest.cpp 220 ASTConsumer Consumer;
221 Sema S(PP, Context, Consumer);
  /external/chromium_org/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 93 /// The AST consumer.
94 std::unique_ptr<ASTConsumer> Consumer;
96 /// The code completion consumer.
437 bool hasASTConsumer() const { return (bool)Consumer; }
440 assert(Consumer && "Compiler instance has no AST consumer!");
441 return *Consumer;
444 /// takeASTConsumer - Remove the current AST consumer and give ownership to
446 ASTConsumer *takeASTConsumer() { return Consumer.release(); }
448 /// setASTConsumer - Replace the current AST consumer; the compiler instanc
    [all...]
ASTUnit.h 104 /// \brief The AST consumer that received information about the translation
106 std::unique_ptr<ASTConsumer> Consumer;
849 CodeCompleteConsumer &Consumer,
    [all...]
  /external/clang/test/SemaCXX/
overload-call.cpp 562 struct Consumer {
567 Consumer c;
  /external/clang/include/clang/Serialization/
ASTReader.h 358 /// \brief The AST consumer.
359 ASTConsumer *Consumer;
681 /// the consumer eagerly.
900 /// "interesting" decls to consumer inside FinishedDeserializing().
902 /// passing decls to consumer.
    [all...]
  /external/clang/lib/ARCMigrate/
ObjCMT.cpp 217 ObjCMigrateASTConsumer &Consumer;
221 ObjCMigrator(ObjCMigrateASTConsumer &consumer, ParentMap &PMap)
222 : Consumer(consumer), PMap(PMap) { }
228 if (Consumer.ASTMigrateActions & FrontendOptions::ObjCMT_Literals) {
229 edit::Commit commit(*Consumer.Editor);
230 edit::rewriteToObjCLiteralSyntax(E, *Consumer.NSAPIObj, commit, &PMap);
231 Consumer.Editor->commit(commit);
234 if (Consumer.ASTMigrateActions & FrontendOptions::ObjCMT_Subscripting) {
235 edit::Commit commit(*Consumer.Editor)
    [all...]
  /external/clang/lib/Sema/
SemaTemplateInstantiateDecl.cpp     [all...]
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
org.eclipse.osgi.services_3.2.100.v20100503.jar 
  /external/clang/include/clang/Sema/
Sema.h 242 ASTConsumer &Consumer;
249 /// \brief Code-completion consumer.
    [all...]
  /prebuilts/eclipse/mavenplugins/tycho/tycho-dependencies-m2repo/org/eclipse/tycho/tycho-bundles-external/0.20.0/eclipse/plugins/
org.eclipse.osgi.services_3.3.100.v20130513-1956.jar 

Completed in 979 milliseconds

1 2