HomeSort by relevance Sort by last modified time
    Searched defs:that (Results 276 - 300 of 1208) sorted by null

<<11121314151617181920>>

  /external/guava/guava-gwt/src-super/com/google/common/cache/super/com/google/common/cache/
LocalCache.java 249 * This cast isn't safe, but we can rely on the fact that K is almost always passed to
461 * LinkedHashMap that enforces it's maximum size and logs events in a StatsCounter object
537 * <p>Expiration is only checked on hasNext(), so as to ensure that a next() call never returns
667 * Custom Entry class used by EntryIterator.next(), that relays setValue changes to the
693 Entry<?, ?> that = (Entry<?, ?>) object; local
694 return key.equals(that.getKey()) && value.equals(that.getValue());
  /external/icu/icu4j/tools/build/src/com/ibm/icu/dev/tool/docs/
APIInfo.java 72 APIInfo that = (APIInfo)rhs; local
73 return this.info == that.info &&
74 this.pack.equals(that.pack) &&
75 this.cls.equals(that.cls) &&
76 this.name.equals(that.name) &&
77 this.sig.equals(that.sig) &&
78 this.exc.equals(that.exc) &&
144 * will be one of corresponding values for that type.
157 * will be one of corresponding values for that type. Brief
358 * this and the default comparator is that APIInfos representing classes are considere
    [all...]
  /external/nist-sip/java/gov/nist/javax/sip/stack/
TLSMessageChannel.java 30 * JAIN sipStack. Niklas Uhrberg suggested that a mechanism be added to
59 * sipStack starts this from the main SIPStack class for each connection that it accepts. It
61 * message parser calls back via the parseError or processMessage functions that are defined as
113 * new connections. The sock input is the socket that is returned from the accept. Global data
114 * that is shared by all threads is accessible in the Server structure.
121 * @param msgProcessor -- the message processor that created us.
166 * @param messageProcessor -- the message processor that created us.
228 * get the address of the client that sent the data to us.
230 * @return Address of the client that sent us data that resulted in this channel bein
664 TLSMessageChannel that = (TLSMessageChannel) other; local
    [all...]
  /external/skia/src/gpu/
GrOvalRenderer.cpp 4 * Use of this source code is governed by a BSD-style license that can be
736 CircleBatch* that = t->cast<CircleBatch>(); variable
737 if (!GrPipeline::CanCombine(*this->pipeline(), this->bounds(), *that->pipeline(),
738 that->bounds(), caps)) {
742 if (this->stroke() != that->stroke()) {
746 SkASSERT(this->usesLocalCoords() == that->usesLocalCoords());
747 if (this->usesLocalCoords() && !this->viewMatrix().cheapEqualTo(that->viewMatrix())) {
751 fGeoData.push_back_n(that->geoData()->count(), that->geoData()->begin());
752 this->joinBounds(that->bounds())
954 EllipseBatch* that = t->cast<EllipseBatch>(); variable
1200 DIEllipseBatch* that = t->cast<DIEllipseBatch>(); variable
1506 RRectCircleRendererBatch* that = t->cast<RRectCircleRendererBatch>(); variable
1696 RRectEllipseRendererBatch* that = t->cast<RRectEllipseRendererBatch>(); variable
    [all...]
  /external/skia/src/gpu/batches/
GrAAConvexPathRenderer.cpp 5 * Use of this source code is governed by a BSD-style license that can be
75 // We translate the polygon so that the first point is at the origin.
274 // notice that the sample may be close to a very thin area of the path and
276 // line paths. We detect paths that are very close to a line (zero area) and
445 // with no interior, and that the resulting shared edge uses the same endpoints.
502 // with no interior, and that the resulting shared edge uses the same endpoints.
873 // We use the fact that SkPath::transform path does subdivision based on
951 AAConvexPathBatch* that = t->cast<AAConvexPathBatch>(); variable
    [all...]
GrAAHairLinePathRenderer.cpp 4 * Use of this source code is governed by a BSD-style license that can be
45 // the quadratic's bounding triangle but has been expanded so that the
48 // that is rendered would look like this:
261 // that appears near max curvature of very thin conics. Thin
651 // This is a hack to workaround the fact that we move some degenerate segments offscreen.
731 AAHairlineBatch* that = t->cast<AAHairlineBatch>(); variable
733 if (!GrPipeline::CanCombine(*this->pipeline(), this->bounds(), *that->pipeline(),
734 that->bounds(), caps)) {
738 if (this->viewMatrix().hasPerspective() != that->viewMatrix().hasPerspective()) {
744 !this->viewMatrix().cheapEqualTo(that->viewMatrix()))
    [all...]
  /frameworks/base/core/java/android/view/
Display.java 46 * <li>The application display area specifies the part of the display that may contain
51 * <li>The real display area specifies the part of the display that contains content
61 * that are currently attached and whether mirroring has been enabled.
85 // to getHeight() and getWidth() to ensure that applications perceive
105 * Display flag: Indicates that the display supports compositing content
106 * that is stored in protected graphics buffers.
114 * Secure (DRM) video decoders may allocate protected graphics buffers to request that
119 * An application can use the absence of this flag as a hint that it should not use protected
123 * or adopt a different strategy for decoding content that does not rely on
132 * Display flag: Indicates that the display has a secure video output an
1092 Mode that = (Mode) other; local
1239 HdrCapabilities that = (HdrCapabilities) other; local
    [all...]
  /frameworks/base/services/core/java/com/android/server/pm/
ShortcutUser.java 97 final PackageWithUser that = (PackageWithUser) obj; local
99 return userId == that.userId && packageName.equals(that.packageName);
119 * when getHomeActivitiesAsUser() return null. We need it so that in this situation the
275 * that's a less of an issue because for the launcher we report shortcut changes with
386 // If lastAppScanTime is in the future, that means the clock went backwards.
483 // installed from Play Store yet, but it's still possible that system apps have already
488 // When such a system app has allowbackup=false, then we'll keep the shortcuts that have
  /frameworks/opt/net/wifi/service/java/com/android/server/wifi/hotspot2/
NetworkDetail.java 222 * decode the SSID will be used as an indication that the whole frame is malformed and
500 NetworkDetail that = (NetworkDetail)thatObject; local
502 return getSSID().equals(that.getSSID()) && getBSSID() == that.getBSSID();
  /frameworks/support/v7/recyclerview/tests/src/android/support/v7/widget/
BaseRecyclerViewAnimationsTest.java 714 AnimateLogBase that = (AnimateLogBase) o; local
716 if (viewHolder != null ? !viewHolder.equals(that.viewHolder)
717 : that.viewHolder != null) {
720 if (preInfo != null ? !preInfo.equals(that.preInfo) : that.preInfo != null) {
723 return !(postInfo != null ? !postInfo.equals(that.postInfo) : that.postInfo != null);
  /libcore/ojluni/src/main/java/java/text/
AttributedString.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
135 * @param attributes The attributes that apply to the entire string.
189 * empty text, all attributes will be discarded. Note that any
211 * AttributedCharacterIterator. Only attributes that match the
214 * discarded. Note that any attributes wrapped by an Annotation
267 // scan from the top of the text so that we can discard any
268 // Annotation that is no longer applied to a subset text segment.
477 // make copies of the attribute information of the old run that the new one used to be part o
778 AttributedStringIterator that = (AttributedStringIterator) obj; local
    [all...]
  /libcore/ojluni/src/main/java/java/util/jar/
JarVerifier.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
50 /* a table mapping names to code signers, for jar entries that have
54 /* a table mapping names to code signers, for jar entries that have
61 /** "queue" of pending PKCS7 blocks that we couldn't parse
172 // only set the jev object for entries that have a signature
596 * signing data that can be compared by object reference identity.
630 VerifierCodeSource that = (VerifierCodeSource) obj; local
637 if (isSameDomain(that.csdomain))
    [all...]
  /packages/apps/Calendar/src/com/android/calendar/alerts/
GlobalDismissManager.java 78 GlobalDismissId that = (GlobalDismissId) o; local
80 if (mStartTime != that.mStartTime) {
83 if (!mAccountName.equals(that.mAccountName)) {
86 if (!mSyncId.equals(that.mSyncId)) {
131 LocalDismissId that = (LocalDismissId) o; local
133 if (mEventId != that.mEventId) {
136 if (mStartTime != that.mStartTime) {
139 if (!mAccountName.equals(that.mAccountName)) {
142 if (!mAccountType.equals(that.mAccountType)) {
207 * @param eventIds IDs for events that have posted notifications that may b
    [all...]
  /packages/apps/UnifiedEmail/src/com/google/android/mail/common/html/parser/
HtmlDocument.java 372 Text that = (Text) o; local
374 return this.originalHtml == null ? that.originalHtml == null
375 : this.originalHtml.equals(that.originalHtml);
522 * include preceeding whitespace for the first attribute, as that
526 * method does not validate that
532 * This method does not validate that
571 /** Gets the list of attributes, note that this maybe null. */
708 * would be preserved. This method does not validate that originalHtml is a
847 // Assume that value-less attribute are boolean attributes like "disabled"
892 * Filter is like Visitor, except it implies that the nodes may be changed
    [all...]
  /packages/services/Car/service/src/com/android/car/
CarAudioService.java 305 // CarProxy in top, but no external focus: Drop it so that some other app
494 // Most cars do not allow that, but if mixing is possible, it can take media stream.
872 FocusState that = (FocusState) o; local
918 FocusRequest that = (FocusRequest) o; local
    [all...]
  /prebuilts/tools/common/m2/repository/org/eclipse/aether/aether-util/0.9.0.M3/
aether-util-0.9.0.M3.jar 
  /prebuilts/devtools/tools/lib/
jfreechart-1.0.9.jar 
  /prebuilts/tools/common/jfreechart/
jfreechart-1.0.9.jar 
  /prebuilts/tools/common/m2/repository/jfree/jfreechart/1.0.9/
jfreechart-1.0.9.jar 
  /prebuilts/eclipse/maven/apache-maven-3.2.1/lib/
aether-util-0.9.0.M2.jar 
  /prebuilts/tools/common/m2/repository/org/eclipse/aether/aether-util/0.9.0.M2/
aether-util-0.9.0.M2.jar 
  /prebuilts/eclipse/mavenplugins/tycho/tycho-dependencies-m2repo/org/sonatype/aether/aether-util/1.7/
aether-util-1.7.jar 
  /prebuilts/tools/common/m2/repository/org/sonatype/aether/aether-util/1.7/
aether-util-1.7.jar 
  /prebuilts/tools/common/m2/repository/net/bytebuddy/byte-buddy-agent/1.4.33/
byte-buddy-agent-1.4.33.jar 
  /external/guava/guava-testlib/test/com/google/common/testing/
ClassSanityTesterTest.java 87 "No public static methods that return java.lang.Object or subtype are found in "
144 "No public static methods that return java.lang.Iterable or subtype are found in "
613 HasAnInterface that = (HasAnInterface) obj; local
614 return i.equals(that.i);
669 Wrapper that = (Wrapper) obj; local
670 return wrapped.equals(that.wrapped);
749 GoodEquals that = (GoodEquals) obj; local
750 return a.equals(that.a) && b == that.b;
793 SameIntegerInstance that = (SameIntegerInstance) obj local
815 SameLongInstance that = (SameLongInstance) obj; local
837 SameFloatInstance that = (SameFloatInstance) obj; local
859 SameDoubleInstance that = (SameDoubleInstance) obj; local
881 SameShortInstance that = (SameShortInstance) obj; local
903 SameByteInstance that = (SameByteInstance) obj; local
923 SameCharacterInstance that = (SameCharacterInstance) obj; local
943 SameBooleanInstance that = (SameBooleanInstance) obj; local
963 SameStringInstance that = (SameStringInstance) obj; local
983 SameObjectInstance that = (SameObjectInstance) obj; local
1003 SameInterfaceInstance that = (SameInterfaceInstance) obj; local
1023 SameListInstance that = (SameListInstance) obj; local
1043 UsesReferentialEquality that = (UsesReferentialEquality) obj; local
1063 UsesEnum that = (UsesEnum) obj; local
    [all...]

Completed in 9511 milliseconds

<<11121314151617181920>>