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

1234567

/external/chromium_org/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_org/third_party/icu/source/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/chromium_org/third_party/libjingle/source/talk/sound/
H A Dsounddevicelocator.h6 * modification, are permitted provided that the following conditions are met:
39 // SoundSystemInterface must subclass this to add any id information that they
59 explicit SoundDeviceLocator(const SoundDeviceLocator &that) argument
60 : 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);
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/icu4c/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/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/chromium_org/base/mac/
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_cftyperef.h2 // Use of this source code is governed by a BSD-style license that can be
17 // of a CoreFoundation object: any object that can be represented as a
24 // relinquishes an ownership claim to that object. ScopedCFTypeRef<> does not
43 ScopedCFTypeRef(const ScopedCFTypeRef<CFT>& that) argument
44 : object_(that.object_) {
54 ScopedCFTypeRef& operator=(const ScopedCFTypeRef<CFT>& that) { argument
55 reset(that.get(), base::scoped_policy::RETAIN);
69 bool operator==(CFT that) const {
70 return object_ == that;
73 bool operator!=(CFT that) cons
85 swap(ScopedCFTypeRef& 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_);
/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/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/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;

Completed in 623 milliseconds

1234567