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

<<11121314151617181920>>

  /external/clang/test/SemaObjC/
ivar-sem-check-2.m 19 @synthesize value1=value; // expected-error {{synthesized properties 'value1' and 'value' both claim instance variable 'value'}}
20 @synthesize prop=value2; // expected-error {{property 'prop' attempting to use instance variable 'value2' declared in super class 'Super'}}
  /external/dexmaker/src/dx/java/com/android/dx/rop/cst/
CstShort.java 27 /** {@code non-null;} the value {@code 0} as an instance of this class */
31 * Makes an instance for the given value. This may (but does not
32 * necessarily) return an already-allocated instance.
35 * @return {@code non-null;} the appropriate instance
42 * Makes an instance for the given {@code int} value. This
44 * instance.
47 * @return {@code non-null;} the appropriate instance
61 * Constructs an instance. This constructor is private; use {@link #make}.
CstInteger.java 30 /** {@code non-null;} instance representing {@code -1} */
33 /** {@code non-null;} instance representing {@code 0} */
36 /** {@code non-null;} instance representing {@code 1} */
39 /** {@code non-null;} instance representing {@code 2} */
42 /** {@code non-null;} instance representing {@code 3} */
45 /** {@code non-null;} instance representing {@code 4} */
48 /** {@code non-null;} instance representing {@code 5} */
52 * Makes an instance for the given value. This may (but does not
53 * necessarily) return an already-allocated instance.
56 * @return {@code non-null;} the appropriate instance
    [all...]
  /external/dexmaker/src/dx/java/com/android/dx/rop/type/
TypeBearer.java 27 * Gets the type associated with this instance.
37 * fact {@link Type#INT}, in which case this method returns an instance
40 * @return {@code non-null;} the frame type for this instance
45 * Gets the basic type corresponding to this instance.
53 * Gets the basic type corresponding to this instance's frame type. This
56 * instance is an int-like type, in which case this method returns
68 * Returns whether this instance represents a constant value.
70 * @return {@code true} if this instance represents a constant value
  /external/jmdns/src/javax/jmdns/
NetworkTopologyEvent.java 32 * Returns the JmDNS instance associated with the event or null if it is a generic event.
34 * @return JmDNS instance
  /external/smali/examples/RecursiveExceptionHandler/
Main.smali 9 new-instance v0, Ljava/lang/RuntimeException;
16 new-instance v0, Ljava/lang/RuntimeException;
  /libcore/luni/src/test/java/libcore/java/lang/reflect/
ProxyTest.java 122 ThrowsIOException instance = (ThrowsIOException) Proxy.newProxyInstance(loader, local
126 instance.run(new EOFException());
131 instance.run(new IOException());
136 instance.run(new Exception());
143 ThrowsEOFException instance = (ThrowsEOFException) Proxy.newProxyInstance(loader, local
147 instance.run(new EOFException());
152 instance.run(new SocketException());
159 ThrowsEOFException instance = (ThrowsEOFException) Proxy.newProxyInstance(loader, local
163 instance.run(new EOFException());
168 instance.run(new SocketException())
180 ThrowsIOException instance = (ThrowsIOException) Proxy.newProxyInstance(loader, local
237 ExtendsExtendsDeclaresFiveMethods instance = (ExtendsExtendsDeclaresFiveMethods) local
253 Echo instance = (Echo) Proxy.newProxyInstance(loader, new Class[]{Echo.class}, handler); local
266 Echo instance = (Echo) Proxy.newProxyInstance(loader, new Class[]{Echo.class}, handler); local
276 Echo instance = (Echo) Proxy.newProxyInstance(loader, new Class[]{Echo.class}, handler); local
    [all...]
  /packages/apps/DeskClock/src/com/android/deskclock/alarms/
AlarmService.java 52 * @param instance to trigger alarm
54 public static void startAlarm(Context context, AlarmInstance instance) {
55 Intent intent = AlarmInstance.createIntent(context, AlarmService.class, instance.mId);
65 * or using a different instance.
68 * @param instance you are trying to stop
70 public static void stopAlarm(Context context, AlarmInstance instance) {
71 Intent intent = AlarmInstance.createIntent(context, AlarmService.class, instance.mId);
96 private void startAlarm(AlarmInstance instance) {
97 LogUtils.v("AlarmService.start with instance: " + instance.mId)
140 AlarmInstance instance = AlarmInstance.getInstance(cr, instanceId); local
    [all...]
  /external/chromium_org/extensions/renderer/resources/
json_schema.js 44 function isInstanceOfClass(instance, className) {
45 while ((instance = instance.__proto__)) {
46 if (instance.constructor.name == className)
64 * Validates an instance against a schema and accumulates errors. Usage:
105 notInstance: "Object must be an instance of *."
232 * Validates an instance against a schema. The instance can be any JavaScript
236 JSONSchemaValidator.prototype.validate = function(instance, schema, opt_path) {
248 // If the schema has an extends property, the instance must validate agains
    [all...]
  /dalvik/hit/src/com/android/hit/
Queries.java 45 * parent object, this will give you an Instance.
50 * in question, this will give you an Instance.
135 public static Instance[] instancesOf(State state, String baseClassName) {
143 Instance[] instances = new Instance[theClass.mInstances.size()];
152 public static Instance[] allInstancesOf(State state, String baseClassName) {
165 ArrayList<Instance> instanceList = new ArrayList<Instance>();
171 Instance[] result = new Instance[instanceList.size()]
    [all...]
ClassObj.java 25 public class ClassObj extends Instance implements Comparable<ClassObj> {
36 ArrayList<Instance> mInstances = new ArrayList<Instance>();
82 Instance instance = state.findReference(id); local
84 instance.addParent(this);
90 instance.getTypeName(),
91 instance.mHeap.mName,
127 public final void addInstance(Instance instance) {
216 Instance instance = state.findReference(id); local
    [all...]
  /external/chromium_org/ppapi/cpp/
view.h 14 /// instance.
18 /// This class represents the state of the view for an instance and contains
29 /// GetRect() retrieves the rectangle of the module instance associated
34 /// viewport if the module instance is scrolled off the page. Therefore, the
40 ///module instance in the viewport, and only need to use the size.
42 /// @return The rectangle of the instance. The default return value for
46 /// IsFullscreen() returns whether the instance is currently
49 /// @return <code>true</code> if the instance is in full screen mode,
53 /// IsVisible() determines whether the module instance might be visible to
55 /// window could be over it. In both of these cases, the module instance
    [all...]
mouse_lock.h 13 /// specific module instance.
18 class Instance;
22 /// itself with the given instance, and registers as the global handler for
25 /// You would typically use this class by inheritance on your instance or by
30 /// class MyInstance : public pp::Instance, public pp::MouseLock {
43 /// class MyInstance : public pp::Instance {
54 /// @param[in] instance The instance with which this resource will be
56 explicit MouseLock(Instance* instance);
    [all...]
  /dalvik/dexgen/src/com/android/dexgen/rop/type/
Type.java 74 /** {@code non-null;} instance representing {@code boolean} */
77 /** {@code non-null;} instance representing {@code byte} */
80 /** {@code non-null;} instance representing {@code char} */
83 /** {@code non-null;} instance representing {@code double} */
86 /** {@code non-null;} instance representing {@code float} */
89 /** {@code non-null;} instance representing {@code int} */
92 /** {@code non-null;} instance representing {@code long} */
95 /** {@code non-null;} instance representing {@code short} */
98 /** {@code non-null;} instance representing {@code void} */
101 /** {@code non-null;} instance representing a known-{@code null} *
    [all...]
  /dalvik/dexgen/src/com/android/dexgen/rop/cst/
CstInteger.java 30 /** {@code non-null;} instance representing {@code -1} */
33 /** {@code non-null;} instance representing {@code 0} */
36 /** {@code non-null;} instance representing {@code 1} */
39 /** {@code non-null;} instance representing {@code 2} */
42 /** {@code non-null;} instance representing {@code 3} */
45 /** {@code non-null;} instance representing {@code 4} */
48 /** {@code non-null;} instance representing {@code 5} */
52 * Makes an instance for the given value. This may (but does not
53 * necessarily) return an already-allocated instance.
56 * @return {@code non-null;} the appropriate instance
    [all...]
  /dalvik/dx/src/com/android/dx/rop/cst/
CstInteger.java 30 /** {@code non-null;} instance representing {@code -1} */
33 /** {@code non-null;} instance representing {@code 0} */
36 /** {@code non-null;} instance representing {@code 1} */
39 /** {@code non-null;} instance representing {@code 2} */
42 /** {@code non-null;} instance representing {@code 3} */
45 /** {@code non-null;} instance representing {@code 4} */
48 /** {@code non-null;} instance representing {@code 5} */
52 * Makes an instance for the given value. This may (but does not
53 * necessarily) return an already-allocated instance.
56 * @return {@code non-null;} the appropriate instance
    [all...]
  /external/chromium_org/chrome/browser/ui/cocoa/passwords/
manage_passwords_bubble_cocoa_unittest.mm 58 if (ManagePasswordsBubbleCocoa::instance()) {
61 [ManagePasswordsBubbleCocoa::instance()->controller_ window]);
67 ManagePasswordsBubbleCocoa::instance()->Close();
71 ManagePasswordsBubbleCocoa* bubble = ManagePasswordsBubbleCocoa::instance();
81 EXPECT_FALSE(ManagePasswordsBubbleCocoa::instance());
84 EXPECT_TRUE(ManagePasswordsBubbleCocoa::instance());
90 EXPECT_TRUE(ManagePasswordsBubbleCocoa::instance());
93 EXPECT_FALSE(ManagePasswordsBubbleCocoa::instance());
99 EXPECT_TRUE(ManagePasswordsBubbleCocoa::instance());
103 EXPECT_FALSE(ManagePasswordsBubbleCocoa::instance());
    [all...]
  /external/chromium_org/chrome/renderer/pepper/
chrome_renderer_pepper_host_factory.cc 33 PP_Instance instance,
37 // Make sure the plugin is giving us a valid instance for this resource.
38 if (!host_->IsValidInstance(instance))
46 new PepperFlashRendererHost(host_, instance, params.pp_resource()));
50 host_, instance, params.pp_resource()));
57 host_, instance, params.pp_resource(), serialized_menu));
78 host_, instance, params.pp_resource(), description, charset));
84 host_, instance, params.pp_resource()));
93 new pdf::PepperPDFHost(host_, instance, params.pp_resource()));
99 // time of the corresponding instance's method calls. Currently thes
    [all...]
  /external/mockito/cglib-and-asm/src/org/mockito/cglib/beans/
BulkBean.java 118 BulkBean instance = (BulkBean)ReflectUtils.newInstance(type); local
119 instance.target = target;
122 instance.getters = new String[length];
123 System.arraycopy(getters, 0, instance.getters, 0, length);
125 instance.setters = new String[length];
126 System.arraycopy(setters, 0, instance.setters, 0, length);
128 instance.types = new Class[types.length];
129 System.arraycopy(types, 0, instance.types, 0, types.length);
131 return instance;
134 protected Object nextInstance(Object instance) {
    [all...]
  /external/chromium_org/ppapi/c/
ppb_messaging.h 27 * specific module instance.
38 * the DOM element associated with specific module instance.
43 * the DOM element for the given module instance. A call to PostMessage()
46 * @param[in] instance A <code>PP_Instance</code> identifying one instance
86 * The module instance then invokes PostMessage() as follows:
91 * PP_Var hello_var = ppb_var_interface->VarFromUtf8(instance,
94 * ppb_messaging_interface->PostMessage(instance, hello_var); // Copies var.
101 void (*PostMessage)(PP_Instance instance, struct PP_Var message);
126 * @param[in] instance A <code>PP_Instance</code> identifying one instanc
    [all...]
  /external/chromium_org/ppapi/cpp/private/
flash_clipboard.cc 43 uint32_t Clipboard::RegisterCustomFormat(const InstanceHandle& instance,
48 instance.pp_instance(), format_name.c_str());
51 instance.pp_instance(), format_name.c_str());
57 bool Clipboard::IsFormatAvailable(const InstanceHandle& instance,
63 instance.pp_instance(), clipboard_type, format));
66 instance.pp_instance(), clipboard_type, format));
69 instance.pp_instance(), clipboard_type,
77 const InstanceHandle& instance,
84 instance.pp_instance(),
91 instance.pp_instance()
    [all...]
  /external/chromium_org/ppapi/proxy/
ppb_testing_proxy.cc 53 void RunMessageLoop(PP_Instance instance) {
61 void QuitMessageLoop(PP_Instance instance) {
97 PP_Var GetDocumentURL(PP_Instance instance, PP_URLComponents_Dev* components) {
98 EnterInstance enter(instance);
101 return enter.functions()->GetDocumentURL(instance, components);
118 void SetMinimumArrayBufferSizeForShmem(PP_Instance instance,
122 PluginDispatcher* dispatcher = PluginDispatcher::GetForInstance(instance);
130 void RunV8GC(PP_Instance instance) {
196 void PPB_Testing_Proxy::OnMsgRunMessageLoop(PP_Instance instance) {
197 ppb_testing_impl_->RunMessageLoop(instance);
    [all...]
  /external/deqp/framework/platform/android/
tcuAndroidNativeActivity.cpp 31 static_cast<tcu::Android::NativeActivity*>(activity->instance)->onStart();
36 static_cast<tcu::Android::NativeActivity*>(activity->instance)->onResume();
41 return static_cast<tcu::Android::NativeActivity*>(activity->instance)->onSaveInstanceState(outSize);
46 return static_cast<tcu::Android::NativeActivity*>(activity->instance)->onPause();
51 static_cast<tcu::Android::NativeActivity*>(activity->instance)->onStop();
56 static_cast<tcu::Android::NativeActivity*>(activity->instance)->onDestroy();
61 static_cast<tcu::Android::NativeActivity*>(activity->instance)->onWindowFocusChanged(hasFocus);
66 static_cast<tcu::Android::NativeActivity*>(activity->instance)->onNativeWindowCreated(window);
71 static_cast<tcu::Android::NativeActivity*>(activity->instance)->onNativeWindowResized(window);
76 static_cast<tcu::Android::NativeActivity*>(activity->instance)->onNativeWindowRedrawNeeded(window)
    [all...]
  /external/robolectric/src/main/java/com/xtremelabs/robolectric/bytecode/
ShadowWrangler.java 87 public Object methodInvoked(Class clazz, String methodName, Object instance, String[] paramTypes, Object[] params) throws Throwable {
88 InvocationPlan invocationPlan = new InvocationPlan(clazz, methodName, instance, paramTypes);
157 public Object shadowFor(Object instance) {
158 Field field = getShadowField(instance);
159 Object shadow = readField(instance, field);
165 String shadowClassName = getShadowClassName(instance.getClass());
168 System.out.println("creating new " + shadowClassName + " as shadow for " + instance.getClass().getName());
170 Class<?> shadowClass = loadClass(shadowClassName, instance.getClass().getClassLoader());
171 Constructor<?> constructor = findConstructor(instance, shadowClass);
173 shadow = constructor.newInstance(instance);
290 private Object instance; field in class:ShadowWrangler.InvocationPlan
    [all...]
  /dalvik/dexgen/src/com/android/dexgen/dex/file/
OffsettedItem.java 30 /** {@code >= -1;} the size of this instance when written, in bytes, or
63 * Constructs an instance. The offset is initially unassigned.
67 * @param writeSize {@code >= -1;} the size of this instance when written,
131 * per instance, and only if the size was unknown upon instance
183 * the section which the instance was written to.
198 * the file which the instance was written to.
214 * instance.
216 * @param addedTo {@code non-null;} the section this instance has
219 * section where this instance was place
    [all...]

Completed in 673 milliseconds

<<11121314151617181920>>