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

<<11121314151617181920>>

  /external/guava/guava/src/com/google/common/reflect/
TypeResolver.java 44 * <p>Note that usually type mappings are already implied by the static type hierarchy (for example,
86 * @param actual The type that the formal type variable(s) are mapped to. It can be or contain yet
255 * doesn't try to resolve any type variable on generic declarations that are already being
291 * TypeVariable must have a different declaration or name. The only TypeVariable that our
292 * new TypeVariable _will_ be equal to is an equivalent TypeVariable that was also created
293 * by us. And that equality is guaranteed to hold because it doesn't involve the JDK
362 // cycle detected, remove the entire cycle from the mapping so that
380 // Instead, it should create a capture of the wildcard so that set() rejects any List<T>.
438 * Wraps around {@code TypeVariable<?>} to ensure that any two type variables are equal as long as
447 * List<A extends String>, we need to compare that <A extends B> is unequal t
464 TypeVariableKey that = (TypeVariableKey) obj; local
    [all...]
Types.java 151 * Returns a new {@link TypeVariable} that belongs to {@code declaration} with
254 GenericArrayType that = (GenericArrayType) obj; local
256 getGenericComponentType(), that.getGenericComponentType());
314 ParameterizedType that = (ParameterizedType) other; local
315 return getRawType().equals(that.getRawType())
316 && Objects.equal(getOwnerType(), that.getOwnerType())
318 getActualTypeArguments(), that.getActualTypeArguments());
338 * interface, whose return type {@code AnnotatedType[]} is also new in Java 8. That means that we
339 * cannot implement that interface in source code in a way that will compile on both Java 7 an
438 TypeVariableImpl<?> that = typeVariableInvocationHandler.typeVariableImpl; local
447 TypeVariable<?> that = (TypeVariable<?>) obj; local
478 WildcardType that = (WildcardType) obj; local
    [all...]
  /external/guava/guava-testlib/src/com/google/common/testing/
FreshValueGenerator.java 126 * Generates fresh instances of types that are different from each other (if possible).
246 FreshInvocationHandler that = (FreshInvocationHandler) obj; local
247 return identity == that.identity;
  /external/icu/icu4c/source/i18n/
rbtz.cpp 90 RuleBasedTimeZone::operator==(const TimeZone& that) const {
91 if (this == &that) {
94 if (typeid(*this) != typeid(that)
95 || BasicTimeZone::operator==(that) == FALSE) {
98 RuleBasedTimeZone *rbtz = (RuleBasedTimeZone*)&that;
110 RuleBasedTimeZone::operator!=(const TimeZone& that) const {
111 return !operator==(that);
532 const RuleBasedTimeZone& that = (const RuleBasedTimeZone&)other; local
533 if (*fInitialRule != *(that.fInitialRule)) {
536 if (compareRules(fHistoricRules, that.fHistoricRules
    [all...]
  /external/mesa3d/src/gallium/drivers/nv50/codegen/
nv50_ir.cpp 95 // more of a hint; applying a modifier makes use of that hint.
165 // including the source modifiers, i.e. make sure that all uses support
260 LValue *that = new_LValue(pol.context(), reg.file); local
262 pol.set<Value>(this, that);
264 that->reg.size = this->reg.size;
265 that->reg.type = this->reg.type;
266 that->reg.data = this->reg.data;
268 return that;
297 Symbol *that = new_Symbol(prog, reg.file, reg.fileIndex); local
299 pol.set<Value>(this, that);
370 ImmediateValue *that = new_ImmediateValue(prog, 0u); local
    [all...]
  /external/mp4parser/isoparser/src/main/java/com/googlecode/mp4parser/boxes/mp4/objectdescriptors/
AudioSpecificConfig.java 516 throw new UnsupportedOperationException("can't serialize that yet");
529 throw new UnsupportedOperationException("can't serialize that yet");
994 AudioSpecificConfig that = (AudioSpecificConfig) o; local
    [all...]
  /external/nist-sip/java/gov/nist/javax/sip/stack/
TCPMessageChannel.java 44 * Niklas Uhrberg suggested that a mechanism be added to limit the number of simultaneous open
52 * The SIP sipStack starts this from the main SIPStack class for each connection that it accepts.
54 * message parser calls back via the parseError or processMessage functions that are defined as
110 * new connections. The sock input is the socket that is returned from the accept. Global data
111 * that is shared by all threads is accessible in the Server structure.
216 * get the address of the client that sent the data to us.
218 * @return Address of the client that sent us data that resulted in this channel being
356 * @param sipMessage -- the message that incurred the error.
358 * @param header -- header that caused the error
685 TCPMessageChannel that = (TCPMessageChannel) other; local
    [all...]
UDPMessageChannel.java 65 * Kim Kirby (Keyvoice) suggested that duplicate checking should be added to the
67 * flag be added to this. Niklas Uhrberg suggested that thread pooling support
69 * a bug with this code that was sending it into an infinite loop when a bad
75 * unnecessary). Ricardo Bora (Natural Convergence ) added code that prevents
81 * This is the UDP Message handler that gets created when a UDP message needs to
137 * A table that keeps track of when the last pingback was sent to a given remote IP address
139 * infinite loop. If a second pingback happens in that period of time, it will be dropped.
254 // messages that we write out to him.
577 * Exception that is given to us by the parser.
875 UDPMessageChannel that = (UDPMessageChannel) other; local
    [all...]
  /external/skia/src/effects/
SkTableColorFilter.cpp 4 * Use of this source code is governed by a BSD-style license that can be
227 // now check that we got the size we expected
282 // Combines the two lookup tables so that making a lookup using res[] has
512 const ColorTableEffect& that = other.cast<ColorTableEffect>(); local
513 SkASSERT(SkToBool(fAtlas) == SkToBool(that.fAtlas));
515 return fRow == that.fRow;
  /external/skia/src/gpu/batches/
GrAADistanceFieldPathRenderer.cpp 5 * Use of this source code is governed by a BSD-style license that can be
47 // remove any paths that use this plot
102 // the goal is to accelerate rendering of lots of small paths that may be scaling
144 // in fPath since that path may have resulted from a SkStrokeRec::applyToPath call.
507 AADistanceFieldPathBatch* that = t->cast<AADistanceFieldPathBatch>(); variable
508 if (!GrPipeline::CanCombine(*this->pipeline(), this->bounds(), *that->pipeline(),
509 that->bounds(), caps)) {
514 if (!this->viewMatrix().cheapEqualTo(that->viewMatrix())) {
518 fGeoData.push_back_n(that->geoData()->count(), that->geoData()->begin())
    [all...]
GrAAStrokeRectBatch.cpp 4 * Use of this source code is governed by a BSD-style license that can be
330 AAStrokeRectBatch* that = t->cast<AAStrokeRectBatch>(); local
332 if (!GrPipeline::CanCombine(*this->pipeline(), this->bounds(), *that->pipeline(),
333 that->bounds(), caps)) {
338 if (this->miterStroke() != that->miterStroke()) {
344 // using vertex attributes in these cases, but haven't investigated that
345 if (this->usesLocalCoords() && !this->viewMatrix().cheapEqualTo(that->viewMatrix())) {
351 if (this->canTweakAlphaForCoverage() != that->canTweakAlphaForCoverage()) {
355 if (this->color() != that->color()) {
358 fGeoData.push_back_n(that->geoData()->count(), that->geoData()->begin())
    [all...]
GrDefaultPathRenderer.cpp 4 * Use of this source code is governed by a BSD-style license that can be
399 DefaultPathBatch* that = t->cast<DefaultPathBatch>(); variable
400 if (!GrPipeline::CanCombine(*this->pipeline(), this->bounds(), *that->pipeline(),
401 that->bounds(), caps)) {
405 if (this->color() != that->color()) {
409 if (this->coverage() != that->coverage()) {
413 if (!this->viewMatrix().cheapEqualTo(that->viewMatrix())) {
417 if (this->isHairline() != that->isHairline()) {
421 fGeoData.push_back_n(that->geoData()->count(), that->geoData()->begin())
    [all...]
  /frameworks/base/core/java/com/android/internal/inputmethod/
InputMethodSubtypeSwitchingController.java 150 final ImeSubtypeListItem that = (ImeSubtypeListItem)o; local
151 if (!Objects.equals(this.mImi, that.mImi)) {
154 if (this.mSubtypeId != that.mSubtypeId) {
290 * @param onlyCurrentIme {@code true} to limit the search space to IME subtypes that belong
292 * @param imi {@link InputMethodInfo} that will be used in conjunction with {@code subtype}
294 * @param subtype {@link InputMethodSubtype} that will be used in conjunction with
391 * @param onlyCurrentIme {@code true} to limit the search space to IME subtypes that belong
393 * @param imi {@link InputMethodInfo} that will be used in conjunction with {@code subtype}
395 * @param subtype {@link InputMethodSubtype} that will be used in conjunction with
490 * @param onlyCurrentIme {@code true} to limit the search space to IME subtypes that belon
    [all...]
  /frameworks/base/core/tests/coretests/src/android/content/pm/
RegisteredServicesCacheTest.java 118 // Now register only one service and verify that another one is removed
175 // Check that marker was created
183 // Re-read data from disk. Verify that services were saved and old file was ignored
339 TestServiceType that = (TestServiceType) o; local
341 return type.equals(that.type) && value.equals(that.value);
  /frameworks/base/packages/Osu/src/com/android/hotspot2/osu/
IconCache.java 68 IconKey that = (IconKey) thatObject; local
70 return mFileName.equals(that.mFileName) && ((mBSSID == that.mBSSID) ||
71 ((mAnqpDomID == that.mAnqpDomID) && (mAnqpDomID != 0) &&
72 (mHESSID == that.mHESSID) && ((mHESSID != 0)
73 || mSSID.equals(that.mSSID))));
322 // Update any other pending entries that matches the ESS of the currently resolved icon
  /frameworks/base/services/core/java/com/android/server/pm/
ShortcutUser.java 79 final PackageWithUser that = (PackageWithUser) obj; local
81 return userId == that.userId && packageName.equals(that.packageName);
99 /** Default launcher that can access the launcher apps APIs. */
  /libcore/ojluni/src/main/java/java/security/
Signature.java 10 * by Oracle in the LICENSE file that accompanied this code.
12 * This code is distributed in the hope that it will be useful, but WITHOUT
15 * version 2 for more details (a copy is included in the LICENSE file that
95 * <p>Note that this class is abstract and extends from
231 * Possible {@link #state} value, signifying that
237 * Possible {@link #state} value, signifying that
243 * Possible {@link #state} value, signifying that
284 * Returns a Signature object that implements the specified signature
291 * Provider that supports the specified algorithm is returned.
293 * <p> Note that the list of registered providers may be retrieved vi
1055 Signature that = local
    [all...]
  /libcore/ojluni/src/main/java/java/util/
SimpleTimeZone.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
51 * that represents a time zone for use with a Gregorian calendar.
55 * from GMT and the daylight saving schedule, except that the {@link
156 * @param ID The time zone name that is given to this instance.
582 * assumes that the start and end month are distinct. It also
900 SimpleTimeZone that = (SimpleTimeZone) obj; local
920 SimpleTimeZone that = (SimpleTimeZone) other; local
    [all...]
  /libcore/ojluni/src/main/java/sun/util/calendar/
CalendarDate.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
34 * in time by calendar date and time fields that are multiple cycles
37 * <code>CalendarDate</code> class that holds calendar field values
388 CalendarDate that = (CalendarDate) obj; local
389 if (isNormalized() != that.isNormalized()) {
393 boolean thatHasZone = that.zoneinfo != null;
397 if (hasZone && !zoneinfo.equals(that.zoneinfo)) {
400 return (getEra() == that.getEra(
    [all...]
  /libcore/support/src/test/java/org/apache/harmony/security/tests/support/
TestCertUtils.java 312 // A String that makes different TestCertificates to be different.
334 * A ctor that allows to specify both the TYPE of certificate and the
371 TestCertificate that = (TestCertificate) obj; local
372 if (this == that) {
376 return that.diff == null;
378 return this.diff.equals(that.diff);
610 * on the presumption that its {@link TestX509Certificate#getEncoded()
  /packages/apps/Email/emailcommon/src/com/android/emailcommon/provider/
HostAuth.java 160 * a {@code clientAlias} is provided, this indicates that a secure
300 * Ensure that all optionally-loaded fields are populated from the provider.
366 * that flags indicates use of a secure connection
491 HostAuth that = (HostAuth)o; local
492 return mPort == that.mPort
493 && mId == that.mId
494 && mFlags == that.mFlags
495 && TextUtils.equals(mProtocol, that.mProtocol)
496 && TextUtils.equals(mAddress, that.mAddress)
497 && TextUtils.equals(mLogin, that.mLogin
    [all...]
  /packages/apps/UnifiedEmail/src/com/android/mail/providers/
Attachment.java 59 * Workaround for b/8070022 so that appending a null partId to the end of a
64 // Indicates that this is a dummy placeholder attachment.
261 // insert attachment into content provider so that we can open the file
378 // Add some additional fields that are helpful when debugging issues
525 * that appears in the body of the message content (including possibly
541 final Attachment that = (Attachment) o; local
543 if (destination != that.destination) {
546 if (downloadedSize != that.downloadedSize) {
549 if (size != that.size) {
552 if (state != that.state)
    [all...]
  /prebuilts/tools/common/m2/repository/com/google/truth/truth/0.24/
truth-0.24.jar 
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
org.eclipse.core.expressions_3.4.200.v20100505.jar 
  /prebuilts/tools/common/eclipse/
org.eclipse.core.expressions_3.4.200.v20100505.jar 

Completed in 1622 milliseconds

<<11121314151617181920>>