HomeSort by relevance Sort by last modified time
    Searched full:consumer (Results 126 - 150 of 832) sorted by null

1 2 3 4 56 7 8 91011>>

  /packages/apps/Gallery2/src/com/android/gallery3d/data/
MediaSet.java 185 // media sets), in an efficient order. ItemConsumer.consumer() will be
187 public void enumerateMediaItems(ItemConsumer consumer) {
188 enumerateMediaItems(consumer, 0);
191 public void enumerateTotalMediaItems(ItemConsumer consumer) {
192 enumerateTotalMediaItems(consumer, 0);
202 protected int enumerateMediaItems(ItemConsumer consumer, int startIndex) {
210 consumer.consume(startIndex + start + i, item);
220 ItemConsumer consumer, int startIndex) {
222 start += enumerateMediaItems(consumer, startIndex);
226 consumer, startIndex + start)
    [all...]
  /external/chromium/chrome/browser/password_manager/
password_store_default_unittest.cc 192 MockPasswordStoreConsumer consumer; local
195 ON_CALL(consumer, OnPasswordStoreRequestDone(_, _))
199 EXPECT_CALL(consumer,
204 store->GetAutofillableLogins(&consumer);
306 MockPasswordStoreConsumer consumer; local
309 ON_CALL(consumer, OnPasswordStoreRequestDone(_, _))
314 EXPECT_CALL(consumer,
319 store->GetAutofillableLogins(&consumer);
324 EXPECT_CALL(consumer,
329 store->GetBlacklistLogins(&consumer);
410 MockPasswordStoreConsumer consumer; local
    [all...]
  /frameworks/av/camera/tests/
ProCameraTests.cpp 265 const sp<CpuConsumer>& consumer) {
274 if (OK == (ret = consumer->lockNextBuffer(&buf))) {
280 EXPECT_OK(consumer->unlockBuffer(buf));
755 sp<CpuConsumer> consumer; local
757 TEST_FORMAT_DEPTH, TEST_CPU_HEAP_COUNT, &consumer, &streamId));
822 sp<CpuConsumer> consumer; local
824 TEST_FORMAT_MAIN, TEST_CPU_HEAP_COUNT, &consumer, &streamId));
829 TEST_FORMAT_DEPTH, TEST_CPU_HEAP_COUNT, &consumer, &depthStreamId));
903 sp<CpuConsumer> consumer; local
905 TEST_FORMAT_MAIN, TEST_CPU_HEAP_COUNT, &consumer, &streamId))
969 sp<CpuConsumer> consumer; local
997 sp<CpuConsumer> consumer; local
1037 sp<CpuConsumer> consumer; local
1122 sp<CpuConsumer> consumer; local
1176 sp<CpuConsumer> consumer; local
    [all...]
  /external/chromium_org/google_apis/gaia/
gaia_auth_fetcher.h 49 GaiaAuthFetcher(GaiaAuthConsumer* consumer,
63 // called on the consumer on the original thread.
75 // called on the consumer on the original thread.
84 // called on the consumer on the original thread.
92 // called on the consumer on the original thread.
100 // called on the consumer on the original thread.
105 // OnOAuth2RevokeTokenCompleted will be called on the consumer on the original
115 // called on the consumer on the original thread.
122 // called on the consumer on the original thread.
128 // called on the consumer on the original thread
    [all...]
oauth2_access_token_fetcher.h 40 // * Create an instance with a consumer.
42 // * The consumer passed in the constructor will be called on the same
49 OAuth2AccessTokenFetcher(OAuth2AccessTokenConsumer* consumer,
  /frameworks/av/services/camera/libcameraservice/device3/
Camera3OutputStream.cpp 35 sp<ANativeWindow> consumer,
39 mConsumer(consumer),
43 ALOGE("%s: Consumer is NULL!", __FUNCTION__);
49 sp<ANativeWindow> consumer,
53 mConsumer(consumer),
63 ALOGE("%s: Consumer is NULL!", __FUNCTION__);
266 // Configure consumer-side ANativeWindow interface
313 ALOGE("%s: Unable to query consumer undequeued"
318 ALOGV("%s: Consumer wants %d buffers, HAL wants %d", __FUNCTION__,
  /external/chromium_org/chrome/browser/chromeos/app_mode/
kiosk_app_manager.h 42 // Consumer kiosk mode can be enabled on this machine.
44 // Consumer kiosk is enabled on this machine.
46 // Consumer kiosk mode is disabled ans cannot any longer be enabled on
90 // Initiates reading of consumer kiosk mode status.
94 // Enables consumer kiosk mode feature. Upon completion, |callback| will be
  /external/chromium_org/chrome/browser/webdata/
web_data_service.h 121 // On success, consumer is notified with WDResult<KeywordTable::Keywords>.
122 Handle GetKeywords(WebDataServiceConsumer* consumer);
149 Handle GetWebAppImages(const GURL& app_url, WebDataServiceConsumer* consumer);
164 // Get the login matching the information in |info|. |consumer| will be
169 WebDataServiceConsumer* consumer);
  /external/chromium_org/content/browser/renderer_host/media/
video_capture_buffer_pool.h 34 // ownership to the consumer by calling HoldForConsumers(), or drop the buffer
69 // producer) until ownership is transferred either to the consumer via
79 // pool without passing on to the consumer. This effectively is the opposite
83 // Transfer a buffer from producer to consumer ownership.
108 // Number of consumer processes which hold this shared memory.
  /external/chromium/chrome/browser/webdata/
web_data_service.cc 134 WebDataServiceConsumer* consumer) {
136 new WebDataRequest(this, GetNextRequestHandle(), consumer);
203 WebDataServiceConsumer* consumer) {
205 new GenericRequest<GURL>(this, GetNextRequestHandle(), consumer, app_url);
240 WebDataServiceConsumer* consumer) {
244 this, GetNextRequestHandle(), consumer, std::string());
304 WebDataServiceConsumer* consumer) {
307 consumer, form);
315 WebDataServiceConsumer* consumer) {
317 new WebDataRequest(this, GetNextRequestHandle(), consumer);
535 WebDataServiceConsumer* consumer; local
    [all...]
  /external/chromium_org/chrome/browser/chromeos/login/
authenticator.h 28 explicit Authenticator(LoginStatusConsumer* consumer);
90 // Sets consumer explicitly.
91 void SetConsumer(LoginStatusConsumer* consumer);
  /external/chromium_org/components/webdata/common/
web_database_service.cc 126 WebDataServiceConsumer* consumer) {
127 DCHECK(consumer);
136 new WebDataRequest(consumer, wds_backend_->request_manager().get()));
  /external/llvm/tools/llvm-diff/
llvm-diff.cpp 79 DiffConsumer Consumer;
80 DifferenceEngine Engine(Consumer);
95 return Consumer.hadDifferences();
  /external/oauth/core/src/main/java/net/oauth/client/
OAuthClient.java 41 * Methods for an OAuth consumer to request tokens from a service provider.
87 * should contain a consumer that contains a non-null consumerKey
89 * accessor.consumer.serviceProvider.requestTokenURL should be
104 * should contain a consumer that contains a non-null consumerKey
106 * accessor.consumer.serviceProvider.requestTokenURL should be
123 * should contain a consumer that contains a non-null consumerKey
125 * accessor.consumer.serviceProvider.requestTokenURL should be
158 accessor.consumer.serviceProvider.requestTokenURL, parameters);
170 * consumer that contains a consumerKey and consumerSecret. Also,
171 * accessor.consumer.serviceProvider.accessTokenURL should be th
    [all...]
  /external/v8/src/
circular-queue.cc 44 // The distance ensures that producer and consumer never step on
57 // Layout producer and consumer position pointers each on their own
117 // Eliminate producer / consumer distance.
  /external/chromium_org/chrome/test/logging/win/
log_file_reader.cc 72 // An implementation of a trace consumer that delegates to a given (at
96 // Reads the file using a trace consumer. |ProcessEvent| will be invoked for
228 TraceConsumer<&ProcessEvent> consumer; local
231 hr = consumer.OpenFileSession(log_file.value().c_str());
236 consumer.Consume();
237 consumer.Close();
  /external/chromium_org/third_party/skia/src/ports/
SkImageDecoder_CG.cpp 165 // we don't own/reference the stream, so it our consumer must not live
172 CGDataConsumerRef consumer = SkStreamToCGDataConsumer(stream); local
173 if (NULL == consumer) {
176 SkAutoTCallVProc<const void, CFRelease> arconsumer(consumer);
178 return CGImageDestinationCreateWithDataConsumer(consumer, type, 1, NULL);
193 to our SkWStream. Since we don't reference/own the SkWStream, our consumer
  /external/skia/src/ports/
SkImageDecoder_CG.cpp 165 // we don't own/reference the stream, so it our consumer must not live
172 CGDataConsumerRef consumer = SkStreamToCGDataConsumer(stream); local
173 if (NULL == consumer) {
176 SkAutoTCallVProc<const void, CFRelease> arconsumer(consumer);
178 return CGImageDestinationCreateWithDataConsumer(consumer, type, 1, NULL);
193 to our SkWStream. Since we don't reference/own the SkWStream, our consumer
  /external/chromium/chrome/browser/geolocation/
access_token_store.cc 96 CancelableRequestConsumerBase* consumer,
100 AddRequest(request, consumer);
  /external/chromium/chrome/browser/history/
top_sites_backend.h 44 Handle GetMostVisitedThumbnails(CancelableRequestConsumerBase* consumer,
65 Handle DoEmptyRequest(CancelableRequestConsumerBase* consumer,
  /external/chromium/chrome/browser/ui/webui/
history2_ui.h 81 // Our consumer for search requests to the history service.
84 // Our consumer for delete requests to the history service.
history_ui.h 77 // Our consumer for search requests to the history service.
80 // Our consumer for delete requests to the history service.
  /external/chromium/chrome/common/extensions/docs/examples/extensions/gdocs/
README 28 'consumer_key' : <OAuth consumer key>,
29 'consumer_secret' : <OAuth consumer secret>,
  /external/chromium/chrome/common/extensions/docs/examples/extensions/oauth_contacts/
README 28 'consumer_key' : <OAuth consumer key>,
29 'consumer_secret' : <OAuth consumer secret>,
  /external/chromium_org/chrome/browser/chromeos/settings/
device_oauth2_token_service.h 65 OAuth2TokenService::Consumer* consumer) OVERRIDE;

Completed in 1427 milliseconds

1 2 3 4 56 7 8 91011>>