HomeSort by relevance Sort by last modified time
    Searched refs:INSTANCE (Results 151 - 175 of 239) sorted by null

1 2 3 4 5 67 8 910

  /dalvik/dexgen/src/com/android/dexgen/dex/file/
DexFile.java 104 * Constructs an instance. It is initially empty.
111 new MixedItemSection("string_data", this, 1, SortType.INSTANCE);
136 * Adds a class to this instance. It is illegal to attempt to add more
163 * Writes the contents of this instance as either a binary or a
185 * Returns the contents of this instance as a {@code .dex} file,
190 * @return {@code non-null;} a {@code .dex} file for this instance
205 * Sets the maximum width of the human-oriented dump of the instance.
239 * instance.</p>
252 * instance.</p>
265 * instance.</p
    [all...]
  /dalvik/dx/src/com/android/dx/dex/file/
DexFile.java 109 * Constructs an instance. It is initially empty.
118 new MixedItemSection("string_data", this, 1, SortType.INSTANCE);
157 * Adds a class to this instance. It is illegal to attempt to add more
184 * Writes the contents of this instance as either a binary or a
206 * Returns the contents of this instance as a {@code .dex} file,
211 * @return {@code non-null;} a {@code .dex} file for this instance
226 * Sets the maximum width of the human-oriented dump of the instance.
260 * instance.</p>
273 * instance.</p>
286 * instance.</p
    [all...]
  /external/bouncycastle/bcpkix/src/main/java/org/bouncycastle/operator/jcajce/
OperatorHelper.java 283 if (params != null && !DERNull.INSTANCE.equals(params))
  /external/dexmaker/src/dx/java/com/android/dx/dex/file/
DexFile.java 109 * Constructs an instance. It is initially empty.
118 new MixedItemSection("string_data", this, 1, SortType.INSTANCE);
157 * Adds a class to this instance. It is illegal to attempt to add more
184 * Writes the contents of this instance as either a binary or a
206 * Returns the contents of this instance as a {@code .dex} file,
211 * @return {@code non-null;} a {@code .dex} file for this instance
226 * Sets the maximum width of the human-oriented dump of the instance.
260 * instance.</p>
273 * instance.</p>
286 * instance.</p
    [all...]
  /external/guava/guava/src/com/google/common/collect/
ImmutableListMultimap.java 38 * a <i>view</i> of a separate multimap which can still change, an instance of
61 return (ImmutableListMultimap<K, V>) EmptyImmutableListMultimap.INSTANCE;
ImmutableMap.java 38 * separate map which can still change, an instance of {@code ImmutableMap}
65 return (ImmutableMap<K, V>) EmptyImmutableMap.INSTANCE;
ImmutableList.java 41 * separate collection that can still change, an instance of {@code
68 return (ImmutableList<E>) EmptyImmutableList.INSTANCE;
384 * Returns this list instance.
ImmutableMultiset.java 59 return (ImmutableMultiset<E>) EmptyImmutableMultiset.INSTANCE;
ImmutableSet.java 40 * separate collection that can still change, an instance of this class contains
78 return (ImmutableSet<E>) EmptyImmutableSet.INSTANCE;
395 * The cast is safe because the only way to create an instance is via the
  /external/guava/guava-gwt/src-super/com/google/common/collect/super/com/google/common/collect/
ImmutableListMultimap.java 33 * a <i>view</i> of a separate multimap which can still change, an instance of
56 return (ImmutableListMultimap<K, V>) EmptyImmutableListMultimap.INSTANCE;
ImmutableMap.java 69 return (ImmutableMap<K, V>) EmptyImmutableMap.INSTANCE;
  /packages/apps/Email/src/com/android/email/
RefreshManager.java 167 * @return the singleton instance.
172 Clock.INSTANCE, new Handler());
188 * MUST be called for mock instances. (The actual instance is a singleton, so no cleanup
  /external/guava/guava-tests/test/com/google/common/base/
PredicatesTest.java 791 INSTANCE;
800 Function<String, String> trim = TrimStringFunction.INSTANCE;
821 Function<String, String> trim = TrimStringFunction.INSTANCE;
899 // Make sure that hash codes are not computed per-instance.
  /packages/apps/Email/src/com/android/email/activity/
MailboxListFragment.java 187 private Callback mCallback = EmptyCallback.INSTANCE;
254 public static final Callback INSTANCE = new EmptyCallback();
281 * Create a new instance with initialization parameters.
293 final MailboxListFragment instance = new MailboxListFragment(); local
298 instance.setArguments(args);
299 return instance;
456 mCallback = (callback == null) ? EmptyCallback.INSTANCE : callback;
    [all...]
MessageListFragment.java 101 private Callback mCallback = EmptyCallback.INSTANCE;
206 public static final Callback INSTANCE = new EmptyCallback();
232 * Create a new instance with initialization parameters.
239 final MessageListFragment instance = new MessageListFragment(); local
242 instance.setArguments(args);
243 return instance;
549 mCallback = (callback != null) ? callback : EmptyCallback.INSTANCE;
    [all...]
  /packages/apps/Email/src/com/android/email/activity/setup/
AccountSettingsFragment.java 114 private Callback mCallback = EmptyCallback.INSTANCE;
138 public static final Callback INSTANCE = new EmptyCallback();
303 mCallback = (callback == null) ? EmptyCallback.INSTANCE : callback;
    [all...]
  /external/bouncycastle/bcpkix/src/main/java/org/bouncycastle/cms/
SignerInformation.java 360 String encName = CMSSignedHelper.INSTANCE.getEncryptionAlgName(this.getEncryptionAlgOID());
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/asn1/util/
ASN1Dump.java 82 if (o == null || o.equals(DERNull.INSTANCE))
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/asn1/x500/style/
BCStyle.java 22 public static final X500NameStyle INSTANCE = new BCStyle();
RFC4519Style.java 19 public static final X500NameStyle INSTANCE = new RFC4519Style();
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/jcajce/provider/asymmetric/ec/
BCECPrivateKey.java 327 params = new X962Parameters(DERNull.INSTANCE);
BCECPublicKey.java 294 params = new X962Parameters(DERNull.INSTANCE);
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/jce/provider/
JCEECPrivateKey.java 308 params = new X962Parameters(DERNull.INSTANCE);
JCEECPublicKey.java 383 params = new X962Parameters(DERNull.INSTANCE);
  /external/guava/guava/src/com/google/common/cache/
LocalCache.java 249 removalNotificationQueue = (removalListener == NullListener.INSTANCE)
312 return weigher != OneWeigher.INSTANCE;
662 * ValueReference instance.
844 INSTANCE;
1007 return (ReferenceEntry<K, V>) NullEntry.INSTANCE;
    [all...]

Completed in 701 milliseconds

1 2 3 4 5 67 8 910