Searched defs:that (Results 51 - 75 of 198) sorted by relevance

12345678

/external/chromium_org/ppapi/proxy/
H A Dfile_system_resource_unittest.cc2 // Use of this source code is governed by a BSD-style license that can be
44 MockCompletionCallback* that = local
46 that->called_ = true;
47 that->result_ = result;
157 // Test that Open fails if either host returns failure. The other tests exercise
/external/chromium_org/third_party/icu/source/i18n/
H A Dformat.cpp34 * Unless we export _something_ in that case...
85 Format::Format(const Format &that) argument
86 : UObject(that)
88 *this = that;
95 Format::operator=(const Format& that) argument
97 if (this != &that) {
98 uprv_strcpy(validLocale, that.validLocale);
99 uprv_strcpy(actualLocale, that.actualLocale);
157 Format::operator==(const Format& that) const
160 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/chromium_org/third_party/webrtc/base/
H A Dwin32window.cc5 * that can be found in the LICENSE file in the root of the source
92 Win32Window* that = reinterpret_cast<Win32Window*>( local
94 if (!that && (WM_CREATE == uMsg)) {
96 that = static_cast<Win32Window*>(cs->lpCreateParams);
97 that->wnd_ = hwnd;
98 ::SetWindowLongPtr(hwnd, GWLP_USERDATA, reinterpret_cast<LONG_PTR>(that));
100 if (that) {
102 bool handled = that->OnMessage(uMsg, wParam, lParam, result);
111 that->wnd_ = NULL;
112 that
[all...]
/external/chromium_org/tools/site_compare/commands/
H A Dtimeload.py2 # Use of this source code is governed by a BSD-style license that can be
20 import operators # Functions that, given two bitmaps as input, produce namespace
22 import scrapers # Functions that know how to capture a render from namespace
H A Dcompare2.py2 # Use of this source code is governed by a BSD-style license that can be
9 that specify which URLs to check, which browser to use, where to store results,
18 import operators # Functions that, given two bitmaps as input, produce namespace
20 import scrapers # Functions that know how to capture a render from namespace
79 ["-m", "--maskdir"], "Path that holds masks to use for comparison")
81 ["-d", "--diffdir"], "Path to hold the difference of comparisons that fail")
/external/chromium_org/v8/src/
H A Dhydrogen-removable-simulates.cc2 // Use of this source code is governed by a BSD-style license that can be
170 void Union(Effects* that, Zone* zone) { } argument
H A Dhandles.h2 // Use of this source code is governed by a BSD-style license that can be
14 // into a Handle requires checking that it does not point to NULL. This
55 // Convert to a Handle with a type that can be upcasted to.
77 // A Handle provides a reference to an object that survives relocation by
89 // TODO(yangguo): Values that contain empty handles should be declared as
116 template <class S> static Handle<T> cast(Handle<S> that) { argument
117 T::cast(*reinterpret_cast<T**>(that.location_));
118 return Handle<T>(reinterpret_cast<T**>(that.location_));
121 // TODO(yangguo): Values that contain empty handles should be declared as
169 // A stack-allocated class that govern
[all...]
H A Dinterface.h2 // Use of this source code is governed by a BSD-style license that can be
19 // A frozen type is one that is fully determined. Unification does not
22 // Undetermined types are unification variables that can be unified freely.
23 // There is a natural subsort lattice that reflects the increase of knowledge:
70 void Unify(Interface* that, Zone* zone, bool* ok);
120 bool IsUnified(Interface* that) { argument
121 return Chase() == that->Chase()
122 || (this->IsValue() == that->IsValue() &&
123 this->IsConst() == that->IsConst());
214 void DoUnify(Interface* that, boo
[all...]
/external/guava/guava/src/com/google/common/collect/
H A DCut.java60 * (only in the case of types that are unbounded below) BELOW_ALL.
68 public int compareTo(Cut<C> that) { argument
69 if (that == belowAll()) {
72 if (that == aboveAll()) {
75 int result = Range.compareOrThrow(endpoint, that.endpoint);
81 this instanceof AboveValue, that instanceof AboveValue);
92 Cut<C> that = (Cut<C>) obj;
94 int compareResult = compareTo(that);
/external/icu/icu4c/source/i18n/
H A Dformat.cpp34 * Unless we export _something_ in that case...
85 Format::Format(const Format &that) argument
86 : UObject(that)
88 *this = that;
95 Format::operator=(const Format& that) argument
97 if (this != &that) {
98 uprv_strcpy(validLocale, that.validLocale);
99 uprv_strcpy(actualLocale, that.actualLocale);
157 Format::operator==(const Format& that) const
160 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 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/guava/guava-tests/lib/
H A Dlibtruth-gwt.jar ... .junit.contrib.truth.subjects.Subject that (java.lang.Object) Object target } org/junit/contrib ...
/external/chromium_org/base/message_loop/
H A Dmessage_pump_libevent.cc2 // Use of this source code is governed by a BSD-style license that can be
39 // Not clear yet whether that situation occurs in practice,
282 // Tell both libevent and Run that they should break out of their loops.
288 // Tell libevent (in a threadsafe way) that it should break out of its loop.
297 // We know that we can't be blocked on Wait right now since this method can
361 MessagePumpLibevent* that = static_cast<MessagePumpLibevent*>(context); local
362 DCHECK(that->wakeup_pipe_out_ == socket);
368 that->processed_io_events_ = true;
370 event_base_loopbreak(that->event_base_);
/external/chromium_org/ppapi/cpp/
H A Dinstance.cc2 // Use of this source code is governed by a BSD-style license that can be
224 // Attempting to unregister an object that doesn't exist or was already
230 // Validate that we're removing the object we thing we are.
242 Instance* that = Module::Get()->InstanceForPPInstance(instance.pp_instance()); local
243 if (!that)
245 that->RemovePerInstanceObject(interface_name, object);
251 Instance* that = Module::Get()->InstanceForPPInstance(instance); local
252 if (!that)
255 that->interface_name_to_objects_.find(interface_name);
256 if (found == that
[all...]
/external/chromium_org/sync/test/android/javatests/src/org/chromium/sync/test/util/
H A DAccountHolder.java2 // Use of this source code is governed by a BSD-style license that can be
90 public boolean equals(Object that) { argument
91 return that != null && that instanceof AccountHolder && mAccount
92 .equals(((AccountHolder) that).getAccount());
/external/chromium_org/third_party/WebKit/Source/core/html/
H A DHTMLLabelElement.cpp13 * This library is distributed in the hope that it will be useful,
55 HTMLLabelElement* that = const_cast<HTMLLabelElement*>(this); local
56 return that->isContentEditable();
/external/chromium_org/third_party/icu/source/common/
H A Duchriter.cpp51 UCharCharacterIterator::UCharCharacterIterator(const UCharCharacterIterator& that) argument
52 : CharacterIterator(that),
53 text(that.text)
58 UCharCharacterIterator::operator=(const UCharCharacterIterator& that) { argument
59 CharacterIterator::operator=(that);
60 text = that.text;
68 UCharCharacterIterator::operator==(const ForwardCharacterIterator& that) const {
69 if (this == &that) {
72 if (typeid(*this) != typeid(that)) {
76 UCharCharacterIterator& realThat = (UCharCharacterIterator&)that;
[all...]
/external/chromium_org/third_party/mesa/src/src/gallium/drivers/nv50/codegen/
H A Dnv50_ir_bb.cpp349 BasicBlock::dominatedBy(BasicBlock *that) argument
351 Graph::Node *bn = &that->dom;
H A Dnv50_ir_util.cpp79 Stack::moveTo(Stack& that) argument
81 unsigned int newSize = this->size + that.size;
83 while (newSize > that.limit)
84 that.resize();
85 memcpy(&that.array[that.size], &array[0], this->size * sizeof(Item));
87 that.size = newSize;
91 Interval::Interval(const Interval& that) : head(NULL), tail(NULL) argument
93 this->insert(that);
164 bool Interval::overlaps(const Interval &that) cons
189 insert(const Interval &that) argument
195 unify(Interval &that) argument
[all...]
/external/chromium_org/third_party/skia/src/core/
H A DSkMaskGamma.h4 * Use of this source code is governed by a BSD-style license that can be
169 * value for that channel. This class is immutable.
171 * If fR, fG, or fB is NULL, all of them will be. This indicates that no mask
191 SkTMaskPreBlend(const SkTMaskPreBlend<R_LUM_BITS, G_LUM_BITS, B_LUM_BITS>& that) argument
192 : fParent(SkSafeRef(that.fParent.get())), fR(that.fR), fG(that.fG), fB(that.fB) { }
H A DSkPixelRef.cpp4 * Use of this source code is governed by a BSD-style license that can be
118 void SkPixelRef::cloneGenID(const SkPixelRef& that) { argument
119 // This is subtle. We must call that.getGenerationID() to make sure its genID isn't 0.
120 this->fGenerationID = that.getGenerationID();
122 that.fUniqueGenerationID = false;
/external/chromium_org/third_party/skia/src/gpu/
H A DGrDrawState.cpp4 * Use of this source code is governed by a BSD-style license that can be
93 GrDrawState& GrDrawState::operator=(const GrDrawState& that) { argument
95 SkASSERT(!that.fRenderTarget.ownsPendingIO());
97 this->setRenderTarget(that.getRenderTarget());
98 fColor = that.fColor;
99 fViewMatrix = that.fViewMatrix;
100 fSrcBlend = that.fSrcBlend;
101 fDstBlend = that.fDstBlend;
102 fBlendConstant = that.fBlendConstant;
103 fFlagBits = that
[all...]
/external/chromium_org/v8/src/compiler/
H A Doperator.h2 // Use of this source code is governed by a BSD-style license that can be
33 // transformations for nodes that have this operator.
105 // An implementation of Operator that has no static parameters. Such operators
114 virtual bool Equals(const Operator* that) const FINAL {
115 return opcode() == that->opcode();
211 // A templatized implementation of Operator that has one static parameter of
228 const Operator1<T>* that = static_cast<const Operator1<T>*>(other); variable
229 return StaticParameterTraits<T>::Equals(this->parameter_, that->parameter_);

Completed in 747 milliseconds

12345678