HomeSort by relevance Sort by last modified time
    Searched full:instance (Results 251 - 275 of 17684) sorted by null

<<11121314151617181920>>

  /external/chromium_org/ppapi/thunk/
ppb_mouse_lock_thunk.cc 19 int32_t LockMouse(PP_Instance instance, struct PP_CompletionCallback callback) {
21 EnterInstance enter(instance, callback);
24 return enter.SetResult(enter.functions()->LockMouse(instance,
28 void UnlockMouse(PP_Instance instance) {
30 EnterInstance enter(instance);
33 enter.functions()->UnlockMouse(instance);
  /external/clang/test/ASTMerge/
category.m 5 // CHECK: category2.m:18:1: error: instance method 'method2' has incompatible result types in different translation units ('float' vs. 'int')
6 // CHECK: category1.m:16:1: note: instance method 'method2' also declared here
7 // CHECK: category2.m:26:1: error: instance method 'method3' has incompatible result types in different translation units ('float' vs. 'int')
8 // CHECK: category1.m:24:1: note: instance method 'method3' also declared here
9 // CHECK: category2.m:48:1: error: instance method 'blah' has incompatible result types in different translation units ('int' vs. 'float')
10 // CHECK: category1.m:46:1: note: instance method 'blah' also declared here
  /packages/apps/Camera/src/com/android/camera/ui/
PopupManager.java 54 PopupManager instance = sMap.get(context); local
55 if (instance == null) {
56 instance = new PopupManager();
57 sMap.put(context, instance);
59 return instance;
63 PopupManager instance = sMap.get(context); local
  /packages/apps/LegacyCamera/src/com/android/camera/ui/
PopupManager.java 54 PopupManager instance = sMap.get(context); local
55 if (instance == null) {
56 instance = new PopupManager();
57 sMap.put(context, instance);
59 return instance;
63 PopupManager instance = sMap.get(context); local
  /dalvik/hit/src/com/android/hit/
Heap.java 42 HashMap<Long, Instance> mInstances = new HashMap<Long, Instance>();
91 public final void addInstance(long id, Instance instance) {
92 mInstances.put(id, instance);
95 public final Instance getInstance(long id) {
137 for (Instance instance: theClass.mInstances) {
138 size += instance.getCompositeSize();
150 * parent class definition objects. Then have each instance resolv
    [all...]
  /external/chromium_org/content/public/test/android/javatests/src/org/chromium/content/browser/test/util/
HistoryUtils.java 28 * @param instrumentation an Instrumentation instance.
29 * @param contentViewCore a ContentViewCore instance.
47 * @param instrumentation an Instrumentation instance.
48 * @param contentViewCore a ContentViewCore instance.
68 * @param instrumentation an Instrumentation instance.
69 * @param contentViewCore a ContentViewCore instance.
87 * @param instrumentation an Instrumentation instance.
88 * @param contentViewCore a ContentViewCore instance.
104 * @param instrumentation an Instrumentation instance.
105 * @param contentViewCore a ContentViewCore instance
    [all...]
  /external/chromium_org/mojo/examples/pepper_container_app/
mojo_ppapi_globals.cc 87 PP_Instance MojoPpapiGlobals::AddInstance(PluginInstance* instance) {
89 plugin_instance_ = instance;
94 void MojoPpapiGlobals::InstanceDeleted(PP_Instance instance) {
95 DCHECK_EQ(instance, kInstanceId);
97 resource_tracker_.DidDeleteInstance(instance);
101 PluginInstance* MojoPpapiGlobals::GetInstance(PP_Instance instance) {
102 if (instance == kInstanceId)
121 PP_Instance instance) {
122 if (instance == kInstanceId && plugin_instance_)
127 void MojoPpapiGlobals::LogWithSource(PP_Instance instance,
    [all...]
  /external/webrtc/src/common_audio/vad/include/
webrtc_vad.h 45 * This functions get the size needed for storing the instance for encoder
63 * - vad_inst : Pointer to the instance that should be created
73 * This function creates an instance to the VAD structure
76 * - vad_inst : Pointer to VAD instance that should be created
79 * - vad_inst : Pointer to created VAD instance
89 * This function frees the dynamic memory of a specified VAD instance
92 * - vad_inst : Pointer to VAD instance that should be freed
102 * This function initializes a VAD instance
105 * - vad_inst : Instance that should be initialized
108 * - vad_inst : Initialized instance
    [all...]
  /frameworks/av/media/libeffects/lvm/lib/SpectrumAnalyzer/src/
LVPSA_Memory.c 31 /* hInstance = Instance handle Returns the memory requirements and */
32 /* allocated base addresses for the instance */
37 /* When the function is called for free (hInstance = Instance Handle) the memory */
41 /* hInstance Instance Handle */
43 /* InitParams Pointer to the instance init parameters */
56 INST_ALLOC Instance;
63 InstAlloc_Init( &Instance , LVM_NULL);
105 * Instance memory
108 InstAlloc_AddMember( &Instance, sizeof(LVPSA_InstancePr_t) );
109 InstAlloc_AddMember( &Instance, pInitParams->nBands * sizeof(LVM_UINT16) )
    [all...]
  /frameworks/base/core/java/android/gesture/
Instance.java 21 * An instance represents a sample if the label is available or a query if the
24 class Instance {
41 // the id of the instance
44 private Instance(long id, float[] sample, String sampleName) {
66 * create a learning instance for a single stroke gesture
70 * @return the instance
72 static Instance createInstance(int sequenceType, int orientationType, Gesture gesture, String label) {
74 Instance instance; local
77 instance = new Instance(gesture.getID(), pts, label)
    [all...]
  /packages/apps/Bluetooth/src/com/android/bluetooth/gatt/
ServiceDeclaration.java 37 int instance = 0; field in class:ServiceDeclaration.Entry
44 Entry(UUID uuid, int serviceType, int instance) {
47 this.instance = instance;
51 Entry(UUID uuid, int serviceType, int instance, boolean advertisePreferred) {
54 this.instance = instance;
59 Entry(UUID uuid, int properties, int permissions, int instance) {
62 this.instance = instance;
    [all...]
  /external/chromium_org/components/pdf/renderer/
ppb_pdf_impl.cc 41 PrivateFontFile(PP_Instance instance, int fd)
42 : Resource(ppapi::OBJECT_IS_IMPL, instance), fd_(fd) {}
65 content::PepperPluginInstance* instance = local
67 if (!instance)
79 // Validate the instance before using it below.
124 void SearchString(PP_Instance instance,
181 content::PepperPluginInstance* instance = local
183 if (!instance)
185 instance->GetRenderView()->DidStartLoading();
189 content::PepperPluginInstance* instance local
197 content::PepperPluginInstance* instance = local
217 content::PepperPluginInstance* instance = local
234 content::PepperPluginInstance* instance = local
269 content::PepperPluginInstance* instance = local
288 content::PepperPluginInstance* instance = local
316 content::PepperPluginInstance* instance = local
    [all...]
  /external/chromium_org/content/renderer/pepper/
host_globals.cc 50 // If "Delete" is called on an instance, the instance sets its container to
51 // NULL, but the instance may actually outlive its container. Callers of
109 PP_Instance instance) {
110 InstanceMap::iterator found = instance_map_.find(instance);
117 PP_Instance instance) {
119 return GetInstance(instance);
124 PepperPluginInstanceImpl* instance = GetInstance(pp_instance); local
125 if (!instance)
127 return &instance->resource_creation()
    [all...]
  /external/chromium_org/native_client_sdk/doc_generated/pepper_dev/cpp/
classpp_1_1_instance-members.html 13 This is the complete list of members for <a class="el" href="classpp_1_1_instance.html">pp::Instance</a>, including all inherited members.<table>
14 <tr class="memlist"><td><a class="el" href="classpp_1_1_instance.html#a9773263ee281405030548fc224eeec08">AddPerInstanceObject</a>(const std::string &amp;interface_name, void *object)</td><td><a class="el" href="classpp_1_1_instance.html">pp::Instance</a></td><td></td></tr>
15 <tr class="memlist"><td><a class="el" href="classpp_1_1_instance.html#a147a1c1817a7a1fb2b76f5c87ab08899">BindGraphics</a>(const Graphics2D &amp;graphics)</td><td><a class="el" href="classpp_1_1_instance.html">pp::Instance</a></td><td></td></tr>
16 <tr class="memlist"><td><a class="el" href="classpp_1_1_instance.html#abcfd0eb0995e6273271b4ff4c3df16ae">BindGraphics</a>(const Graphics3D &amp;graphics)</td><td><a class="el" href="classpp_1_1_instance.html">pp::Instance</a></td><td></td></tr>
17 <tr class="memlist"><td><a class="el" href="classpp_1_1_instance.html#a845a8736f87b78538c73c9f8d192b77a">BindGraphics</a>(const Compositor &amp;compositor)</td><td><a class="el" href="classpp_1_1_instance.html">pp::Instance</a></td><td></td></tr>
18 <tr class="memlist"><td><a class="el" href="classpp_1_1_instance.html#a286bc22174e2f7b6e917c56aa5c7de86">ClearInputEventRequest</a>(uint32_t event_classes)</td><td><a class="el" href="classpp_1_1_instance.html">pp::Instance</a></td><td></td></tr>
19 <tr class="memlist"><td><a class="el" href="classpp_1_1_instance.html#a42c67b21f11bef29c5b341c78926bad3">DidChangeFocus</a>(bool has_focus)</td><td><a class="el" href="classpp_1_1_instance.html">pp::Instance</a></td><td><code> [virtual]</code></td></tr>
20 <tr class="memlist"><td><a class="el" href="classpp_1_1_instance.html#ad952f05e42f0e036157beb216f12f3f3">DidChangeView</a>(const View &amp;view)</td><td><a class="el" href="classpp_1_1_instance.html">pp::Instance</a></td><td><code> [virtual]</code></td></tr>
21 <tr class="memlist"><td><a class="el" href="classpp_1_1_instance.html#a72ac4ec0b62c4cd8dedae3cf0fc577c2">DidChangeView</a>(const Rect &amp;position, const Rect &amp;clip)</td><td><a class="el" href="classpp_1_1_instance.html">pp::Instance</a></td><td><code> [virtual]</code></td></tr>
22 <tr class="memlist"><td><a class="el" href="classpp_1_1_instance.html#a6dec498f1d49571be9fd40e23745327f">GetPerInstanceObject</a>(PP_Instance instance, const std::string &amp;interface_name)</td><td><a class="el" href="classpp_1_1_instance.html">pp: (…)
    [all...]
  /dalvik/dexgen/src/com/android/dexgen/dex/file/
Item.java 27 * Constructs an instance.
34 * Returns the item type for this instance.
42 * instance is.
51 * Gets the size of this instance when written, in bytes.
58 * Populates a {@link DexFile} with items from within this instance.
59 * This will <i>not</i> add an item to the file for this instance itself
60 * (which should have been done by whatever refers to this instance).
70 * Writes the representation of this instance to the given data section,
72 * If this instance keeps track of its offset, then this method will
74 * instance has already been written
    [all...]
  /dalvik/dx/src/com/android/dx/dex/file/
Item.java 27 * Constructs an instance.
34 * Returns the item type for this instance.
42 * instance is.
51 * Gets the size of this instance when written, in bytes.
58 * Populates a {@link DexFile} with items from within this instance.
59 * This will <i>not</i> add an item to the file for this instance itself
60 * (which should have been done by whatever refers to this instance).
70 * Writes the representation of this instance to the given data section,
72 * If this instance keeps track of its offset, then this method will
74 * instance has already been written
    [all...]
  /external/chromium_org/chrome/browser/ui/libgtk2ui/
gtk2_signal_registrar.cc 32 glong Gtk2SignalRegistrar::Connect(gpointer instance,
36 return ConnectInternal(instance, detailed_signal, signal_handler, data,
40 glong Gtk2SignalRegistrar::ConnectAfter(gpointer instance,
44 return ConnectInternal(instance, detailed_signal, signal_handler, data, true);
47 glong Gtk2SignalRegistrar::ConnectInternal(gpointer instance,
52 GObject* object = G_OBJECT(instance);
63 g_signal_connect_after(instance, detailed_signal, signal_handler, data) :
64 g_signal_connect(instance, detailed_signal, signal_handler, data);
81 void Gtk2SignalRegistrar::DisconnectAll(gpointer instance) {
82 GObject* object = G_OBJECT(instance);
    [all...]
  /external/chromium_org/ppapi/api/
ppp_message_handler.idl 32 * @param[in] instance A <code>PP_Instance</code> identifying one instance
39 void HandleMessage([in] PP_Instance instance,
51 * @param[in] instance A <code>PP_Instance</code> identifying one instance
61 void HandleBlockingMessage([in] PP_Instance instance,
67 * calls will be made which pass this same value for <code>instance</code>
70 * @param[in] instance A <code>PP_Instance</code> identifying one instance
75 void Destroy([in] PP_Instance instance, [inout] mem_t user_data)
    [all...]
  /external/chromium_org/ppapi/proxy/
ppp_input_event_proxy.cc 24 PP_Bool HandleInputEvent(PP_Instance instance, PP_Resource input_event) {
31 HostDispatcher* dispatcher = HostDispatcher::GetForInstance(instance);
41 API_ID_PPP_INPUT_EVENT, instance, data, &result));
44 API_ID_PPP_INPUT_EVENT, instance, data));
91 void PPP_InputEvent_Proxy::OnMsgHandleInputEvent(PP_Instance instance,
94 OBJECT_IS_PROXY, instance, data));
96 instance,
101 PP_Instance instance,
105 OBJECT_IS_PROXY, instance, data));
107 instance,
    [all...]
  /external/clang/test/SemaObjC/
ivar-access-tests.m 33 access = s->private; // expected-error {{instance variable 'private' is private}}
36 access = m->private; // expected-error {{instance variable 'private' is private}}
49 access = s->private; // expected-error {{instance variable 'private' is private}}
52 access = m->private; // expected-error {{instance variable 'private' is private}}
64 access = s->private; // expected-error {{instance variable 'private' is private}}
65 access = s->protected; // expected-error {{instance variable 'protected' is protected}}
67 access = m->private; // expected-error {{instance variable 'private' is private}}
68 access = m->protected; // expected-error {{instance variable 'protected' is protected}}
76 access = s->private; // expected-error {{instance variable 'private' is private}}
77 access = s->protected; // expected-error {{instance variable 'protected' is protected}
    [all...]
  /external/dexmaker/src/dx/java/com/android/dx/dex/file/
Item.java 27 * Constructs an instance.
34 * Returns the item type for this instance.
42 * instance is.
51 * Gets the size of this instance when written, in bytes.
58 * Populates a {@link DexFile} with items from within this instance.
59 * This will <i>not</i> add an item to the file for this instance itself
60 * (which should have been done by whatever refers to this instance).
70 * Writes the representation of this instance to the given data section,
72 * If this instance keeps track of its offset, then this method will
74 * instance has already been written
    [all...]
  /external/guava/guava/src/com/google/common/collect/
ReverseNaturalOrdering.java 31 static final ReverseNaturalOrdering INSTANCE = new ReverseNaturalOrdering();
49 return NaturalOrdering.INSTANCE.max(a, b);
53 return NaturalOrdering.INSTANCE.max(a, b, c, rest);
57 return NaturalOrdering.INSTANCE.max(iterator);
61 return NaturalOrdering.INSTANCE.max(iterable);
65 return NaturalOrdering.INSTANCE.min(a, b);
69 return NaturalOrdering.INSTANCE.min(a, b, c, rest);
73 return NaturalOrdering.INSTANCE.min(iterator);
77 return NaturalOrdering.INSTANCE.min(iterable);
82 return INSTANCE;
    [all...]
  /external/llvm/include/llvm/MC/
MCLabel.h 27 // Instance - the instance number of this Directional Local Label
28 unsigned Instance;
32 MCLabel(unsigned instance)
33 : Instance(instance) {}
38 /// getInstance - Get the current instance of this Directional Local Label.
39 unsigned getInstance() const { return Instance; }
41 /// incInstance - Increment the current instance of this Directional Local
43 unsigned incInstance() { return ++Instance; }
    [all...]
  /frameworks/av/media/libeffects/lvm/lib/Bass/src/
LVDBE_Private.h 57 #define LVDBE_MEMREGION_INSTANCE 0 /* Offset to the instance memory region */
83 AGC_MIX_VOL_2St1Mon_D32_t AGCInstance; /* AGC instance parameters */
97 Biquad_Instance_t HPFInstance; /* High pass filter instance */
98 Biquad_Instance_t BPFInstance; /* Band pass filter instance */
102 /* Instance structure */
106 LVDBE_MemTab_t MemoryTable; /* Instance memory allocation table */
107 LVDBE_Params_t Params; /* Instance parameters */
108 LVDBE_Capabilities_t Capabilities; /* Instance capabilities */
111 LVDBE_Data_t *pData; /* Instance data */
112 LVDBE_Coef_t *pCoef; /* Instance coefficients *
    [all...]
  /external/chromium_org/native_client_sdk/doc_generated/pepper_beta/cpp/
classpp_1_1_instance-members.html 13 This is the complete list of members for <a class="el" href="classpp_1_1_instance.html">pp::Instance</a>, including all inherited members.<table>
14 <tr class="memlist"><td><a class="el" href="classpp_1_1_instance.html#a9773263ee281405030548fc224eeec08">AddPerInstanceObject</a>(const std::string &amp;interface_name, void *object)</td><td><a class="el" href="classpp_1_1_instance.html">pp::Instance</a></td><td></td></tr>
15 <tr class="memlist"><td><a class="el" href="classpp_1_1_instance.html#a147a1c1817a7a1fb2b76f5c87ab08899">BindGraphics</a>(const Graphics2D &amp;graphics)</td><td><a class="el" href="classpp_1_1_instance.html">pp::Instance</a></td><td></td></tr>
16 <tr class="memlist"><td><a class="el" href="classpp_1_1_instance.html#abcfd0eb0995e6273271b4ff4c3df16ae">BindGraphics</a>(const Graphics3D &amp;graphics)</td><td><a class="el" href="classpp_1_1_instance.html">pp::Instance</a></td><td></td></tr>
17 <tr class="memlist"><td><a class="el" href="classpp_1_1_instance.html#a286bc22174e2f7b6e917c56aa5c7de86">ClearInputEventRequest</a>(uint32_t event_classes)</td><td><a class="el" href="classpp_1_1_instance.html">pp::Instance</a></td><td></td></tr>
18 <tr class="memlist"><td><a class="el" href="classpp_1_1_instance.html#a42c67b21f11bef29c5b341c78926bad3">DidChangeFocus</a>(bool has_focus)</td><td><a class="el" href="classpp_1_1_instance.html">pp::Instance</a></td><td><code> [virtual]</code></td></tr>
19 <tr class="memlist"><td><a class="el" href="classpp_1_1_instance.html#ad952f05e42f0e036157beb216f12f3f3">DidChangeView</a>(const View &amp;view)</td><td><a class="el" href="classpp_1_1_instance.html">pp::Instance</a></td><td><code> [virtual]</code></td></tr>
20 <tr class="memlist"><td><a class="el" href="classpp_1_1_instance.html#a72ac4ec0b62c4cd8dedae3cf0fc577c2">DidChangeView</a>(const Rect &amp;position, const Rect &amp;clip)</td><td><a class="el" href="classpp_1_1_instance.html">pp::Instance</a></td><td><code> [virtual]</code></td></tr>
21 <tr class="memlist"><td><a class="el" href="classpp_1_1_instance.html#a6dec498f1d49571be9fd40e23745327f">GetPerInstanceObject</a>(PP_Instance instance, const std::string &amp;interface_name)</td><td><a class="el" href="classpp_1_1_instance.html">pp::Instance</a></td><td><code> [static]</code></td></tr
    [all...]

Completed in 735 milliseconds

<<11121314151617181920>>