Searched refs:that (Results 26 - 50 of 1681) sorted by relevance

1234567891011>>

/external/chromium_org/third_party/skia/include/gpu/
H A DGrProgramElementRef.h4 * Use of this source code is governed by a BSD-style license that can be
17 * in the pending execution state it is illegal to change the object that is owned by the
18 * GrProgramElementRef. Its destructor will either unref the GrProgramElement or signal that
45 // refs on GrProgramElements. At that point we should be able to delete this function.
46 // This function makes assumptions that are valid in the GrProcessorStage use case and should
48 void initAndRef(const GrProgramElementRef& that) { argument
50 SkASSERT(that.fObj);
51 if (that.fOwnPendingExec) {
52 SkASSERT(that.fObj->fPendingExecutions > 0);
53 that
[all...]
/external/chromium_org/third_party/yasm/source/patched-yasm/modules/arch/x86/tests/
H A Dea-nonzero.asm2 ; Also tests that this isn't seen as a circular reference.
/external/chromium_org/url/
H A Dorigin.h2 // Use of this source code is governed by a BSD-style license that can be
23 bool IsSameAs(const Origin& that) const {
24 return string_ == that.string_;
/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/mips32/
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/mips32r6/
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 Dvalid-xfail.s1 # Instructions that should be valid but currently fail for known reasons (e.g.
/external/llvm/test/MC/Mips/mips5/
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 Dvalid-xfail.s1 # Instructions that should be valid but currently fail for known reasons (e.g.
/external/llvm/test/MC/Mips/mips64r2/
H A Dvalid-xfail.s1 # Instructions that should be valid but currently fail for known reasons (e.g.
/external/llvm/test/MC/Mips/mips64r6/
H A Dvalid-xfail.s1 # Instructions that should be valid but currently fail for known reasons (e.g.
/external/chromium_org/net/base/
H A Dauth.cc2 // Use of this source code is governed by a BSD-style license that can be
13 bool AuthChallengeInfo::Equals(const AuthChallengeInfo& that) const {
14 return (this->is_proxy == that.is_proxy &&
15 this->challenger.Equals(that.challenger) &&
16 this->scheme == that.scheme &&
17 this->realm == that.realm);
/external/chromium_org/third_party/icu/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/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/chromium_org/base/mac/
H A Dscoped_ioplugininterface.h2 // Use of this source code is governed by a BSD-style license that can be
39 bool operator==(InterfaceT that) const {
40 return object_ == that;
43 bool operator!=(InterfaceT that) const {
44 return object_ != that;
55 void swap(ScopedIOPluginInterface& that) { argument
56 InterfaceT temp = that.object_;
57 that.object_ = object_;
H A Dscoped_cffiledescriptorref.h2 // Use of this source code is governed by a BSD-style license that can be
20 // that a file descriptor is invalidated while still in use.
44 bool operator==(CFFileDescriptorRef that) const {
45 return fdref_ == that;
48 bool operator!=(CFFileDescriptorRef that) const {
49 return fdref_ != that;
/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/chromium_org/third_party/icu/source/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_org/third_party/skia/include/gpu/gl/
H A DGrGLExtensions.h4 * Use of this source code is governed by a BSD-style license that can be
30 void swap(GrGLExtensions* that) { argument
31 fStrings.swap(&that->fStrings);
32 SkTSwap(fInitialized, that->fInitialized);
37 * of init expects that getString is always non-NULL while getIntegerv and getStringi are non-
/external/chromium_org/third_party/webrtc/sound/
H A Dsounddevicelocator.h5 * that can be found in the LICENSE file in the root of the source
22 // SoundSystemInterface must subclass this to add any id information that they
42 explicit SoundDeviceLocator(const SoundDeviceLocator &that) argument
43 : name_(that.name_), device_name_(that.device_name_) {}
/external/icu/icu4c/source/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/skia/include/gpu/gl/
H A DGrGLExtensions.h4 * Use of this source code is governed by a BSD-style license that can be
30 void swap(GrGLExtensions* that) { argument
31 fStrings.swap(&that->fStrings);
32 SkTSwap(fInitialized, that->fInitialized);
37 * of init expects that getString is always non-NULL while getIntegerv and getStringi are non-

Completed in 2197 milliseconds

1234567891011>>