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

<<11121314151617181920>>

  /external/icu/icu4j/main/classes/core/src/com/ibm/icu/util/
LocalePriorityList.java 33 * "en, fr, de", and synthesize arbitrary quality values that put these in the
52 * weight, and then by input order. That is, if two languages have the same weight, the first one in the original order
126 * Return the weight for a given language, or null if there is none. Note that
178 final LocalePriorityList that = (LocalePriorityList) o; local
179 return languagesAndWeights.equals(that.languagesAndWeights);
  /external/jacoco/org.jacoco.core/src/org/jacoco/core/internal/analysis/
CounterImpl.java 198 final ICounter that = (ICounter) obj; local
199 return this.missed == that.getMissedCount()
200 && this.covered == that.getCoveredCount();
LineImpl.java 142 final ILine that = (ILine) obj; local
143 return this.instructions.equals(that.getInstructionCounter())
144 && this.branches.equals(that.getBranchCounter());
  /external/jmdns/src/javax/jmdns/impl/
DNSIncoming.java 32 // It is sending out target strings that don't follow the "domain name" format.
324 // It is sending out target strings that don't follow the "domain name" format.
533 void append(DNSIncoming that) {
534 if (this.isQuery() && this.isTruncated() && that.isQuery()) {
535 this._questions.addAll(that.getQuestions());
536 this._answers.addAll(that.getAnswers());
537 this._authoritativeAnswers.addAll(that.getAuthorities());
538 this._additionals.addAll(that.getAdditionals());
  /external/libchrome/base/message_loop/
message_pump_libevent.cc 2 // Use of this source code is governed by a BSD-style license that can be
41 // Not clear yet whether that situation occurs in practice,
272 // Tell both libevent and Run that they should break out of their loops.
278 // Tell libevent (in a threadsafe way) that it should break out of its loop.
287 // We know that we can't be blocked on Wait right now since this method can
329 // Both callbacks will be called. It is necessary to check that |controller|
348 MessagePumpLibevent* that = static_cast<MessagePumpLibevent*>(context); local
349 DCHECK(that->wakeup_pipe_out_ == socket);
355 that->processed_io_events_ = true;
357 event_base_loopbreak(that->event_base_)
    [all...]
  /external/libcxx/test/std/utilities/variant/variant.variant/variant.assign/
move.pass.cpp 102 NTMoveAssign &operator=(const NTMoveAssign &that) = default; member in struct:NTMoveAssign
103 NTMoveAssign &operator=(NTMoveAssign &&that) {
104 value = that.value;
105 that.value = -1;
129 TMoveAssignNTCopyAssign &operator=(const TMoveAssignNTCopyAssign &that) {
130 value = that.value;
  /external/mp4parser/isoparser/src/main/java/com/googlecode/mp4parser/boxes/mp4/samplegrouping/
CencSampleEncryptionInformationGroupEntry.java 103 CencSampleEncryptionInformationGroupEntry that = (CencSampleEncryptionInformationGroupEntry) o; local
105 if (isEncrypted != that.isEncrypted) {
108 if (ivSize != that.ivSize) {
111 if (!Arrays.equals(kid, that.kid)) {
SampleGroupDescriptionBox.java 34 * track. Each instance of the SampleGroupDescription box has a type code that distinguishes different
169 SampleGroupDescriptionBox that = (SampleGroupDescriptionBox) o; local
171 if (defaultLength != that.defaultLength) {
174 if (groupEntries != null ? !groupEntries.equals(that.groupEntries) : that.groupEntries != null) {
177 if (groupingType != null ? !groupingType.equals(that.groupingType) : that.groupingType != null) {
  /external/nist-sip/java/gov/nist/javax/sip/address/
AddressImpl.java 86 AddressImpl that = (AddressImpl) other; local
87 if (that.getMatcher() != null)
88 return that.getMatcher().match(this.encode());
89 else if (that.displayName != null && this.displayName == null)
91 else if (that.displayName == null)
92 return address.match(that.address);
94 return displayName.equalsIgnoreCase(that.displayName)
95 && address.match(that.address);
110 /** Get the port from the imbedded URI. This assumes that a SIP URL
124 * that the encapsulated object is a SipUri
    [all...]
  /external/okhttp/okhttp/src/main/java/com/squareup/okhttp/
Address.java 32 * that proxy information. For secure connections the address also includes the
35 * <p>HTTP requests that share the same {@code Address} may also share the same
114 /** Returns the service that will be used to resolve IP addresses for hostnames. */
131 * non-null list that contains minimally {@link Protocol#HTTP_1_1}.
174 Address that = (Address) other; local
175 return this.url.equals(that.url)
176 && this.dns.equals(that.dns)
177 && this.authenticator.equals(that.authenticator)
178 && this.protocols.equals(that.protocols)
179 && this.connectionSpecs.equals(that.connectionSpecs
    [all...]
  /external/skia/src/effects/
SkHighContrastFilter.cpp 4 * Use of this source code is governed by a BSD-style license that can be
201 const HighContrastFilterEffect& that = other.cast<HighContrastFilterEffect>(); variable
202 return fConfig.fGrayscale == that.fConfig.fGrayscale &&
203 fConfig.fInvertStyle == that.fConfig.fInvertStyle &&
204 fConfig.fContrast == that.fConfig.fContrast &&
205 fLinearize == that.fLinearize;
304 // angle_d3d9_es2 config, that failed. It seems that max(x, y) is not necessarily equal
  /external/skia/src/gpu/
GrStyle.h 4 * Use of this source code is governed by a BSD-style license that can be
17 * Represents the various ways that a GrShape can be styled. It has fill/stroking information
26 * A style object that represents a fill with no path effect.
35 * A style object that represents a hairline stroke with no path effect.
49 * Optional flags for computing keys that may remove unnecessary variation in the key due to
50 * style settings that don't affect particular classes of geometry.
61 * into a key. This occurs when there is a path effect that is not a dash. The key can
63 * that a simple fill has a zero sized key.
69 * has room for at least KeySize() values. It assumes that KeySize() returns a non-negative
70 * value for the combination of GrStyle, Apply and flags params. This is written so that the ke
84 GrStyle(const GrStyle& that) = default; member in class:GrStyle
    [all...]
  /external/skia/src/gpu/effects/
GrMagnifierEffect.cpp 4 * Use of this source code is governed by a BSD-style license that can be
144 const GrMagnifierEffect& that = other.cast<GrMagnifierEffect>(); local
145 (void)that;
146 if (fSrc != that.fSrc) return false;
147 if (fBounds != that.fBounds) return false;
148 if (fSrcRect != that.fSrcRect) return false;
149 if (fXInvZoom != that.fXInvZoom) return false;
150 if (fYInvZoom != that.fYInvZoom) return false;
151 if (fXInvInset != that.fXInvInset) return false;
152 if (fYInvInset != that.fYInvInset) return false
    [all...]
GrRRectBlurEffect.cpp 4 * Use of this source code is governed by a BSD-style license that can be
136 const GrRRectBlurEffect& that = other.cast<GrRRectBlurEffect>(); local
137 (void)that;
138 if (fSigma != that.fSigma) return false;
139 if (fRect != that.fRect) return false;
140 if (fCornerRadius != that.fCornerRadius) return false;
141 if (fNinePatchSampler != that.fNinePatchSampler) return false;
GrYUVtoRGBEffect.cpp 4 * Use of this source code is governed by a BSD-style license that can be
138 const GrYUVtoRGBEffect& that = other.cast<GrYUVtoRGBEffect>(); local
139 (void)that;
140 if (fYSampler != that.fYSampler) return false;
141 if (fYSamplerTransform != that.fYSamplerTransform) return false;
142 if (fUSampler != that.fUSampler) return false;
143 if (fUSamplerTransform != that.fUSamplerTransform) return false;
144 if (fVSampler != that.fVSampler) return false;
145 if (fVSamplerTransform != that.fVSamplerTransform) return false;
146 if (fColorSpaceMatrix != that.fColorSpaceMatrix) return false
    [all...]
  /external/skia/src/gpu/ops/
GrRegionOp.cpp 4 * Use of this source code is governed by a BSD-style license that can be
148 RegionOp* that = t->cast<RegionOp>(); variable
149 if (!fHelper.isCompatible(that->fHelper, caps, this->bounds(), that->bounds())) {
153 if (fViewMatrix != that->fViewMatrix) {
157 fRegions.push_back_n(that->fRegions.count(), that->fRegions.begin());
158 this->joinBounds(*that);
  /external/skqp/src/effects/
SkHighContrastFilter.cpp 4 * Use of this source code is governed by a BSD-style license that can be
201 const HighContrastFilterEffect& that = other.cast<HighContrastFilterEffect>(); variable
202 return fConfig.fGrayscale == that.fConfig.fGrayscale &&
203 fConfig.fInvertStyle == that.fConfig.fInvertStyle &&
204 fConfig.fContrast == that.fConfig.fContrast &&
205 fLinearize == that.fLinearize;
304 // angle_d3d9_es2 config, that failed. It seems that max(x, y) is not necessarily equal
  /external/skqp/src/gpu/
GrStyle.h 4 * Use of this source code is governed by a BSD-style license that can be
17 * Represents the various ways that a GrShape can be styled. It has fill/stroking information
26 * A style object that represents a fill with no path effect.
35 * A style object that represents a hairline stroke with no path effect.
49 * Optional flags for computing keys that may remove unnecessary variation in the key due to
50 * style settings that don't affect particular classes of geometry.
61 * into a key. This occurs when there is a path effect that is not a dash. The key can
63 * that a simple fill has a zero sized key.
69 * has room for at least KeySize() values. It assumes that KeySize() returns a non-negative
70 * value for the combination of GrStyle, Apply and flags params. This is written so that the ke
84 GrStyle(const GrStyle& that) = default; member in class:GrStyle
    [all...]
  /external/skqp/src/gpu/effects/
GrMagnifierEffect.cpp 4 * Use of this source code is governed by a BSD-style license that can be
144 const GrMagnifierEffect& that = other.cast<GrMagnifierEffect>(); local
145 (void)that;
146 if (fSrc != that.fSrc) return false;
147 if (fBounds != that.fBounds) return false;
148 if (fSrcRect != that.fSrcRect) return false;
149 if (fXInvZoom != that.fXInvZoom) return false;
150 if (fYInvZoom != that.fYInvZoom) return false;
151 if (fXInvInset != that.fXInvInset) return false;
152 if (fYInvInset != that.fYInvInset) return false
    [all...]
GrRRectBlurEffect.cpp 4 * Use of this source code is governed by a BSD-style license that can be
134 const GrRRectBlurEffect& that = other.cast<GrRRectBlurEffect>(); local
135 (void)that;
136 if (fSigma != that.fSigma) return false;
137 if (fRect != that.fRect) return false;
138 if (fCornerRadius != that.fCornerRadius) return false;
139 if (fNinePatchSampler != that.fNinePatchSampler) return false;
GrYUVtoRGBEffect.cpp 4 * Use of this source code is governed by a BSD-style license that can be
138 const GrYUVtoRGBEffect& that = other.cast<GrYUVtoRGBEffect>(); local
139 (void)that;
140 if (fYSampler != that.fYSampler) return false;
141 if (fYSamplerTransform != that.fYSamplerTransform) return false;
142 if (fUSampler != that.fUSampler) return false;
143 if (fUSamplerTransform != that.fUSamplerTransform) return false;
144 if (fVSampler != that.fVSampler) return false;
145 if (fVSamplerTransform != that.fVSamplerTransform) return false;
146 if (fColorSpaceMatrix != that.fColorSpaceMatrix) return false
    [all...]
  /external/skqp/src/gpu/ops/
GrRegionOp.cpp 4 * Use of this source code is governed by a BSD-style license that can be
148 RegionOp* that = t->cast<RegionOp>(); variable
149 if (!fHelper.isCompatible(that->fHelper, caps, this->bounds(), that->bounds())) {
153 if (fViewMatrix != that->fViewMatrix) {
157 fRegions.push_back_n(that->fRegions.count(), that->fRegions.begin());
158 this->joinBounds(*that);
  /external/v8/src/asmjs/
asm-types.cc 2 // Use of this source code is governed by a BSD-style license that can be
41 bool AsmType::IsExactly(AsmType* that) {
42 // TODO(jpp): maybe this can become this == that.
45 AsmValueType* tavt = that->AsValueType();
54 return that == this;
57 bool AsmType::IsA(AsmType* that) {
61 if (auto* tavt = that->AsValueType()) {
68 return as_callable->IsA(that);
72 return that == this;
254 auto* that = other->AsFunctionType() local
    [all...]
  /external/v8/src/compiler/
load-elimination.h 2 // Use of this source code is governed by a BSD-style license that can be
39 // Abstract state to approximate the current state of checks that are
54 AbstractChecks* that = new (zone) AbstractChecks(*this); local
55 that->nodes_[that->next_index_] = node;
56 that->next_index_ = (that->next_index_ + 1) % arraysize(nodes_);
57 return that;
60 bool Equals(AbstractChecks const* that) const;
61 AbstractChecks const* Merge(AbstractChecks const* that, Zone* zone) const
88 AbstractElements* that = new (zone) AbstractElements(*this); local
127 AbstractField* that = new (zone) AbstractField(zone); local
172 AbstractMaps* that = new (zone) AbstractMaps(zone); local
    [all...]
  /frameworks/base/core/java/android/service/carrier/
CarrierIdentifier.java 137 CarrierIdentifier that = (CarrierIdentifier) obj; local
138 return Objects.equals(mMcc, that.mMcc)
139 && Objects.equals(mMnc, that.mMnc)
140 && Objects.equals(mSpn, that.mSpn)
141 && Objects.equals(mImsi, that.mImsi)
142 && Objects.equals(mGid1, that.mGid1)
143 && Objects.equals(mGid2, that.mGid2);

Completed in 549 milliseconds

<<11121314151617181920>>