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

1234567891011>>

/external/chromium/net/base/
H A Dauth.cc2 // Use of this source code is governed by a BSD-style license that can be
12 bool AuthChallengeInfo::operator==(const AuthChallengeInfo& that) const {
13 return (this->is_proxy == that.is_proxy &&
14 this->host_and_port == that.host_and_port &&
15 this->scheme == that.scheme &&
16 this->realm == that.realm);
/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/chromium/chrome/browser/sync/syncable/
H A Dsyncable_id.h2 // Use of this source code is governed by a BSD-style license that can be
37 // 1. c<client only opaque id> for client items that have not been committed.
39 // 3. s<server provided opaque id> for items that the server knows about.
51 inline Id(const Id& that) { argument
52 Copy(that);
54 inline Id& operator = (const Id& that) { argument
55 Copy(that);
58 inline void Copy(const Id& that) { argument
59 this->s_ = that.s_;
76 inline int compare(const Id& that) cons
[all...]
/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/chromium/base/mac/
H A Dscoped_cftyperef.h2 // Use of this source code is governed by a BSD-style license that can be
18 // of a CoreFoundation object: any object that can be represented as a
25 // an ownership claim to that object. ScopedCFTypeRef<> does not call
47 bool operator==(CFT that) const {
48 return object_ == that;
51 bool operator!=(CFT that) const {
52 return object_ != that;
63 void swap(ScopedCFTypeRef& that) { argument
64 CFT temp = that.object_;
65 that
[all...]
/external/chromium/chrome/browser/cocoa/
H A Dscoped_authorizationref.h2 // Use of this source code is governed by a BSD-style license that can be
38 bool operator==(AuthorizationRef that) const {
39 return authorization_ == that;
42 bool operator!=(AuthorizationRef that) const {
43 return authorization_ != that;
58 void swap(scoped_AuthorizationRef& that) { argument
59 AuthorizationRef temp = that.authorization_;
60 that.authorization_ = authorization_;
/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
180 ProtocolVersion that = (ProtocolVersion) obj;
182 return ((this.protocol.equals(that.protocol)) &&
183 (this.major == that.major) &&
184 (this.minor == that.minor));
193 * @param that the protocol version to consider
198 public boolean isComparable(ProtocolVersion that) { argument
199 return (that != null) && this.protocol.equals(that
219 compareToVersion(ProtocolVersion that) argument
[all...]
/external/icu4c/common/
H A Dchariter.cpp68 CharacterIterator::CharacterIterator(const CharacterIterator &that) : argument
69 ForwardCharacterIterator(that),
70 textLength(that.textLength), pos(that.pos), begin(that.begin), end(that.end)
75 CharacterIterator::operator=(const CharacterIterator &that) { argument
76 ForwardCharacterIterator::operator=(that);
77 textLength = that.textLength;
78 pos = that
[all...]
H A Dschriter.cpp60 StringCharacterIterator::StringCharacterIterator(const StringCharacterIterator& that) argument
61 : UCharCharacterIterator(that),
62 text(that.text)
72 StringCharacterIterator::operator=(const StringCharacterIterator& that) { argument
73 UCharCharacterIterator::operator=(that);
74 text = that.text;
81 StringCharacterIterator::operator==(const ForwardCharacterIterator& that) const {
82 if (this == &that) {
87 // because that checks for array pointer equality
90 if (typeid(*this) != typeid(that)) {
[all...]
/external/webkit/Source/WebCore/
H A DDerivedSources.cpp5 * modification, are permitted provided that the following conditions
481 #error Do not include any file in DerivedSources.cpp that includes StaticConstructors.h
/external/chromium/base/memory/
H A Dscoped_nsobject.h2 // Use of this source code is governed by a BSD-style license that can be
21 // an ownership claim to that object. scoped_nsobject<> does not call
43 // We intentionally do not check that object != object_ as the caller must
46 // in a call to reset(). In either case, it relinquishes that claim and
52 bool operator==(NST* that) const { return object_ == that; }
53 bool operator!=(NST* that) const { return object_ != that; }
63 void swap(scoped_nsobject& that) { argument
64 NST* temp = that
136 swap(scoped_nsobject& that) argument
[all...]
/external/mockito/src/org/mockito/internal/listeners/
H A DNotifiedMethodInvocationReport.java69 NotifiedMethodInvocationReport that = (NotifiedMethodInvocationReport) o;
71 if (invocation != null ? !invocation.equals(that.invocation) : that.invocation != null) return false;
72 if (returnedValue != null ? !returnedValue.equals(that.returnedValue) : that.returnedValue != null)
74 if (throwable != null ? !throwable.equals(that.throwable) : that.throwable != null) return false;
/external/icu4c/i18n/
H A Ddtrule.cpp83 DateTimeRule::operator==(const DateTimeRule& that) const {
84 return ((this == &that) ||
85 (typeid(*this) == typeid(that) &&
86 fMonth == that.fMonth &&
87 fDayOfMonth == that.fDayOfMonth &&
88 fDayOfWeek == that.fDayOfWeek &&
89 fWeekInMonth == that.fWeekInMonth &&
90 fMillisInDay == that.fMillisInDay &&
91 fDateRuleType == that.fDateRuleType &&
92 fTimeRuleType == that
[all...]
H A Dtztrans.cpp65 TimeZoneTransition::operator==(const TimeZoneTransition& that) const {
66 if (this == &that) {
69 if (typeid(*this) != typeid(that)) {
72 if (fTime != that.fTime) {
75 if ((fFrom == NULL && that.fFrom == NULL)
76 || (fFrom != NULL && that.fFrom != NULL && *fFrom == *(that.fFrom))) {
77 if ((fTo == NULL && that.fTo == NULL)
78 || (fTo != NULL && that.fTo != NULL && *fTo == *(that
[all...]
/external/chromium-trace/trace-viewer/src/model/
H A Dkernel.js2 // Use of this source code is governed by a BSD-style license that can be
33 compareTo: function(that) {
34 return Kernel.compare(this, that);
H A Dprocess.js2 // Use of this source code is governed by a BSD-style license that can be
24 * Comparison between processes that orders by pid.
33 compareTo: function(that) {
34 return Process.compare(this, that);
/external/clang/test/CodeGenCXX/
H A Dconstructor-direct-call.cpp41 Test3(const Test3& that) { a = that.a; b = that.b; c = that.c; } argument
/external/chromium/chrome/common/extensions/docs/examples/extensions/irc/servlet/
H A Dirc.js8 * to the transport so that the IRCConnection can respond to the connection
21 var that = this;
55 sendFunc(that.server + ":" + that.port);
82 that.onText(parsed.parameters[0],
96 that.connected = true;
97 that.onConnect(parsed.body);
103 if (!that.connected) {
104 that.connected = true;
105 that
[all...]
/external/clang/test/Index/
H A Dcomplete-access-checks.cpp32 Z that; local
34 that.
/external/llvm/include/llvm/Support/
H A DTimeValue.h106 /// This is a static constructor that returns a TimeValue that represents
115 /// Add \p that to \p this.
118 TimeValue& operator += (const TimeValue& that ) {
119 this->seconds_ += that.seconds_ ;
120 this->nanos_ += that.nanos_ ;
125 /// Subtract \p that from \p this.
128 TimeValue& operator -= (const TimeValue &that ) {
129 this->seconds_ -= that.seconds_ ;
130 this->nanos_ -= that
[all...]
/external/icu4c/layout/
H A DGlyphIterator.cpp43 GlyphIterator::GlyphIterator(GlyphIterator &that) argument
44 : glyphStorage(that.glyphStorage)
46 direction = that.direction;
47 position = that.position;
48 nextLimit = that.nextLimit;
49 prevLimit = that.prevLimit;
51 glyphPositionAdjustments = that.glyphPositionAdjustments;
52 srcIndex = that.srcIndex;
53 destIndex = that.destIndex;
54 lookupFlags = that
61 GlyphIterator(GlyphIterator &that, FeatureMask newFeatureMask) argument
79 GlyphIterator(GlyphIterator &that, le_uint16 newLookupFlags) argument
[all...]
/external/apache-http/src/org/apache/http/auth/
H A DAuthScope.java197 public int match(final AuthScope that) { argument
199 if (LangUtils.equals(this.scheme, that.scheme)) {
202 if (this.scheme != ANY_SCHEME && that.scheme != ANY_SCHEME) {
206 if (LangUtils.equals(this.realm, that.realm)) {
209 if (this.realm != ANY_REALM && that.realm != ANY_REALM) {
213 if (this.port == that.port) {
216 if (this.port != ANY_PORT && that.port != ANY_PORT) {
220 if (LangUtils.equals(this.host, that.host)) {
223 if (this.host != ANY_HOST && that.host != ANY_HOST) {
244 AuthScope that
[all...]
/external/webkit/Source/WebCore/platform/gtk/
H A DMainFrameScrollbarGtk.cpp12 * This library is distributed in the hope that it will be useful,
43 // that. They exist only to shuttle data from the GtkWidget container into
85 // reset the values so that the surrounding scrollbar gets updated, or
112 void MainFrameScrollbarGtk::gtkValueChanged(GtkAdjustment*, MainFrameScrollbarGtk* that) argument
117 if (!that->parent()) {
118 that->detachAdjustment();
122 int newValue = static_cast<int>(gtk_adjustment_get_value(that->m_adjustment.get()));
123 if (newValue != that->value())
124 that->scrollableArea()->scrollToOffsetWithoutAnimation(that
[all...]
/external/guava/guava-tests/test/com/google/common/base/
H A DSplitterTest.java54 ASSERT.that(letters).hasContentsInOrder("a", "b", "c");
60 ASSERT.that(letters).hasContentsInOrder("a,b,c");
66 ASSERT.that(letters).hasContentsInOrder("a", "", "b", "c");
72 ASSERT.that(letters).hasContentsInOrder("a", "", " b", "c");
78 ASSERT.that(letters).hasContentsInOrder("a", "b", "c", "");
84 ASSERT.that(letters).hasContentsInOrder("", "a", "b", "c");
90 ASSERT.that(testCharacteringMotto).hasContentsInOrder(
98 ASSERT.that(testCharacteringMotto).hasContentsInOrder(
106 ASSERT.that(letters).hasContentsInOrder("a", "b", "c");
113 ASSERT.that(letter
[all...]
/external/v8/src/
H A Dinterface.cc3 // modification, are permitted provided that the following conditions are
92 // This didn't have name but was frozen already, that's an error.
113 void Interface::Unify(Interface* that, bool* ok) { argument
114 if (this->forward_) return this->Chase()->Unify(that, ok);
115 if (that->forward_) return this->Unify(that->Chase(), ok);
117 ASSERT(that->forward_ == NULL);
120 if (this == that) return;
121 if (this->IsValue()) return that->MakeValue(ok);
122 if (that
154 DoUnify(Interface* that, bool* ok) argument
[all...]

Completed in 877 milliseconds

1234567891011>>