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

12345678

/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/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/base/mac/
H A Dscoped_cftyperef.h2 // Use of this source code is governed by a BSD-style license that can be
15 // of a CoreFoundation object: any object that can be represented as a
22 // relinquishes an ownership claim to that object. ScopedCFTypeRef<> does not
53 ScopedCFTypeRef(const ScopedCFTypeRef<CFT>& that) argument
54 : ScopedTypeRef<CFT, internal::ScopedCFTypeRefTraits>(that) {}
H A Dscoped_mach_vm.h2 // Use of this source code is governed by a BSD-style license that can be
31 // but user-specified sizes may not be. If there's a concern that a size is
73 void swap(ScopedMachVM& that) { argument
74 std::swap(address_, that.address_);
75 std::swap(size_, that.size_);
H A Dscoped_authorizationref.h2 // Use of this source code is governed by a BSD-style license that can be
40 bool operator==(AuthorizationRef that) const {
41 return authorization_ == that;
44 bool operator!=(AuthorizationRef that) const {
45 return authorization_ != that;
60 void swap(ScopedAuthorizationRef& that) { argument
61 AuthorizationRef temp = that.authorization_;
62 that.authorization_ = authorization_;
H A Dscoped_block.h2 // Use of this source code is governed by a BSD-style license that can be
31 ScopedBlock(const ScopedBlock<B>& that) argument
32 : block_(that.block_) {
42 ScopedBlock& operator=(const ScopedBlock<B>& that) { argument
43 reset(that.get(), base::scoped_policy::RETAIN);
57 bool operator==(B that) const {
58 return block_ == that;
61 bool operator!=(B that) const {
62 return block_ != that;
73 void swap(ScopedBlock& that) { argument
[all...]
H A Dscoped_ioobject.h2 // Use of this source code is governed by a BSD-style license that can be
37 bool operator==(IOT that) const {
38 return object_ == that;
41 bool operator!=(IOT that) const {
42 return object_ != that;
53 void swap(ScopedIOObject& that) { argument
54 IOT temp = that.object_;
55 that.object_ = object_;
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_launch_data.h2 // Use of this source code is governed by a BSD-style license that can be
40 bool operator==(launch_data_t that) const {
41 return object_ == that;
44 bool operator!=(launch_data_t that) const {
45 return object_ != that;
56 void swap(ScopedLaunchData& that) { argument
57 std::swap(object_, that.object_);
H A Dscoped_typeref.h2 // Use of this source code is governed by a BSD-style license that can be
16 // of a reference to any type that is maintained by Retain and Release methods.
29 // For the many types that have pass-by-pointer create functions, the function
61 ScopedTypeRef(const ScopedTypeRef<T, Traits>& that) argument
62 : object_(that.object_) {
72 ScopedTypeRef& operator=(const ScopedTypeRef<T, Traits>& that) { argument
73 reset(that.get(), base::scoped_policy::RETAIN);
77 // This is to be used only to take ownership of objects that are created
78 // by pass-by-pointer create functions. To enforce this, require that the
95 bool operator==(T that) cons
111 swap(ScopedTypeRef& that) argument
[all...]
/external/chromium_org/third_party/icu/source/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/chromium_org/third_party/skia/src/gpu/gl/
H A DGrGLContext.cpp4 * Use of this source code is governed by a BSD-style license that can be
12 GrGLContextInfo& GrGLContextInfo::operator= (const GrGLContextInfo& that) { argument
13 fInterface.reset(SkSafeRef(that.fInterface.get()));
14 fGLVersion = that.fGLVersion;
15 fGLSLGeneration = that.fGLSLGeneration;
16 fVendor = that.fVendor;
17 fRenderer = that.fRenderer;
18 fIsMesa = that.fIsMesa;
19 fIsChromium = that.fIsChromium;
20 *fGLCaps = *that
[all...]
/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/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/clang/test/PCH/
H A Dcxx-member-init.cpp13 S *that = this; member in struct:S
/external/doclava/src/com/google/doclava/
H A DKeywordEntry.java38 public int compareTo(Object that) { argument
39 return this.label.compareToIgnoreCase(((KeywordEntry) that).label);
/external/icu/icu4c/source/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...]
/external/skia/src/gpu/gl/
H A DGrGLContext.cpp4 * Use of this source code is governed by a BSD-style license that can be
12 GrGLContextInfo& GrGLContextInfo::operator= (const GrGLContextInfo& that) { argument
13 fInterface.reset(SkSafeRef(that.fInterface.get()));
14 fGLVersion = that.fGLVersion;
15 fGLSLGeneration = that.fGLSLGeneration;
16 fVendor = that.fVendor;
17 fRenderer = that.fRenderer;
18 fIsMesa = that.fIsMesa;
19 fIsChromium = that.fIsChromium;
20 *fGLCaps = *that
[all...]
/external/chromium_org/base/win/
H A Dobject_watcher.cc2 // Use of this source code is governed by a BSD-style license that can be
88 // The destructor blocks on any callbacks that are in flight, so we know that
89 // that is always a pointer to a valid ObjectWater.
90 ObjectWatcher* that = static_cast<ObjectWatcher*>(param); local
91 that->origin_loop_->PostTask(FROM_HERE, that->callback_);
92 that->callback_.Reset();
105 // Need to shutdown the watch so that we don't try to access the MessageLoop
/external/chromium_org/third_party/skia/gm/rebaseline_server/
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
/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/skia/include/ports/
H A DSkFontMgr_indirect.h4 * Use of this source code is governed by a BSD-style license that can be
79 DataEntry(DataEntry& that) argument
80 : fDataId(that.fDataId)
81 , fTtcIndex(that.fTtcIndex)
82 , fTypeface(that.fTypeface)
84 SkDEBUGCODE(that.fDataId = SkFontIdentity::kInvalidDataId;)
85 SkDEBUGCODE(that.fTtcIndex = 0xbbadbeef;)
86 that.fTypeface = NULL;
98 * typefaces with that data id. By storing the index next to the typeface,

Completed in 2686 milliseconds

12345678