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

<<21222324252627282930>>

  /external/chromium_org/ui/gfx/
linux_font_delegate.h 25 // the first instance is not deleted.
26 static void SetInstance(LinuxFontDelegate* instance);
28 // Returns a LinuxFontDelegate instance for the toolkit used in
33 static const LinuxFontDelegate* instance();
  /external/chromium_org/ui/shell_dialogs/
linux_shell_dialog.h 21 // the first instance is not deleted.
22 static void SetInstance(LinuxShellDialog* instance);
24 // Returns a LinuxUI instance for the toolkit used in the user's desktop
29 static const LinuxShellDialog* instance();
  /external/clang/test/SemaObjC/
conflicting-ivar-test-1.m 14 int XIVAR; // expected-error {{conflicting instance variable names: 'XIVAR' vs 'IVAR'}}
24 int IVAR1; // expected-error {{inconsistent number of instance variables specified}}
49 int IVAR1; // expected-error {{inconsistent number of instance variables specified}}
65 short IVAR; // expected-error {{instance variable 'IVAR' has conflicting type: 'short' vs 'int'}}
error-property-gc-attr.m 6 id IVAR; // expected-note {{instance variable is declared here}}
22 @synthesize pweak=IVAR; // expected-error {{existing instance variable 'IVAR' for __weak property 'pweak' must be __weak}}
23 @synthesize NOT=II; // expected-error {{existing instance variable 'II' for strong property 'NOT' may not be __weak}}
26 @synthesize AWEAK; // expected-error {{existing instance variable 'AWEAK' for strong property 'AWEAK' may not be __weak}}
protocol-id-test-2.m 11 - (void)IMeth { [(id<P>)self Meth]; } // expected-warning {{instance method '-Meth' not found (return type defaults to 'id'); did you mean '-IMeth'?}}
synthesized-ivar.m 16 int f0(I *a) { return a->IP; } // expected-error {{instance variable 'IP' is private}}
48 _PROP_INMAIN = 1; // expected-error {{instance variable '_PROP_INMAIN' is private}}
49 _PROP_INCLASSEXT = 2; // expected-error {{instance variable '_PROP_INCLASSEXT' is private}}
50 return private_ivar; // expected-error {{instance variable 'private_ivar' is private}}
  /external/dexmaker/src/dx/java/com/android/dx/dex/code/
CatchBuilder.java 28 * Builds and returns the catch table for this instance.
35 * Gets whether this instance has any catches at all (either typed
38 * @return whether this instance has any catches at all
43 * Gets the set of catch types associated with this instance.
  /external/dexmaker/src/dx/java/com/android/dx/rop/cst/
CstInterfaceMethodRef.java 26 * instance, if calculated
31 * Constructs an instance.
49 * this instance.
51 * @return {@code non-null;} an appropriate instance
  /external/guava/guava/src/com/google/common/hash/
Funnels.java 33 return ByteArrayFunnel.INSTANCE;
37 INSTANCE;
52 return StringFunnel.INSTANCE;
56 INSTANCE;
  /external/guava/guava-gwt/src/com/google/common/collect/
ByFunctionOrdering_CustomFieldSerializer.java 32 ByFunctionOrdering<?, ?> instance) {
44 ByFunctionOrdering<?, ?> instance) throws SerializationException {
45 writer.writeObject(instance.function);
46 writer.writeObject(instance.ordering);
ImmutableEntry_CustomFieldSerializer.java 32 ImmutableEntry<?, ?> instance) {
43 ImmutableEntry<?, ?> instance) throws SerializationException {
44 writer.writeObject(instance.getKey());
45 writer.writeObject(instance.getValue());
SingletonImmutableMap_CustomFieldSerializer.java 33 SingletonImmutableMap<?, ?> instance) {
44 SingletonImmutableMap<?, ?> instance) throws SerializationException {
45 writer.writeObject(instance.singleKey);
46 writer.writeObject(instance.singleValue);
  /external/junit/src/junit/framework/
Test.java 14 * Runs a test and collects its result in a TestResult instance.
  /external/llvm/bindings/
README.txt 3 infrastructure--for instance, a self-hosted compiler front-end.
  /external/mockito/src/org/mockito/internal/creation/cglib/
MockitoNamingPolicy.java 11 public static final MockitoNamingPolicy INSTANCE = new MockitoNamingPolicy();
  /external/nist-sip/java/gov/nist/javax/sip/
LogRecord.java 5 * LogReocrdFactory instance that is registered with the stack.
  /external/robolectric/src/main/java/com/xtremelabs/robolectric/bytecode/
ClassHandler.java 16 Object methodInvoked(Class clazz, String methodName, Object instance, String[] paramTypes, Object[] params) throws Throwable;
  /external/smack/src/org/jivesoftware/smackx/commands/
LocalCommandFactory.java 35 * Returns an instance of a LocalCommand.
37 * @return a LocalCommand instance.
38 * @throws InstantiationException if creating an instance failed.
39 * @throws IllegalAccessException if creating an instance is not allowed.
  /external/smali/baksmali/src/test/smali/deodex_test1/
randomclass.smali 14 new-instance v0, Lsuperclass;
  /external/smali/baksmali/src/test/smali/deodex_test2/bootclass_classes/
randomclass.smali 14 new-instance v0, Lsuperclass;
  /libcore/luni/src/main/java/java/net/
NoRouteToHostException.java 22 * to a remote host but the host cannot be reached for instance because of a
33 * Constructs a new instance.
39 * Constructs a new instance with the given detail message.
46 * Constructs a new instance with given detail message and cause.
Proxy.java 19 * This class represents proxy server settings. A created instance of {@code
41 * Creates a new {@code Proxy} instance. {@code SocketAddress} must NOT be
43 * {@code Proxy.Type.SOCKS}. To create a {@code Proxy} instance representing
48 * the proxy type of this instance.
50 * the proxy address of this instance.
58 * Don't use DIRECT type to construct a proxy instance directly.
69 * Constructs a Proxy instance, which is Proxy.DIRECT type with null
78 * Gets the type of this {@code Proxy} instance.
87 * Gets the address of this {@code Proxy} instance.
97 * Gets a textual representation of this {@code Proxy} instance. The strin
    [all...]
SocketException.java 31 * Constructs a new instance.
37 * Constructs a new instance with the given detail message.
43 * Constructs a new instance with the given cause.
51 * Constructs a new instance with given detail message and cause.
SocketTimeoutException.java 31 * Constructs a new instance.
37 * Constructs a new instance with the given detail message.
44 * Constructs a new instance with given cause.
52 * Constructs a new instance with given detail message and cause.
  /libcore/luni/src/main/java/java/security/cert/
CertPathBuilderResult.java 27 * Clones this {@code CertPathBuilderResult} instance.
29 * @return the copy of this instance.
34 * Returns the built {@code CertPath} instance. Never returns {@code null}.
36 * @return the built certificate path instance.

Completed in 1112 milliseconds

<<21222324252627282930>>