HomeSort by relevance Sort by last modified time
    Searched defs:that (Results 226 - 250 of 1093) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/guava/guava/src/com/google/common/primitives/
Ints.java 41 * Static utility methods pertaining to {@code int} primitives, that are not
62 * The largest power of two that can be represented as an {@code int}.
80 * Returns the {@code int} value that is equal to {@code value}, if possible.
83 * @return the {@code int} value that equals {@code value}
116 * returned is the same as that of {@code ((Integer) a).compareTo(b)}.
176 * <p>More formally, returns the lowest index {@code i} such that {@code
230 * @return the value present in {@code array} that is less than or equal to
249 * @return the value present in {@code array} that is greater than or equal to
314 * <p>Arguably, it's preferable to use {@link java.nio.ByteBuffer}; that
364 * Returns a serializable converter object that converts between strings an
596 IntArrayAsList that = (IntArrayAsList) object; local
    [all...]
Longs.java 38 * Static utility methods pertaining to {@code long} primitives, that are not
59 * The largest power of two that can be represented as a {@code long}.
83 * returned is the same as that of {@code ((Long) a).compareTo(b)}.
143 * <p>More formally, returns the lowest index {@code i} such that {@code
197 * @return the value present in {@code array} that is less than or equal to
216 * @return the value present in {@code array} that is greater than or equal to
266 // Note that this code needs to stay compatible with GWT, which has known
283 * <p>Arguably, it's preferable to use {@link java.nio.ByteBuffer}; that
325 * <p>Note that strings prefixed with ASCII {@code '+'} are rejected, even
327 * that version
629 LongArrayAsList that = (LongArrayAsList) object; local
    [all...]
  /external/guava/guava/src/com/google/common/reflect/
ClassPath.java 148 * Represents a class path resource that can be either a class file or any other resource file
188 ResourceInfo that = (ResourceInfo) obj; local
189 return resourceName.equals(that.resourceName)
190 && loader == that.loader;
202 * Represents a class that can be loaded through {@link #load}.
261 * @throws LinkageError when there were errors in loading classes that this class depends on.
  /external/guava/guava-gwt/src-super/com/google/common/primitives/super/com/google/common/primitives/
Ints.java 40 * Static utility methods pertaining to {@code int} primitives, that are not
61 * The largest power of two that can be represented as an {@code int}.
79 * Returns the {@code int} value that is equal to {@code value}, if possible.
82 * @return the {@code int} value that equals {@code value}
115 * returned is the same as that of {@code ((Integer) a).compareTo(b)}.
175 * <p>More formally, returns the lowest index {@code i} such that {@code
229 * @return the value present in {@code array} that is less than or equal to
248 * @return the value present in {@code array} that is greater than or equal to
312 * Returns a serializable converter object that converts between strings and
359 * @param separator the text that should appear between consecutive values i
544 IntArrayAsList that = (IntArrayAsList) object; local
    [all...]
  /external/guava/guava-testlib/src/com/google/common/testing/
NullPointerTester.java 52 * A test utility that verifies that your methods and constructors throw {@link
54 * is passed to a parameter that isn't annotated with {@link Nullable}.
60 * for interfaces and public classes that have public parameter-less
78 * Sets a default value that can be used for any parameter of type
87 * Ignore {@code method} in the tests that follow. Returns this object.
97 * Runs {@link #testConstructor} on every constructor in class {@code c} that
117 * Runs {@link #testMethod} on every static method of class {@code c} that has
168 * Verifies that {@code method} produces a {@link NullPointerException}
183 * Verifies that {@code ctor} produces a {@link NullPointerException} o
310 Signature that = (Signature) obj; local
    [all...]
  /external/guava/guava-testlib/test/com/google/common/testing/
EqualsTesterTest.java 186 * Test for an invalid hashCode method, i.e., one that returns different
187 * value for objects that are equal according to the equals method
362 /** Test class that violates reflexitivity. It is not equal to itself */
374 /** Test class that returns true if the test object is null */
387 * Test class that returns true even if the test object is of the wrong class
423 NamedObject that = (NamedObject) obj; local
424 return name.equals(that.name) || peerNames.contains(that.name);
  /external/guice/extensions/mini/src/com/google/inject/mini/
MiniGuice.java 63 * @Inject}-annotated constructor. Classes that have fields injected
76 * <p><strong>Note that method injection is not supported.</strong>
233 * Create a provider that invokes the constructor and sets its fields.
379 ParameterizedType that = (ParameterizedType) o; local
380 return Arrays.equals(getActualTypeArguments(), that.getActualTypeArguments())
381 && that.getRawType() == rawType;
  /external/mp4parser/isoparser/src/main/java/com/googlecode/mp4parser/boxes/
AbstractSampleEncryptionBox.java 311 AbstractSampleEncryptionBox that = (AbstractSampleEncryptionBox) o; local
313 if (algorithmId != that.algorithmId) {
316 if (ivSize != that.ivSize) {
319 if (entries != null ? !entries.equals(that.entries) : that.entries != null) {
322 if (!Arrays.equals(kid, that.kid)) {
  /external/nist-sip/java/gov/nist/javax/sip/header/
SIPHeaderList.java 45 * of SIPObjects that appear in SIPHeaders
83 * Concatenate the list of stuff that we are keeping around and also the
84 * text corresponding to these structures (that we parsed).
94 * Concatenate the list of stuff that we are keeping around and also the
95 * text corresponding to these structures (that we parsed).
400 SIPHeaderList<SIPHeader> that = (SIPHeaderList<SIPHeader>) other; local
401 if (this.hlist == that.hlist)
404 return that.hlist == null || that.hlist.size() == 0;
405 return this.hlist.equals(that.hlist)
    [all...]
  /external/robolectric/v1/src/main/java/com/xtremelabs/robolectric/
RobolectricConfig.java 299 RobolectricConfig that = (RobolectricConfig) o; local
301 if (androidManifestFile != null ? !androidManifestFile.equals(that.androidManifestFile) : that.androidManifestFile != null) {
304 if (getAssetsDirectory() != null ? !getAssetsDirectory().equals(that.getAssetsDirectory()) : that.getAssetsDirectory() != null) {
307 if (getResourceDirectory() != null ? !getResourceDirectory().equals(that.getResourceDirectory()) : that.getResourceDirectory() != null) {
  /external/testng/src/main/java/org/testng/remote/strprotocol/
TestResultMessage.java 273 final TestResultMessage that = (TestResultMessage) o; local
275 if(m_suiteName != null ? !m_suiteName.equals(that.m_suiteName) : that.m_suiteName != null) {
278 if(m_testName != null ? !m_testName.equals(that.m_testName) : that.m_testName != null) {
281 if(m_testClassName != null ? !m_testClassName.equals(that.m_testClassName) : that.m_testClassName != null) {
285 if(toDisplayString != null ? !toDisplayString.equals(that.toDisplayString()) : that.toDisplayString() != null) {
  /frameworks/opt/net/wifi/service/java/com/android/server/wifi/hotspot2/omadm/
XMLNode.java 79 XMLNode that = (XMLNode) thatObject; local
80 if (!getTag().equals(that.getTag())
81 || mAttributes.size() != that.mAttributes.size()
82 || mChildren.size() != that.mChildren.size()) {
87 if (!entry.getValue().equals(that.mAttributes.get(entry.getKey()))) {
92 List<XMLNode> cloneOfThat = new ArrayList<>(that.mChildren);
  /libcore/ojluni/src/main/java/java/net/
NetworkInterface.java 9 * by Oracle in the LICENSE file that accompanied this code.
11 * This code is distributed in the hope that it will be useful, but WITHOUT
14 * version 2 for more details (a copy is included in the LICENSE file that
289 * Convenience method to search for a network interface that
446 * @return the value of the MTU for that interface.
495 NetworkInterface that = (NetworkInterface)obj; local
497 if (!this.name.equals(that.name)) {
501 if (that.name != null) {
507 return that.addrs == null;
508 } else if (that.addrs == null)
    [all...]
  /packages/apps/Contacts/src/com/android/contacts/quickcontact/
DataAction.java 152 // Note that this item will get a SIP-specific variant
155 // regular phone numbers.) That's because the phone
331 DataAction that = (DataAction)t; local
332 if (!MoreContactUtils.shouldCollapse(mMimeType, mBody, that.mMimeType, that.mBody)) {
335 if (!TextUtils.equals(mMimeType, that.mMimeType)
336 || !ContactsUtils.areIntentActionEqual(mIntent, that.mIntent)) {
  /packages/apps/ManagedProvisioning/src/com/android/managedprovisioning/model/
ProvisioningParams.java 96 /** {@link Account} that should be migrated to the managed profile. */
119 * <p>Note that {@link ProvisioningParams} is not immutable because this field is mutable.
262 ProvisioningParams that = (ProvisioningParams) o; local
263 return localTime == that.localTime
264 && startedByTrustedSource == that.startedByTrustedSource
265 && leaveAllSystemAppsEnabled == that.leaveAllSystemAppsEnabled
266 && skipEncryption == that.skipEncryption
267 && skipUserSetup == that.skipUserSetup
268 && Objects.equals(timeZone, that.timeZone)
269 && Objects.equals(locale, that.locale
    [all...]
  /packages/apps/TV/tests/common/src/com/android/tv/testing/
ChannelInfo.java 166 ChannelInfo that = (ChannelInfo) o; local
167 return Objects.equals(originalNetworkId, that.originalNetworkId) &&
168 Objects.equals(videoWidth, that.videoWidth) &&
169 Objects.equals(videoHeight, that.videoHeight) &&
170 Objects.equals(audioChannel, that.audioChannel) &&
171 Objects.equals(audioLanguageCount, that.audioLanguageCount) &&
172 Objects.equals(hasClosedCaption, that.hasClosedCaption) &&
173 Objects.equals(appLinkColor, that.appLinkColor) &&
174 Objects.equals(number, that.number) &&
175 Objects.equals(name, that.name) &
    [all...]
  /packages/apps/UnifiedEmail/src/com/android/mail/providers/
Settings.java 88 // folder. That should make all the information about the folder available without an
399 * that the setting is not yet set, fall back to
446 final Settings that = (Settings) aThat; local
448 ? mTransientAutoAdvance.equals(that.mTransientAutoAdvance)
449 : that.mTransientAutoAdvance == null;
450 return (TextUtils.equals(signature, that.signature)
451 && mAutoAdvance == that.mAutoAdvance
453 && snapHeaders == that.snapHeaders
454 && replyBehavior == that.replyBehavior
455 && convListIcon == that.convListIco
    [all...]
  /packages/services/Car/service/src/com/android/car/hal/
PowerHalService.java 139 PowerState that = (PowerState) o; local
140 return this.state == that.state && this.param == that.param;
  /prebuilts/tools/common/m2/repository/org/hamcrest/hamcrest-integration/1.3/
hamcrest-integration-1.3.jar 
  /prebuilts/tools/common/m2/repository/org/apache/maven/doxia/doxia-module-fml/1.0/
doxia-module-fml-1.0.jar 
  /prebuilts/tools/common/m2/repository/com/google/truth/truth/0.28/
truth-0.28.jar 
  /prebuilts/tools/common/m2/repository/com/google/truth/truth/0.26/
truth-0.26.jar 
  /prebuilts/tools/common/m2/repository/org/apache/maven/doxia/doxia-decoration-model/1.0/
doxia-decoration-model-1.0.jar 
  /external/apache-harmony/security/src/test/support/common/java/org/apache/harmony/security/tests/support/
TestCertUtils.java 307 // A String that makes different TestCertificates to be different.
329 * A ctor that allows to specify both the TYPE of certificate and the
366 TestCertificate that = (TestCertificate) obj; local
367 if (this == that) {
371 return that.diff == null;
373 return this.diff.equals(that.diff);
600 * on the presumption that its {@link TestX509Certificate#getEncoded()
  /external/doclava/src/com/google/doclava/
Errors.java 39 ErrorMessage that = (ErrorMessage) o; local
40 int r = this.pos.compareTo(that.pos);
42 return this.msg.compareTo(that.msg);

Completed in 1160 milliseconds

1 2 3 4 5 6 7 8 91011>>