Searched defs:that (Results 1 - 25 of 69) sorted by relevance

123

/external/clang/test/PCH/
H A Dcxx-member-init.cpp13 S *that = this; member in struct:S
/external/clang/test/CXX/special/class.init/class.base.init/
H A Dp9-0x.cpp12 T *that = this; member in struct:S::T
/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/clang/test/Index/
H A Dcomplete-access-checks.cpp32 Z that; local
34 that.
/external/doclava/src/com/google/doclava/
H A DKeywordEntry.java38 public int compareTo(Object that) { argument
39 return this.label.compareToIgnoreCase(((KeywordEntry) that).label);
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...]
H A DMemberInfo.java57 public int compareTo(Object that) { argument
58 return this.htmlPage().compareTo(((MemberInfo) that).htmlPage());
/external/icu4c/common/
H A Dchariter.cpp66 CharacterIterator::CharacterIterator(const CharacterIterator &that) : argument
67 ForwardCharacterIterator(that),
68 textLength(that.textLength), pos(that.pos), begin(that.begin), end(that.end)
73 CharacterIterator::operator=(const CharacterIterator &that) { argument
74 ForwardCharacterIterator::operator=(that);
75 textLength = that.textLength;
76 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/v8/src/
H A Dapiutils.h3 // modification, are permitted provided that the following conditions are
34 static int GetNameCount(ExtensionConfiguration* that) { argument
35 return that->name_count_;
38 static const char** GetNames(ExtensionConfiguration* that) { argument
39 return that->names_;
/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/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/llvm/include/llvm/
H A DUser.h10 // This class defines the interface that one who 'use's a Value must implement.
74 template <int Idx, typename U> static Use &OpFrom(const U *that) { argument
76 ? OperandTraits<U>::op_end(const_cast<U*>(that))[Idx]
77 : OperandTraits<U>::op_begin(const_cast<U*>(that))[Idx];
120 // objects that this User refers to. This allows one to
123 // zero. Then everything is deleted for real. Note that no operations are
124 // valid on an object that has "dropped all references", except operator
/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/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/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/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/icu4c/i18n/
H A Dstsearch.cpp161 StringSearch::StringSearch(const StringSearch &that) : argument
162 SearchIterator(that.m_text_, that.m_breakiterator_),
164 m_pattern_(that.m_pattern_)
172 if (that.m_strsrch_ == NULL) {
182 that.m_strsrch_->collator,
183 (UBreakIterator *)that.m_breakiterator_,
208 StringSearch & StringSearch::operator=(const StringSearch &that) argument
210 if ((*this) != that) {
212 m_text_ = that
[all...]
H A Dformat.cpp30 * Unless we export _something_ in that case...
81 Format::Format(const Format &that) argument
82 : UObject(that)
84 *this = that;
91 Format::operator=(const Format& that) argument
93 if (this != &that) {
94 uprv_strcpy(validLocale, that.validLocale);
95 uprv_strcpy(actualLocale, that.actualLocale);
153 Format::operator==(const Format& that) const
155 return typeid(*this) == typeid(that);
[all...]
H A Dsearch.cpp131 // Well, gee... the Constructors that take a BreakIterator
179 UBool SearchIterator::operator==(const SearchIterator &that) const
181 if (this == &that) {
184 return (m_breakiterator_ == that.m_breakiterator_ &&
185 m_search_->isCanonicalMatch == that.m_search_->isCanonicalMatch &&
186 m_search_->isOverlap == that.m_search_->isOverlap &&
187 m_search_->elementComparisonType == that.m_search_->elementComparisonType &&
188 m_search_->matchedIndex == that.m_search_->matchedIndex &&
189 m_search_->matchedLength == that.m_search_->matchedLength &&
190 m_search_->textLength == that
398 operator =(const SearchIterator &that) argument
[all...]
/external/nist-sip/java/gov/nist/javax/sip/address/
H A DGenericURI.java119 public boolean equals(Object that) { argument
120 if (this==that) return true;
121 else if (that instanceof URI) {
122 final URI o = (URI) that;
H A DNetObject.java77 *@param that is the other object to test against.
79 public boolean equals(Object that) { argument
80 if (!this.getClass().equals(that.getClass()))
83 Class<?> hisclass = that.getClass();
107 if (f.getInt(this) != g.getInt(that))
110 if (f.getShort(this) != g.getShort(that))
113 if (f.getChar(this) != g.getChar(that))
116 if (f.getLong(this) != g.getLong(that))
119 if (f.getBoolean(this) != g.getBoolean(that))
122 if (f.getDouble(this) != g.getDouble(that))
[all...]
/external/blktrace/btt/
H A Dproc.c11 * This program is distributed in the hope that it will be useful,
103 static void insert_pid(struct p_info *that, __u32 pid) argument
123 this->pip = that;
129 static void insert_name(struct p_info *that) argument
139 cmp = strcmp(that->name, this->u.name);
150 this->u.name = strdup(that->name);
151 this->pip = that;
/external/chromium/third_party/libjingle/source/talk/base/
H A Dwin32window.cc6 * modification, are permitted provided that the following conditions are met:
105 Win32Window* that = reinterpret_cast<Win32Window*>( local
107 if (!that && (WM_CREATE == uMsg)) {
109 that = static_cast<Win32Window*>(cs->lpCreateParams);
110 that->wnd_ = hwnd;
111 ::SetWindowLongPtr(hwnd, GWL_USERDATA, reinterpret_cast<LONG_PTR>(that));
113 if (that) {
115 bool handled = that->OnMessage(uMsg, wParam, lParam, result);
124 that->wnd_ = NULL;
125 that
[all...]

Completed in 3677 milliseconds

123