Searched refs:that (Results 1 - 25 of 2069) sorted by relevance

1234567891011>>

/external/libchrome/dbus/
H A Dobject_path.cc2 // Use of this source code is governed by a BSD-style license that can be
17 bool ObjectPath::operator<(const ObjectPath& that) const {
18 return value_ < that.value_;
21 bool ObjectPath::operator==(const ObjectPath& that) const {
22 return value_ == that.value_;
25 bool ObjectPath::operator!=(const ObjectPath& that) const {
26 return value_ != that.value_;
/external/annotation-tools/scene-lib/src/annotations/util/
H A DEqualByStringRepresentation.java8 * {@link EqualByStringRepresentation} is a "mix-in" class for objects that are
24 public final boolean equals(Object that) { argument
25 return that != null && this.getClass() == that.getClass()
26 && this.toString().equals(that.toString());
/external/pdfium/core/fxcrt/
H A Dunowned_ptr.h2 // Use of this source code is governed by a BSD-style license that can be
13 // UnownedPtr is a smart pointer class that behaves very much like a
18 // explaining that is it // Not owned. Additionally, an attempt to delete
23 // which checks that the object being pointed to is still alive.
27 // programming required is that the lifetime an object containing an
30 // The same checks are also performed at assignment time to prove that the
43 UnownedPtr(const UnownedPtr& that) : UnownedPtr(that.Get()) {} argument
54 UnownedPtr& operator=(T* that) { argument
56 m_pObj = that;
60 operator =(const UnownedPtr& that) argument
[all...]
H A Dretain_ptr.h2 // 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()) {} argument
33 RetainPtr(RetainPtr&& that) noexcept { Swap(that); } variable
40 RetainPtr(const RetainPtr<U>& that) : RetainPtr(that.Get()) {} argument
54 void Swap(RetainPtr& that) { m_pObj.swap(that argument
60 operator =(const RetainPtr& that) argument
66 operator =(RetainPtr&& that) argument
[all...]
/external/eigen/failtest/
H A Dfailtest_sanity_check.cpp2 This is just some text that won't compile as a C++ file, as a basic sanity check for failtest.
/external/llvm/test/MC/Mips/mips2/
H A Dinvalid-mips32r2-xfail.s1 # Instructions that are supposed to be invalid but currently aren't
/external/llvm/test/MC/Mips/mips32/
H A Dinvalid-mips32r2-xfail.s1 # Instructions that are supposed to be invalid but currently aren't
/external/llvm/test/MC/Mips/mips4/
H A Dinvalid-mips64r2-xfail.s1 # Instructions that are supposed to be invalid but currently aren't
/external/llvm/test/MC/Mips/mips5/
H A Dinvalid-mips64r2-xfail.s1 # Instructions that are supposed to be invalid but currently aren't
/external/llvm/test/MC/Mips/mips64/
H A Dinvalid-mips64r2-xfail.s1 # Instructions that are supposed to be invalid but currently aren't
/external/doclava/src/com/google/doclava/
H A DSourcePositionInfo.java28 public SourcePositionInfo(SourcePositionInfo that) { argument
29 this.file = that.file;
30 this.line = that.line;
31 this.column = that.column;
35 * Given this position and str which occurs at that position, as well as str an index into str,
40 public static SourcePositionInfo add(SourcePositionInfo that, String str, int index) { argument
41 if (that == null) {
44 int line = that.line;
53 return new SourcePositionInfo(that.file, line, 0);
56 public static SourcePositionInfo findBeginning(SourcePositionInfo that, Strin argument
[all...]
/external/pdfium/xfa/fxgraphics/
H A Dcxfa_gecolor.cpp2 // Use of this source code is governed by a BSD-style license that can be
27 CXFA_GEColor& CXFA_GEColor::operator=(const CXFA_GEColor& that) { argument
28 if (this != &that) {
29 m_type = that.m_type;
32 m_argb = that.m_argb;
36 m_argb = that.m_argb;
37 m_pointer.pattern = that.m_pointer.pattern;
41 m_pointer.shading = that.m_pointer.shading;
/external/google-breakpad/src/processor/
H A Dbasic_code_module.h5 // modification, are permitted provided that the following conditions are
30 // basic_code_module.h: Carries information about code modules that are loaded
34 // instantiated directly, only based on other objects that implement
55 // the CodeModule interface without requiring all of the resources that
57 explicit BasicCodeModule(const CodeModule *that) argument
58 : base_address_(that->base_address()),
59 size_(that->size()),
60 code_file_(that->code_file()),
61 code_identifier_(that->code_identifier()),
62 debug_file_(that
[all...]
/external/skia/include/gpu/
H A DGrSamplerState.h4 * Use of this source code is governed by a BSD-style license that can be
36 GrSamplerState& operator=(const GrSamplerState& that) { argument
37 fWrapModes[0] = that.fWrapModes[0];
38 fWrapModes[1] = that.fWrapModes[1];
39 fFilter = that.fFilter;
57 bool operator==(const GrSamplerState& that) const {
58 return fWrapModes[0] == that.fWrapModes[0] && fWrapModes[1] == that.fWrapModes[1] &&
59 fFilter == that.fFilter;
62 bool operator!=(const GrSamplerState& that) cons
[all...]
/external/skqp/include/gpu/
H A DGrSamplerState.h4 * Use of this source code is governed by a BSD-style license that can be
36 GrSamplerState& operator=(const GrSamplerState& that) { argument
37 fWrapModes[0] = that.fWrapModes[0];
38 fWrapModes[1] = that.fWrapModes[1];
39 fFilter = that.fFilter;
57 bool operator==(const GrSamplerState& that) const {
58 return fWrapModes[0] == that.fWrapModes[0] && fWrapModes[1] == that.fWrapModes[1] &&
59 fFilter == that.fFilter;
62 bool operator!=(const GrSamplerState& that) cons
[all...]
/external/apache-http/src/org/apache/http/
H A DProtocolVersion.java41 * RFC 3261 specifies a message format that is identical to HTTP except
48 * Note that {@link #equals} and {@link #hashCode} are defined as
185 ProtocolVersion that = (ProtocolVersion) obj;
187 return ((this.protocol.equals(that.protocol)) &&
188 (this.major == that.major) &&
189 (this.minor == that.minor));
198 * @param that the protocol version to consider
203 public boolean isComparable(ProtocolVersion that) { argument
204 return (that != null) && this.protocol.equals(that
224 compareToVersion(ProtocolVersion that) argument
[all...]
/external/pdfium/core/fpdfapi/page/
H A Dcpdf_contentmarkitem.cpp2 // Use of this source code is governed by a BSD-style license that can be
16 CPDF_ContentMarkItem::CPDF_ContentMarkItem(const CPDF_ContentMarkItem& that) argument
17 : m_MarkName(that.m_MarkName),
18 m_ParamType(that.m_ParamType),
19 m_pPropertiesDict(that.m_pPropertiesDict) {
20 if (that.m_pDirectDict)
21 m_pDirectDict = ToDictionary(that.m_pDirectDict->Clone());
/external/icu/icu4c/source/common/
H A Dchariter.cpp70 CharacterIterator::CharacterIterator(const CharacterIterator &that) : argument
71 ForwardCharacterIterator(that),
72 textLength(that.textLength), pos(that.pos), begin(that.begin), end(that.end)
77 CharacterIterator::operator=(const CharacterIterator &that) { argument
78 ForwardCharacterIterator::operator=(that);
79 textLength = that.textLength;
80 pos = that
[all...]
/external/skia/src/gpu/
H A DGrCoordTransform.h4 * Use of this source code is governed by a BSD-style license that can be
33 * Create a transformation that maps [0, 1] to a proxy's boundaries. The proxy origin also
53 * Create a transformation that applies the matrix to a coord set.
78 GrCoordTransform& operator= (const GrCoordTransform& that) { argument
80 fMatrix = that.fMatrix;
81 fProxy = that.fProxy;
82 fNormalize = that.fNormalize;
83 fReverseY = that.fReverseY;
96 bool hasSameEffectAs(const GrCoordTransform& that) const {
97 if (fNormalize != that
[all...]
H A DGrDeferredUpload.h4 * Use of this source code is governed by a BSD-style license that can be
20 * requires that there are no draws that have yet to be flushed that rely on the old texture
21 * contents. In that case the ASAP upload would happen prior to the draw and therefore the draw
26 * recent draw was that referenced a resource (or portion of a resource). Each draw is assigned a
30 * instead so that the upload occurs after the draw depending on the old contents and before the
32 * token of the draw that the upload must occur before.
45 bool operator==(const GrDeferredUploadToken& that) const {
46 return fSequenceNumber == that
[all...]
H A DGrPaint.cpp4 * Use of this source code is governed by a BSD-style license that can be
14 GrPaint::GrPaint(const GrPaint& that) argument
15 : fXPFactory(that.fXPFactory)
16 , fColorFragmentProcessors(that.fColorFragmentProcessors.count())
17 , fCoverageFragmentProcessors(that.fCoverageFragmentProcessors.count())
18 , fDisableOutputConversionToSRGB(that.fDisableOutputConversionToSRGB)
19 , fAllowSRGBInputs(that.fAllowSRGBInputs)
20 , fTrivial(that.fTrivial)
21 , fColor(that.fColor) {
22 for (int i = 0; i < that
[all...]
/external/skqp/src/gpu/
H A DGrCoordTransform.h4 * Use of this source code is governed by a BSD-style license that can be
33 * Create a transformation that maps [0, 1] to a proxy's boundaries. The proxy origin also
53 * Create a transformation that applies the matrix to a coord set.
78 GrCoordTransform& operator= (const GrCoordTransform& that) { argument
80 fMatrix = that.fMatrix;
81 fProxy = that.fProxy;
82 fNormalize = that.fNormalize;
83 fReverseY = that.fReverseY;
96 bool hasSameEffectAs(const GrCoordTransform& that) const {
97 if (fNormalize != that
[all...]
H A DGrDeferredUpload.h4 * Use of this source code is governed by a BSD-style license that can be
19 * requires that there are no draws that have yet to be flushed that rely on the old texture
20 * contents. In that case the ASAP upload would happen prior to the draw and therefore the draw
25 * recent draw was that referenced a resource (or portion of a resource). Each draw is assigned a
29 * instead so that the upload occurs after the draw depending on the old contents and before the
31 * token of the draw that the upload must occur before.
44 bool operator==(const GrDeferredUploadToken& that) const {
45 return fSequenceNumber == that
[all...]
H A DGrPaint.cpp4 * Use of this source code is governed by a BSD-style license that can be
14 GrPaint::GrPaint(const GrPaint& that) argument
15 : fXPFactory(that.fXPFactory)
16 , fColorFragmentProcessors(that.fColorFragmentProcessors.count())
17 , fCoverageFragmentProcessors(that.fCoverageFragmentProcessors.count())
18 , fDisableOutputConversionToSRGB(that.fDisableOutputConversionToSRGB)
19 , fAllowSRGBInputs(that.fAllowSRGBInputs)
20 , fTrivial(that.fTrivial)
21 , fColor(that.fColor) {
22 for (int i = 0; i < that
[all...]
/external/skia/src/core/
H A DSkScopeExit.h4 * Use of this source code is governed by a BSD-style license that can be
18 SkScopeExit(SkScopeExit&& that) : fFn(std::move(that.fFn)) {} argument
26 SkScopeExit& operator=(SkScopeExit&& that) { argument
27 fFn = std::move(that.fFn);

Completed in 494 milliseconds

1234567891011>>