Searched defs:that (Results 26 - 50 of 198) sorted by relevance

12345678

/external/chromium_org/third_party/skia/include/utils/win/
H A DSkTScopedComPtr.h5 * Use of this source code is governed by a BSD-style license that can be
63 void swap(SkTScopedComPtr<T>& that) { argument
65 this->fPtr = that.fPtr;
66 that.fPtr = temp;
/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/icu/icu4c/source/common/
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/llvm/include/llvm/IR/
H A DUser.h10 // This class defines the interface that one who uses a Value must implement.
78 template <int Idx, typename U> static Use &OpFrom(const U *that) { argument
80 ? OperandTraits<U>::op_end(const_cast<U*>(that))[Idx]
81 : OperandTraits<U>::op_begin(const_cast<U*>(that))[Idx];
154 // objects that this User refers to. This allows one to
157 // zero. Then everything is deleted for real. Note that no operations are
158 // valid on an object that has "dropped all references", except operator
/external/skia/gm/rebaseline_server/
H A Dcompare_configs_test.py6 Use of this source code is governed by a BSD-style license that can be
28 import gm_json # must import results first, so that gm_json will be in sys.path namespace
H A Dcompare_to_expectations_test.py6 Use of this source code is governed by a BSD-style license that can be
28 import gm_json # must import results first, so that gm_json will be in sys.path namespace
H A Dcompare_rendered_pictures_test.py6 Use of this source code is governed by a BSD-style license that can be
29 import gm_json # must import results first, so that gm_json will be in sys.path namespace
77 # I tried adding that)
/external/skia/include/ports/
H A DSkFontMgr_indirect.h4 * Use of this source code is governed by a BSD-style license that can be
71 DataEntry(DataEntry& that) argument
72 : fDataId(that.fDataId)
73 , fTtcIndex(that.fTtcIndex)
74 , fTypeface(that.fTypeface)
76 SkDEBUGCODE(that.fDataId = SkFontIdentity::kInvalidDataId;)
77 SkDEBUGCODE(that.fTtcIndex = 0xbbadbeef;)
78 that.fTypeface = NULL;
90 * typefaces with that data id. By storing the index next to the typeface,
/external/skia/include/utils/win/
H A DSkTScopedComPtr.h5 * Use of this source code is governed by a BSD-style license that can be
63 void swap(SkTScopedComPtr<T>& that) { argument
65 this->fPtr = that.fPtr;
66 that.fPtr = temp;
/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/apache-http/src/org/apache/http/auth/
H A DAuthScope.java202 public int match(final AuthScope that) { argument
204 if (LangUtils.equals(this.scheme, that.scheme)) {
207 if (this.scheme != ANY_SCHEME && that.scheme != ANY_SCHEME) {
211 if (LangUtils.equals(this.realm, that.realm)) {
214 if (this.realm != ANY_REALM && that.realm != ANY_REALM) {
218 if (this.port == that.port) {
221 if (this.port != ANY_PORT && that.port != ANY_PORT) {
225 if (LangUtils.equals(this.host, that.host)) {
228 if (this.host != ANY_HOST && that.host != ANY_HOST) {
249 AuthScope that
[all...]
/external/chromium_org/base/mac/
H A Dscoped_nsobject.h2 // Use of this source code is governed by a BSD-style license that can be
22 // ownership claim to that object. scoped_nsobject<> does not call -retain,
39 scoped_nsprotocol(const scoped_nsprotocol<NST>& that) argument
40 : object_([that.object_ retain]) {
47 scoped_nsprotocol& operator=(const scoped_nsprotocol<NST>& that) { argument
48 reset([that.get() retain]);
53 // We intentionally do not check that object != object_ as the caller must
55 // method, or call it with the |RETAIN| policy which will have ensured that
61 bool operator==(NST that) const { return object_ == that; }
72 swap(scoped_nsprotocol& that) argument
118 scoped_nsobject(const scoped_nsobject<NST>& that) argument
122 operator =(const scoped_nsobject<NST>& that) argument
134 scoped_nsobject(const scoped_nsobject<id>& that) argument
138 operator =(const scoped_nsobject<id>& that) argument
[all...]
/external/chromium_org/net/cert/
H A Dcert_database_mac.cc2 // Use of this source code is governed by a BSD-style license that can be
22 // Helper that observes events from the Keychain and forwards them to the
26 // Creates a new Notifier that will forward Keychain events to |cert_db|.
70 // SecKeychainCallback function that receives notifications from securityd
87 Notifier* that = reinterpret_cast<Notifier*>(context); local
96 // that they have already been handled. This may miss events that
97 // originated as a result of spawning native dialogs that allow the user
106 that->cert_db_->NotifyObserversOfCACertChanged(NULL);
/external/chromium_org/ppapi/proxy/
H A Dtalk_resource_unittest.cc2 // Use of this source code is governed by a BSD-style license that can be
36 MockCallbackBase* that = reinterpret_cast<MockCallbackBase*>(user_data); local
37 that->called_ = true;
38 that->result_ = result;
/external/chromium_org/sync/syncable/
H A Dsyncable_id.h2 // Use of this source code is governed by a BSD-style license that can be
41 // 1. c<client only opaque id> for client items that have not been committed.
43 // 3. s<server provided opaque id> for items that the server knows about.
49 inline Id(const Id& that) { argument
50 Copy(that);
52 inline Id& operator = (const Id& that) { argument
53 Copy(that);
56 inline void Copy(const Id& that) { argument
57 this->s_ = that.s_;
74 inline int compare(const Id& that) cons
[all...]
/external/chromium_org/third_party/icu/source/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...]
/external/chromium_org/third_party/skia/src/gpu/gl/
H A DGrGLContext.h4 * Use of this source code is governed by a BSD-style license that can be
34 GrGLContextInfo(const GrGLContextInfo& that) { argument
36 *this = that;
87 * Extension of GrGLContextInfo that also provides access to GrGLInterface.
99 GrGLContext(const GrGLContext& that) : INHERITED(that) {} argument
101 GrGLContext& operator= (const GrGLContext& that) { argument
102 this->INHERITED::operator=(that);
H A DGrGLExtensions.cpp4 * Use of this source code is governed by a BSD-style license that can be
34 GrGLExtensions::GrGLExtensions(const GrGLExtensions& that) : fStrings(SkNEW(SkTArray<SkString>)) { argument
35 *this = that;
38 GrGLExtensions& GrGLExtensions::operator=(const GrGLExtensions& that) { argument
39 *fStrings = *that.fStrings;
40 fInitialized = that.fInitialized;
/external/chromium_org/v8/src/
H A Dinterface.cc2 // Use of this source code is governed by a BSD-style license that can be
70 // This didn't have name but was frozen already, that's an error.
91 void Interface::Unify(Interface* that, Zone* zone, bool* ok) { argument
92 if (this->forward_) return this->Chase()->Unify(that, zone, ok);
93 if (that->forward_) return this->Unify(that->Chase(), zone, ok);
95 DCHECK(that->forward_ == NULL);
98 if (this == that) return;
100 that->MakeValue(ok);
101 if (*ok && this->IsConst()) that
140 DoUnify(Interface* that, bool* ok, Zone* zone) argument
[all...]
/external/icu/icu4c/source/i18n/
H A Dstsearch.cpp139 StringSearch::StringSearch(const StringSearch &that) : argument
140 SearchIterator(that.m_text_, that.m_breakiterator_),
141 m_pattern_(that.m_pattern_)
149 if (that.m_strsrch_ == NULL) {
159 that.m_strsrch_->collator,
160 (UBreakIterator *)that.m_breakiterator_,
183 StringSearch & StringSearch::operator=(const StringSearch &that) argument
185 if ((*this) != that) {
187 m_text_ = that
[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;
/external/skia/src/gpu/gl/
H A DGrGLContext.h4 * Use of this source code is governed by a BSD-style license that can be
34 GrGLContextInfo(const GrGLContextInfo& that) { argument
36 *this = that;
85 * Extension of GrGLContextInfo that also provides access to GrGLInterface.
97 GrGLContext(const GrGLContext& that) : INHERITED(that) {} argument
99 GrGLContext& operator= (const GrGLContext& that) { argument
100 this->INHERITED::operator=(that);
H A DGrGLExtensions.cpp4 * Use of this source code is governed by a BSD-style license that can be
34 GrGLExtensions::GrGLExtensions(const GrGLExtensions& that) : fStrings(SkNEW(SkTArray<SkString>)) { argument
35 *this = that;
38 GrGLExtensions& GrGLExtensions::operator=(const GrGLExtensions& that) { argument
39 *fStrings = *that.fStrings;
40 fInitialized = that.fInitialized;
/external/antlr/antlr-3.4/runtime/Ruby/lib/antlr3/
H A Dstreams.rb11 modification, are permitted provided that the following conditions
104 <i>bare-minimum lightweight information</i> that the recognizer needs,
147 ``abstract'' pseudo-methods that demand implementation when it is mixed in to a
148 class that wants to be a Stream. Right now this exists as an artifact of porting class in class:ANTLR3
151 interfaces aren't that useful as programmatic entities -- in fact, it's mildly
158 duck-typing and not type checking on objects. This means that the methods which
159 manipulate stream objects don't usually bother checking that the object is a
160 Stream and assume that the object implements the proper stream interface. Thus,
161 it is not strictly necessary that custom stream objects include ANTLR3::Stream,
295 yield tokens that hav
[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;

Completed in 6592 milliseconds

12345678