Searched refs:that (Results 1 - 25 of 1688) 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/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
H A Dvalid-xfail.s1 # Instructions that should be valid but currently fail for known reasons (e.g.
/external/llvm/test/MC/Mips/mips4/
H A Dinvalid-mips64r2-xfail.s1 # Instructions that are supposed to be invalid but currently aren't
H A Dvalid-xfail.s1 # Instructions that should be valid but currently fail for known reasons (e.g.
/external/llvm/test/MC/Mips/mips5/
H A Dinvalid-mips64r2-xfail.s1 # Instructions that are supposed to be invalid but currently aren't
H A Dvalid-xfail.s1 # Instructions that should be valid but currently fail for known reasons (e.g.
/external/llvm/test/MC/Mips/mips64/
H A Dinvalid-mips64r2-xfail.s1 # Instructions that are supposed to be invalid but currently aren't
H A Dvalid-xfail.s1 # Instructions that should be valid but currently fail for known reasons (e.g.
/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/libchrome/base/mac/
H A Dscoped_authorizationref.h2 // Use of this source code is governed by a BSD-style license that can be
40 bool operator==(AuthorizationRef that) const {
41 return authorization_ == that;
44 bool operator!=(AuthorizationRef that) const {
45 return authorization_ != that;
58 void swap(ScopedAuthorizationRef& that) { argument
59 AuthorizationRef temp = that.authorization_;
60 that.authorization_ = authorization_;
/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/src/gpu/
H A DGrAppliedClip.h4 * Use of this source code is governed by a BSD-style license that can be
16 * Produced by GrClip. It provides a set of modifications to the drawing state that are used to
22 GrAppliedClip(GrAppliedClip&& that) = default; member in class:GrAppliedClip
64 bool operator==(const GrAppliedClip& that) const {
65 if (fScissorState != that.fScissorState || fHasStencilClip != that.fHasStencilClip) {
69 if (!SkToBool(that.fClipCoverageFP) ||
70 !that.fClipCoverageFP->isEqual(*fClipCoverageFP)) {
73 } else if (SkToBool(that.fClipCoverageFP)) {
76 return fWindowRectsState == that
[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/fxcrt/
H A Dcfx_retain_ptr.h2 // Use of this source code is governed by a BSD-style license that can be
24 CFX_RetainPtr(const CFX_RetainPtr& that) : CFX_RetainPtr(that.Get()) {} argument
25 CFX_RetainPtr(CFX_RetainPtr&& that) { Swap(that); } argument
31 CFX_RetainPtr(const CFX_RetainPtr<U>& that) : CFX_RetainPtr(that.Get()) {} argument
45 void Swap(CFX_RetainPtr& that) { m_pObj.swap(that.m_pObj); } argument
51 CFX_RetainPtr& operator=(const CFX_RetainPtr& 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/include/gpu/
H A DGrCoordTransform.h4 * Use of this source code is governed by a BSD-style license that can be
34 * Create a transformation that maps [0, 1] to a texture's boundaries. The precision is inferred
70 * Create a transformation that applies the matrix to a coord set.
93 GrCoordTransform& operator= (const GrCoordTransform& that) { argument
95 fMatrix = that.fMatrix;
96 fTexture = that.fTexture;
97 fNormalize = that.fNormalize;
98 fReverseY = that.fReverseY;
99 fPrecision = that.fPrecision;
112 bool hasSameEffectAs(const GrCoordTransform& that) cons
[all...]
/external/v8/src/compiler/
H A Ddiamond.h2 // Use of this source code is governed by a BSD-style license that can be
35 // Place {this} after {that} in control flow order.
36 void Chain(Diamond& that) { branch->ReplaceInput(1, that.merge); } argument
38 // Place {this} after {that} in control flow order.
39 void Chain(Node* that) { branch->ReplaceInput(1, that); } argument
41 // Nest {this} into either the if_true or if_false branch of {that}.
42 void Nest(Diamond& that, bool if_true) { argument
44 branch->ReplaceInput(1, that
[all...]
/external/llvm/test/MC/Mips/mips1/
H A Dvalid-xfail.s1 # Instructions that should be valid but currently fail for known reasons (e.g.
/external/llvm/test/MC/Mips/mips32r2/
H A Dvalid-xfail.s1 # Instructions that should be valid but currently fail for known reasons (e.g.
/external/llvm/test/MC/Mips/mips32r3/
H A Dvalid-xfail.s1 # Instructions that should be valid but currently fail for known reasons (e.g.
/external/llvm/test/MC/Mips/mips32r5/
H A Dvalid-xfail.s1 # Instructions that should be valid but currently fail for known reasons (e.g.

Completed in 449 milliseconds

1234567891011>>