HomeSort by relevance Sort by last modified time
    Searched full:service (Results 476 - 500 of 11175) sorted by null

<<11121314151617181920>>

  /external/chromium_org/chrome/android/java/src/org/chromium/chrome/browser/sync/
ChromiumSyncAdapterService.java 8 import android.app.Service;
13 public abstract class ChromiumSyncAdapterService extends Service {
  /external/chromium_org/chrome/browser/captive_portal/
captive_portal_service_unittest.cc 95 // |enable_service| is whether or not the captive portal service itself
155 ASSERT_EQ(CaptivePortalService::STATE_IDLE, service()->state());
161 CaptivePortalObserver observer(profile(), service());
162 service()->DetectCaptivePortal();
164 EXPECT_EQ(CaptivePortalService::STATE_TIMER_RUNNING, service()->state());
170 service()->state());
182 // Runs a test when the captive portal service is disabled.
187 ASSERT_EQ(CaptivePortalService::STATE_IDLE, service()->state());
193 CaptivePortalObserver observer(profile(), service());
194 service()->DetectCaptivePortal()
268 CaptivePortalService* service() { return service_.get(); } function in class:captive_portal::CaptivePortalServiceTest
    [all...]
  /external/chromium_org/chrome/browser/printing/cloud_print/
cloud_print_url.h 17 // Centralize URL management for the cloud print service.
30 // These aren't derived from the service, but it makes sense to keep all the
  /external/chromium_org/chrome/browser/resources/chromeos/login/
oobe_screen_terms_of_service.html 1 <div class="step right hidden tos-loading" id="terms-of-service">
23 <div id="terms-of-service-controls" class="step-controls"></div>
  /external/chromium_org/chrome/browser/sync/
about_sync_util.h 24 // Note that |service| may be NULL.
26 ProfileSyncService* service);
  /external/chromium_org/chrome/browser/ui/webui/extensions/
extension_settings_browsertest.cc 76 ExtensionService* service = profile->GetExtensionService(); local
77 service->set_show_extensions_prompts(false);
78 size_t num_before = service->extensions()->size();
90 extensions::CrxInstaller::Create(service, install_ui.Pass()));
107 size_t num_after = service->extensions()->size();
113 for (ExtensionSet::const_iterator it = service->extensions()->begin();
114 it != service->extensions()->end(); ++it)
129 return service->GetExtensionById(last_loaded_extension_id(), false);
  /external/chromium_org/chrome/common/extensions/docs/templates/articles/
gcm_tos.html 1 <h1>Google Cloud Messaging for Chrome API Terms of Service</h1>
7 you consent to be bound by the Google APIs Terms of Service (<code>"API ToS"</code>) at
  /external/chromium_org/chrome/common/
spellcheck_messages.h 55 // Request a list of all document markers in the renderer for spelling service
59 // Send a list of document markers in the renderer to the spelling service
65 // Sends text-check results from the Spelling service when the service finishes
67 // If the service is not available, the 4th parameter should be false and the
71 bool /* succeeded calling service */,
104 // Asks the Spelling service to check text. When the service finishes checking
  /external/chromium_org/cloud_print/service/win/
service_listener.h 21 // Simple IPC listener to run on service side to collect service environment and
  /external/chromium_org/content/browser/service_worker/
service_worker_provider_host.h 17 // This class holds service worker state this is scoped to an individual
28 // The service worker version that corresponds with navigator.serviceWorker
  /external/chromium_org/content/public/browser/
notification_registrar.cc 70 NotificationServiceImpl* service = NotificationServiceImpl::current(); local
71 if (service)
72 service->RemoveObserver(observer, type, source);
80 // service, and we reach prgram exit, then calling current() below could try
81 // to initialize the service's lazy TLS pointer during exit, which throws
88 NotificationServiceImpl* service = NotificationServiceImpl::current();
89 if (service) {
91 service->RemoveObserver(registered_[i].observer,
  /external/chromium_org/gpu/command_buffer/service/
gl_state_restorer_impl.cc 5 #include "gpu/command_buffer/service/gl_state_restorer_impl.h"
7 #include "gpu/command_buffer/service/gles2_cmd_decoder.h"
mocks.cc 7 #include "gpu/command_buffer/service/gpu_scheduler.h"
8 #include "gpu/command_buffer/service/mocks.h"
  /external/chromium_org/gpu/gles2_conform_support/
README 10 - gles2_conform_test_native which tests command-buffer service
11 - gles2_conform_test_windowless which tests command-buffer service on most platforms
  /external/chromium_org/mojo/public/bindings/sample/
sample_service.mojom 35 interface Service {
39 [Peer=Service]
  /external/chromium_org/remoting/base/
auth_token_util_unittest.cc 16 ParseAuthTokenWithService("service:token", &auth_token, &auth_service);
18 EXPECT_EQ("service", auth_service);
  /external/chromium_org/third_party/freetype/include/freetype/internal/services/
svxf86nm.h 29 * A trivial service used to return the name of a face's font driver,
30 * according to the XFree86 nomenclature. Note that the service data
  /external/chromium_org/third_party/protobuf/java/src/main/java/com/google/protobuf/
RpcChannel.java 35 * communication line to a {@link Service} which can be used to call that
36 * {@link Service}'s methods. The {@link Service} may be running on another
38 * instead construct a stub {@link Service} wrapping it. Example:
43 * MyService service = MyService.newStub(channel);
44 * service.myMethod(controller, request, callback);
57 * Call the given method of the remote service. This method is similar to
58 * {@code Service.callMethod()} with one important difference: the caller
  /external/chromium_org/webkit/browser/appcache/
appcache_storage.cc 20 AppCacheStorage::AppCacheStorage(AppCacheService* service)
22 last_response_id_(kUnitializedId), service_(service) {
106 if (new_usage != old_usage && service()->quota_manager_proxy()) {
107 service()->quota_manager_proxy()->NotifyStorageModified(
115 if (service()->quota_manager_proxy()) {
118 service()->quota_manager_proxy()->NotifyStorageModified(
128 if (service()->quota_manager_proxy() &&
130 service()->quota_manager_proxy()->NotifyStorageAccessed(
  /external/chromium_org/win8/metro_driver/ime/
text_service_delegate.h 19 // A delegate which works together with virtual text service.
21 // virtual text service whenever an IME updates the composition or commits text.
  /external/freetype/include/freetype/internal/services/
svxf86nm.h 29 * A trivial service used to return the name of a face's font driver,
30 * according to the XFree86 nomenclature. Note that the service data
  /external/guava/guava/src/com/google/common/util/concurrent/
AbstractIdleService.java 35 public abstract class AbstractIdleService implements Service {
38 private final Service delegate = new AbstractService() {
68 /** Start the service. */
71 /** Stop the service. */
75 * Returns the {@link Executor} that will be used to run this service.
79 * execute()} method is called when this service is started and stopped,
82 * @param state {@link Service.State#STARTING} or
83 * {@link Service.State#STOPPING}, used by the default implementation for
  /external/nist-sip/java/gov/nist/javax/sip/header/extensions/
ReferencesHeader.java 28 public static final String SERVICE = "service";
  /external/protobuf/java/src/main/java/com/google/protobuf/
RpcChannel.java 35 * communication line to a {@link Service} which can be used to call that
36 * {@link Service}'s methods. The {@link Service} may be running on another
38 * instead construct a stub {@link Service} wrapping it. Example:
43 * MyService service = MyService.newStub(channel);
44 * service.myMethod(controller, request, callback);
57 * Call the given method of the remote service. This method is similar to
58 * {@code Service.callMethod()} with one important difference: the caller
  /external/qemu/android/
adb-qemud.h 21 * Implements 'adb' QEMUD service that is responsible for the data exchange
25 /* Initializes adb QEMUD service. */

Completed in 785 milliseconds

<<11121314151617181920>>