HomeSort by relevance Sort by last modified time
    Searched refs:instance (Results 776 - 800 of 2393) sorted by null

<<31323334353637383940>>

  /external/chromium_org/third_party/WebKit/Source/modules/webdatabase/
QuotaTracker.h 44 static QuotaTracker& instance();
  /external/chromium_org/third_party/icu/source/common/
mutex.h 90 * Define a static SimpleSingleton instance via the STATIC_SIMPLE_SINGLETON macro.
96 * Returns the singleton instance, or NULL if it could not be created.
97 * Calls the instantiator with the context if the instance has not been
106 * Resets the fields. The caller must have deleted the singleton instance.
131 T *instance=(T *)singleton.getInstance(instantiator, context, duplicate, errorCode); local
133 return instance;
143 * Define a static TriStateSingleton instance via the STATIC_TRI_STATE_SINGLETON macro.
151 * Returns the singleton instance, or NULL if it could not be created.
152 * Calls the instantiator with the context if the instance has not been
163 * Resets the fields. The caller must have deleted the singleton instance
188 T *instance=(T *)singleton.getInstance(instantiator, context, duplicate, errorCode); local
    [all...]
  /external/chromium_org/third_party/libxml/src/
check-relaxng-test-suite2.py 55 # handle a valid instance
62 instance = node.prop("dtd")
63 if instance == None:
64 instance = ""
68 instance = instance + child.serialize()
73 doc = libxml2.parseDoc(instance)
78 log.write("\nFailed to parse correct instance:\n-----\n")
79 log.write(instance)
85 print "instance line %d" % (node.lineNo()
    [all...]
  /external/icu4c/common/
mutex.h 90 * Define a static SimpleSingleton instance via the STATIC_SIMPLE_SINGLETON macro.
96 * Returns the singleton instance, or NULL if it could not be created.
97 * Calls the instantiator with the context if the instance has not been
106 * Resets the fields. The caller must have deleted the singleton instance.
131 T *instance=(T *)singleton.getInstance(instantiator, context, duplicate, errorCode); local
133 return instance;
143 * Define a static TriStateSingleton instance via the STATIC_TRI_STATE_SINGLETON macro.
150 * Returns the singleton instance, or NULL if it could not be created.
151 * Calls the instantiator with the context if the instance has not been
162 * Resets the fields. The caller must have deleted the singleton instance
187 T *instance=(T *)singleton.getInstance(instantiator, context, duplicate, errorCode); local
    [all...]
  /frameworks/testing/uiautomator/library/core-src/com/android/uiautomator/core/
UiCollection.java 26 * Constructs an instance as described by the selector
41 * The returned UiObject will point at the <code>childPattern</code> instance that matched the
46 * @return {@link UiObject} pointing at and instance of <code>childPattern</code>
75 * a child UI element anywhere within its sub hierarchy that is at the <code>instance</code>
80 * @param instance int the desired matched instance of this <code>childPattern</code>
81 * @return {@link UiObject} pointing at and instance of <code>childPattern</code>
84 public UiObject getChildByInstance(UiSelector childPattern, int instance)
86 Tracer.trace(childPattern, instance);
88 UiSelector.patternBuilder(childPattern).instance(instance))
    [all...]
  /frameworks/uiautomator/core/com/android/uiautomator/core/
UiCollection.java 26 * Constructs an instance as described by the selector
41 * The returned UiObject will point at the <code>childPattern</code> instance that matched the
46 * @return {@link UiObject} pointing at and instance of <code>childPattern</code>
75 * a child UI element anywhere within its sub hierarchy that is at the <code>instance</code>
80 * @param instance int the desired matched instance of this <code>childPattern</code>
81 * @return {@link UiObject} pointing at and instance of <code>childPattern</code>
84 public UiObject getChildByInstance(UiSelector childPattern, int instance)
86 Tracer.trace(childPattern, instance);
88 UiSelector.patternBuilder(childPattern).instance(instance))
    [all...]
  /dalvik/hit/src/com/android/hit/
Instance.java 23 public abstract class Instance {
26 // Id of the ClassObj of which this object is an instance
39 public boolean accept(Instance instance);
43 private ArrayList<Instance> mParents;
52 * for in a heap other than the one this Instance is in.
62 public abstract void visit(Set<Instance> resultSet, Filter filter);
69 HashSet<Instance> set = new HashSet<Instance>();
75 for (Instance instance: set)
    [all...]
  /external/chromium/chrome/common/
launchd_mac.h 77 static void SetInstance(Launchd* instance);
80 explicit ScopedInstance(Launchd* instance) {
81 Launchd::SetInstance(instance);
  /external/chromium_org/chrome/browser/renderer_host/pepper/
pepper_broker_message_filter.cc 28 PP_Instance instance,
30 : document_url_(host->GetDocumentURLForInstance(instance)) {
32 host->GetRenderViewIDsForInstance(instance, &render_process_id_, &unused);
pepper_flash_device_id_host.cc 22 PP_Instance instance,
24 : ppapi::host::ResourceHost(host->GetPpapiHost(), instance, resource),
27 host->GetRenderViewIDsForInstance(instance, &render_process_id, &unused);
  /external/chromium_org/chrome/common/mac/
launchd.h 77 static void SetInstance(Launchd* instance);
80 explicit ScopedInstance(Launchd* instance) {
81 Launchd::SetInstance(instance);
  /external/chromium_org/chrome/renderer/pepper/
pepper_shared_memory_message_filter.cc 45 PP_Instance instance,
58 *host_handle_id = content::PepperPluginInstance::Get(instance)->
59 GetVarTracker()->TrackSharedMemoryHandle(instance, host_shm_handle, size);
  /external/chromium_org/content/renderer/pepper/
pepper_browser_connection.h 45 // |instance| of a plugin identified by |child_process_id|. |callback| will be
47 void SendBrowserCreate(PP_Instance instance,
59 // Called when the renderer creates an in-process instance.
60 void DidCreateInProcessInstance(PP_Instance instance,
65 // Called when the renderer deletes an in-process instance.
66 void DidDeleteInProcessInstance(PP_Instance instance);
ppb_buffer_impl.h 20 static PP_Resource Create(PP_Instance instance, uint32_t size);
21 static scoped_refptr<PPB_Buffer_Impl> CreateResource(PP_Instance instance,
44 explicit PPB_Buffer_Impl(PP_Instance instance);
ppb_graphics_3d_impl.h 17 static PP_Resource Create(PP_Instance instance,
20 static PP_Resource CreateRaw(PP_Instance instance,
39 // Binds/unbinds the graphics of this context with the associated instance.
61 explicit PPB_Graphics3D_Impl(PP_Instance instance);
77 // True if context is bound to instance.
  /external/chromium_org/ppapi/cpp/
instance.h 9 /// This file defines the C++ wrapper for an instance.
39 class Instance {
41 /// Default constructor. Construction of an instance should only be done in
43 /// Otherwise, the instance will lack the proper bookkeeping in the browser
49 explicit Instance(PP_Instance instance);
51 /// Destructor. When the instance is removed from the web page,
52 /// the <code>pp::Instance</code> object will be deleted. You should never
53 /// delete the <code>Instance</code> object yourself since the lifetime is
58 /// call so the instance can perform cleanup-related tasks. Once this functio
    [all...]
  /external/chromium_org/ppapi/cpp/private/
flash_drm.cc 31 DRM::DRM(const InstanceHandle& instance) : Resource() {
34 instance.pp_instance()));
37 instance.pp_instance()));
tcp_server_socket_private.cc 27 TCPServerSocketPrivate::TCPServerSocketPrivate(const InstanceHandle& instance) {
31 instance.pp_instance()));
35 instance.pp_instance()));
  /external/chromium_org/ppapi/shared_impl/
resource_tracker.h 45 // Notifies the tracker that a new instance has been created. This must be
46 // called before creating any resources associated with the instance.
47 void DidCreateInstance(PP_Instance instance);
49 // Called when an instance is being deleted. All plugin refs for the
51 // exist) will be disassociated from the instance.
52 void DidDeleteInstance(PP_Instance instance);
54 // Returns the number of resources associated with the given instance.
55 // Returns 0 if the instance isn't known.
56 int GetLiveObjectsForInstance(PP_Instance instance) const;
66 // Adds the given resource to the tracker, associating it with the instance
    [all...]
  /external/chromium_org/ppapi/thunk/
ppb_audio_thunk.cc 21 PP_Resource Create(PP_Instance instance,
26 EnterResourceCreation enter(instance);
29 return enter.functions()->CreateAudio(instance,
ppb_buffer_thunk.cc 16 PP_Resource Create(PP_Instance instance, uint32_t size) {
17 EnterResourceCreation enter(instance);
20 return enter.functions()->CreateBuffer(instance, size);
ppb_file_chooser_dev_thunk.cc 22 PP_Resource Create(PP_Instance instance,
26 EnterResourceCreation enter(instance);
29 return enter.functions()->CreateFileChooser(instance, mode, accept_types);
ppb_flash_drm_thunk.cc 22 PP_Resource Create(PP_Instance instance) {
24 EnterResourceCreation enter(instance);
27 return enter.functions()->CreateFlashDRM(instance);
ppb_host_resolver_private_thunk.cc 20 PP_Resource Create(PP_Instance instance) {
21 EnterResourceCreation enter(instance);
24 return enter.functions()->CreateHostResolverPrivate(instance);
ppb_host_resolver_thunk.cc 22 PP_Resource Create(PP_Instance instance) {
24 EnterResourceCreation enter(instance);
27 return enter.functions()->CreateHostResolver(instance);

Completed in 2049 milliseconds

<<31323334353637383940>>