HomeSort by relevance Sort by last modified time
    Searched defs:that (Results 176 - 200 of 1889) sorted by null

1 2 3 4 5 6 78 91011>>

  /external/icu/icu4j/main/classes/core/src/com/ibm/icu/text/
StringCharacterIterator.java 13 // StringCharacterIterator has a bug that prevents it from working
96 * method is used by other java.text classes that want to avoid allocating
258 StringCharacterIterator that = (StringCharacterIterator) obj; local
260 if (hashCode() != that.hashCode()) {
263 if (!text.equals(that.text)) {
266 if (pos != that.pos || begin != that.begin || end != that.end) {
  /external/icu/icu4j/main/classes/core/src/com/ibm/icu/util/
ByteArrayWrapper.java 106 * Ensure that the internal byte array is at least of length capacity.
219 ByteArrayWrapper that = (ByteArrayWrapper)other; local
220 if (size != that.size) return false;
222 if (bytes[i] != that.bytes[i]) return false;
  /external/mp4parser/isoparser/src/main/java/com/googlecode/mp4parser/boxes/mp4/objectdescriptors/
SLConfigDescriptor.java 106 SLConfigDescriptor that = (SLConfigDescriptor) o; local
108 if (predefined != that.predefined) {
  /external/nist-sip/java/gov/nist/core/
HostPort.java 67 * Note that this could be different from the string that has
91 HostPort that = (HostPort) other; local
92 return port == that.port && host.equals(that.host);
  /external/nist-sip/java/gov/nist/javax/sip/header/
RequestLine.java 48 /** uri field. Note that this can be a SIP URI or a generic URI
187 *@param other object to compare with. We assume that all fields
195 RequestLine that = (RequestLine) other; local
198 this.method.equals(that.method)
199 && this.uri.equals(that.uri)
200 && this.sipVersion.equals(that.sipVersion);
223 * Converts indentation tabs to spaces so that we have a uniform indentation policy in the whole project.
  /external/okhttp/okhttp/src/main/java/com/squareup/okhttp/internal/framed/
Header.java 39 Header that = (Header) other; local
40 return this.name.equals(that.name)
41 && this.value.equals(that.value);
  /external/pdfium/core/fxcrt/
observable.h 2 // Use of this source code is governed by a BSD-style license that can be
25 ObservedPtr(const ObservedPtr& that) : ObservedPtr(that.Get()) {}
41 ObservedPtr& operator=(const ObservedPtr& that) {
42 Reset(that.Get());
45 bool operator==(const ObservedPtr& that) const {
46 return m_pObservable == that.m_pObservable;
48 bool operator!=(const ObservedPtr& that) const { return !(*this == that); }
59 Observable(const Observable& that) = delete member in class:fxcrt::Observable
74 Observable& operator=(const Observable& that) = delete; member in class:fxcrt::Observable
    [all...]
retain_ptr.h 2 // Use of this source code is governed by a BSD-style license that can be
16 // Used with std::unique_ptr to Release() objects that can't be deleted.
32 RetainPtr(const RetainPtr& that) : RetainPtr(that.Get()) {}
33 RetainPtr(RetainPtr&& that) noexcept { Swap(that); } variable
40 RetainPtr(const RetainPtr<U>& that) : RetainPtr(that.Get()) {}
54 void Swap(RetainPtr& that) { m_pObj.swap(that.m_pObj);
    [all...]
weak_ptr.h 2 // Use of this source code is governed by a BSD-style license that can be
23 WeakPtr(const WeakPtr& that) : m_pHandle(that.m_pHandle) {}
24 WeakPtr(WeakPtr&& that) noexcept { Swap(that); } variable
36 WeakPtr& operator=(const WeakPtr& that) {
37 m_pHandle = that.m_pHandle;
40 bool operator==(const WeakPtr& that) const {
41 return m_pHandle == that.m_pHandle;
43 bool operator!=(const WeakPtr& that) const { return !(*this == that);
    [all...]
  /external/pdfium/xfa/fxfa/
cxfa_ffdoc.h 2 // Use of this source code is governed by a BSD-style license that can be
27 FX_IMAGEDIB_AND_DPI(const FX_IMAGEDIB_AND_DPI& that);
40 const FX_IMAGEDIB_AND_DPI& that) = default; member in class:FX_IMAGEDIB_AND_DPI
  /external/skia/src/effects/
GrAlphaThresholdFragmentProcessor.cpp 4 * Use of this source code is governed by a BSD-style license that can be
83 const GrAlphaThresholdFragmentProcessor& that = other.cast<GrAlphaThresholdFragmentProcessor>(); local
84 (void)that;
85 if (fMask != that.fMask) return false;
86 if (fInnerThreshold != that.fInnerThreshold) return false;
87 if (fOuterThreshold != that.fOuterThreshold) return false;
  /external/skia/src/gpu/
GrAppliedClip.h 4 * Use of this source code is governed by a BSD-style license that can be
19 * Produced by GrHardClip. It provides a set of modifications to the hardware drawing state that
25 GrAppliedHardClip(GrAppliedHardClip&& that) = default; member in class:GrAppliedHardClip
61 bool operator==(const GrAppliedHardClip& that) const {
62 return fScissorState == that.fScissorState &&
63 fWindowRectsState == that.fWindowRectsState &&
64 fStencilStackID == that.fStencilStackID;
66 bool operator!=(const GrAppliedHardClip& that) const { return !(*this == that); }
75 * Produced by GrClip. It provides a set of modifications to GrPipeline that implement the clip
80 GrAppliedClip(GrAppliedClip&& that) = default; member in class:GrAppliedClip
    [all...]
  /external/skia/src/gpu/effects/
GrConstColorProcessor.cpp 4 * Use of this source code is governed by a BSD-style license that can be
73 const GrConstColorProcessor& that = other.cast<GrConstColorProcessor>(); local
74 (void)that;
75 if (fColor != that.fColor) return false;
76 if (fMode != that.fMode) return false;
GrEllipseEffect.cpp 4 * Use of this source code is governed by a BSD-style license that can be
116 const GrEllipseEffect& that = other.cast<GrEllipseEffect>(); local
117 (void)that;
118 if (fEdgeType != that.fEdgeType) return false;
119 if (fCenter != that.fCenter) return false;
120 if (fRadii != that.fRadii) return false;
GrRectBlurEffect.cpp 4 * Use of this source code is governed by a BSD-style license that can be
141 const GrRectBlurEffect& that = other.cast<GrRectBlurEffect>(); local
142 (void)that;
143 if (fRect != that.fRect) return false;
144 if (fSigma != that.fSigma) return false;
145 if (fBlurProfile != that.fBlurProfile) return false;
  /external/skqp/src/effects/
GrAlphaThresholdFragmentProcessor.cpp 4 * Use of this source code is governed by a BSD-style license that can be
83 const GrAlphaThresholdFragmentProcessor& that = other.cast<GrAlphaThresholdFragmentProcessor>(); local
84 (void)that;
85 if (fMask != that.fMask) return false;
86 if (fInnerThreshold != that.fInnerThreshold) return false;
87 if (fOuterThreshold != that.fOuterThreshold) return false;
  /external/skqp/src/gpu/
GrAppliedClip.h 4 * Use of this source code is governed by a BSD-style license that can be
19 * Produced by GrHardClip. It provides a set of modifications to the hardware drawing state that
25 GrAppliedHardClip(GrAppliedHardClip&& that) = default; member in class:GrAppliedHardClip
61 bool operator==(const GrAppliedHardClip& that) const {
62 return fScissorState == that.fScissorState &&
63 fWindowRectsState == that.fWindowRectsState &&
64 fStencilStackID == that.fStencilStackID;
66 bool operator!=(const GrAppliedHardClip& that) const { return !(*this == that); }
75 * Produced by GrClip. It provides a set of modifications to GrPipeline that implement the clip
80 GrAppliedClip(GrAppliedClip&& that) = default; member in class:GrAppliedClip
    [all...]
  /external/skqp/src/gpu/effects/
GrConstColorProcessor.cpp 4 * Use of this source code is governed by a BSD-style license that can be
73 const GrConstColorProcessor& that = other.cast<GrConstColorProcessor>(); local
74 (void)that;
75 if (fColor != that.fColor) return false;
76 if (fMode != that.fMode) return false;
GrEllipseEffect.cpp 4 * Use of this source code is governed by a BSD-style license that can be
116 const GrEllipseEffect& that = other.cast<GrEllipseEffect>(); local
117 (void)that;
118 if (fEdgeType != that.fEdgeType) return false;
119 if (fCenter != that.fCenter) return false;
120 if (fRadii != that.fRadii) return false;
GrRectBlurEffect.cpp 4 * Use of this source code is governed by a BSD-style license that can be
141 const GrRectBlurEffect& that = other.cast<GrRectBlurEffect>(); local
142 (void)that;
143 if (fRect != that.fRect) return false;
144 if (fSigma != that.fSigma) return false;
145 if (fBlurProfile != that.fBlurProfile) return false;
  /external/tensorflow/tensorflow/java/src/main/java/org/tensorflow/
Operation.java 19 * A Graph node that performs computation on Tensors.
21 * <p>An Operation is a node in a {@link Graph} that takes zero or more {@link Tensor}s (produced by
112 * <p>Warning: Does not check that the type of the tensor matches T. It is recommended to call
137 Operation that = (Operation) o; local
138 if (graph != that.graph) {
147 return unsafeNativeHandle == that.unsafeNativeHandle;
  /external/v8/src/zone/
zone-handle-set.h 2 // Use of this source code is governed by a BSD-style license that can be
101 ZoneHandleSet<T> that; local
105 that.insert(value, zone);
108 std::swap(*this, that);
  /frameworks/base/core/java/android/net/
IpPrefix.java 38 * in the IP address, starting from the most significant bit in network byte order, that
126 IpPrefix that = (IpPrefix) obj; local
127 return Arrays.equals(this.address, that.address) && this.prefixLength == that.prefixLength;
151 // array is the wrong length, but we check that in the constructor.
  /frameworks/base/core/java/com/android/internal/statusbar/
StatusBarIcon.java 40 // Now that we have the correct package name handy, let's fix it.
70 StatusBarIcon that = new StatusBarIcon(this.user, this.pkg, this.icon, local
72 that.visible = this.visible;
73 return that;
108 * Parcelable.Creator that instantiates StatusBarIcon objects
  /frameworks/base/services/backup/java/com/android/server/backup/
DataChangedJournal.java 30 * A journal of packages that have indicated that their data has changed (and therefore should be
33 * <p>This information is persisted to the filesystem so that it is not lost in the event of a
47 * Constructs an instance that reads from and writes to the given file.
97 DataChangedJournal that = (DataChangedJournal) object; local
99 return this.mFile.getCanonicalPath().equals(that.mFile.getCanonicalPath());

Completed in 292 milliseconds

1 2 3 4 5 6 78 91011>>