/external/guava/guava-tests/test/com/google/common/base/ |
D | SplitterTest.java | 54 ASSERT.that(letters).hasContentsInOrder("a", "b", "c"); in testCharacterSimpleSplit() 60 ASSERT.that(letters).hasContentsInOrder("a,b,c"); in testCharacterSimpleSplitWithNoDelimiter() 66 ASSERT.that(letters).hasContentsInOrder("a", "", "b", "c"); in testCharacterSplitWithDoubleDelimiter() 72 ASSERT.that(letters).hasContentsInOrder("a", "", " b", "c"); in testCharacterSplitWithDoubleDelimiterAndSpace() 78 ASSERT.that(letters).hasContentsInOrder("a", "b", "c", ""); in testCharacterSplitWithTrailingDelimiter() 84 ASSERT.that(letters).hasContentsInOrder("", "a", "b", "c"); in testCharacterSplitWithLeadingDelimiter() 90 ASSERT.that(testCharacteringMotto).hasContentsInOrder( in testCharacterSplitWithMulitpleLetters() 98 ASSERT.that(testCharacteringMotto).hasContentsInOrder( in testCharacterSplitWithMatcherDelimiter() 106 ASSERT.that(letters).hasContentsInOrder("a", "b", "c"); in testCharacterSplitWithDoubleDelimiterOmitEmptyStrings() 113 ASSERT.that(letters).hasContentsInOrder("a", "", "c"); in testCharacterSplitEmptyToken() [all …]
|
/external/chromium/chrome/browser/sync/syncable/ |
D | syncable_id.h | 51 inline Id(const Id& that) { in Id() argument 52 Copy(that); in Id() 54 inline Id& operator = (const Id& that) { 55 Copy(that); 58 inline void Copy(const Id& that) { in Copy() argument 59 this->s_ = that.s_; in Copy() 76 inline int compare(const Id& that) const { in compare() argument 77 return s_.compare(that.s_); in compare() 79 inline bool operator == (const Id& that) const { 80 return s_ == that.s_; [all …]
|
/external/chromium_org/base/mac/ |
D | scoped_nsobject.h | 39 scoped_nsprotocol(const scoped_nsprotocol<NST>& that) in scoped_nsprotocol() argument 40 : object_([that.object_ retain]) { in scoped_nsprotocol() 47 scoped_nsprotocol& operator=(const scoped_nsprotocol<NST>& that) { 48 reset([that.get() retain]); 61 bool operator==(NST that) const { return object_ == that; } 62 bool operator!=(NST that) const { return object_ != that; } 72 void swap(scoped_nsprotocol& that) { in swap() argument 73 NST temp = that.object_; in swap() 74 that.object_ = object_; in swap() 118 scoped_nsobject(const scoped_nsobject<NST>& that) in scoped_nsobject() argument [all …]
|
D | scoped_cftyperef.h | 43 ScopedCFTypeRef(const ScopedCFTypeRef<CFT>& that) in ScopedCFTypeRef() argument 44 : object_(that.object_) { in ScopedCFTypeRef() 54 ScopedCFTypeRef& operator=(const ScopedCFTypeRef<CFT>& that) { 55 reset(that.get(), base::scoped_policy::RETAIN); 69 bool operator==(CFT that) const { 70 return object_ == that; 73 bool operator!=(CFT that) const { 74 return object_ != that; 85 void swap(ScopedCFTypeRef& that) { in swap() argument 86 CFT temp = that.object_; in swap() [all …]
|
D | scoped_block.h | 31 ScopedBlock(const ScopedBlock<B>& that) in ScopedBlock() argument 32 : block_(that.block_) { in ScopedBlock() 42 ScopedBlock& operator=(const ScopedBlock<B>& that) { 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) { in swap() argument 74 B temp = that.block_; in swap() [all …]
|
/external/chromium_org/sync/syncable/ |
D | syncable_id.h | 49 inline Id(const Id& that) { in Id() argument 50 Copy(that); in Id() 52 inline Id& operator = (const Id& that) { 53 Copy(that); 56 inline void Copy(const Id& that) { in Copy() argument 57 this->s_ = that.s_; in Copy() 74 inline int compare(const Id& that) const { in compare() argument 75 return s_.compare(that.s_); in compare() 77 inline bool operator == (const Id& that) const { 78 return s_ == that.s_; [all …]
|
/external/icu4c/layout/ |
D | GlyphIterator.cpp | 43 GlyphIterator::GlyphIterator(GlyphIterator &that) in GlyphIterator() argument 44 : glyphStorage(that.glyphStorage) in GlyphIterator() 46 direction = that.direction; in GlyphIterator() 47 position = that.position; in GlyphIterator() 48 nextLimit = that.nextLimit; in GlyphIterator() 49 prevLimit = that.prevLimit; in GlyphIterator() 51 glyphPositionAdjustments = that.glyphPositionAdjustments; in GlyphIterator() 52 srcIndex = that.srcIndex; in GlyphIterator() 53 destIndex = that.destIndex; in GlyphIterator() 54 lookupFlags = that.lookupFlags; in GlyphIterator() [all …]
|
/external/doclava/src/com/google/doclava/ |
D | SourcePositionInfo.java | 28 public SourcePositionInfo(SourcePositionInfo that) { in SourcePositionInfo() argument 29 this.file = that.file; in SourcePositionInfo() 30 this.line = that.line; in SourcePositionInfo() 31 this.column = that.column; in SourcePositionInfo() 40 public static SourcePositionInfo add(SourcePositionInfo that, String str, int index) { in add() argument 41 if (that == null) { in add() 44 int line = that.line; in add() 53 return new SourcePositionInfo(that.file, line, 0); in add() 56 public static SourcePositionInfo findBeginning(SourcePositionInfo that, String str) { in findBeginning() argument 57 if (that == null) { in findBeginning() [all …]
|
/external/llvm/include/llvm/Support/ |
D | TimeValue.h | 118 TimeValue& operator += (const TimeValue& that ) { 119 this->seconds_ += that.seconds_ ; 120 this->nanos_ += that.nanos_ ; 128 TimeValue& operator -= (const TimeValue &that ) { 129 this->seconds_ -= that.seconds_ ; 130 this->nanos_ -= that.nanos_ ; 138 int operator < (const TimeValue &that) const { return that > *this; } 143 int operator > (const TimeValue &that) const { 144 if ( this->seconds_ > that.seconds_ ) { 146 } else if ( this->seconds_ == that.seconds_ ) { [all …]
|
/external/chromium_org/remoting/webapp/ |
D | menu_button.js | 36 var that = this; 47 if (that.onShow_) { 48 that.onShow_(); 50 that.button_.classList.add(remoting.MenuButton.BUTTON_ACTIVE_CLASS_); 51 that.button_.removeEventListener('click', that.onClick_, false); 58 htmlNode.addEventListener('click', that.closeHandler_, true); 68 that.button_.classList.remove(remoting.MenuButton.BUTTON_ACTIVE_CLASS_); 69 document.body.removeEventListener('click', that.closeHandler_, true); 72 that.button_.addEventListener('click', that.onClick_, false);
|
/external/chromium_org/v8/src/ |
D | interface.cc | 119 void Interface::Unify(Interface* that, Zone* zone, bool* ok) { in Unify() argument 120 if (this->forward_) return this->Chase()->Unify(that, zone, ok); in Unify() 121 if (that->forward_) return this->Unify(that->Chase(), zone, ok); in Unify() 123 ASSERT(that->forward_ == NULL); in Unify() 126 if (this == that) return; in Unify() 128 that->MakeValue(ok); in Unify() 129 if (*ok && this->IsConst()) that->MakeConst(ok); in Unify() 132 if (that->IsValue()) { in Unify() 134 if (*ok && that->IsConst()) this->MakeConst(ok); in Unify() 144 that->Print(Nesting::current()); in Unify() [all …]
|
D | unique.h | 123 template <class S> static Unique<T> cast(Unique<S> that) { in cast() argument 124 return Unique<T>(that.raw_address_, Handle<T>::cast(that.handle_)); in cast() 188 bool Equals(UniqueSet<T>* that) const { in Equals() argument 189 if (that->size_ != this->size_) return false; in Equals() 191 if (this->array_[i] != that->array_[i]) return false; in Equals() 207 bool IsSubset(UniqueSet<T>* that) const { in IsSubset() argument 208 if (that->size_ < this->size_) return false; in IsSubset() 213 if (sought == that->array_[j++]) break; in IsSubset() 215 if ((this->size_ - i) > (that->size_ - j)) return false; in IsSubset() 223 UniqueSet<T>* Intersect(UniqueSet<T>* that, Zone* zone) const { in Intersect() argument [all …]
|
/external/v8/src/ |
D | interface.cc | 113 void Interface::Unify(Interface* that, bool* ok) { in Unify() argument 114 if (this->forward_) return this->Chase()->Unify(that, ok); in Unify() 115 if (that->forward_) return this->Unify(that->Chase(), ok); in Unify() 117 ASSERT(that->forward_ == NULL); in Unify() 120 if (this == that) return; in Unify() 121 if (this->IsValue()) return that->MakeValue(ok); in Unify() 122 if (that->IsValue()) return this->MakeValue(ok); in Unify() 130 that->Print(Nesting::current()); in Unify() 135 if (this->exports_ != NULL && (that->exports_ == NULL || in Unify() 136 this->exports_->occupancy() >= that->exports_->occupancy())) { in Unify() [all …]
|
/external/apache-http/src/org/apache/http/ |
D | ProtocolVersion.java | 180 ProtocolVersion that = (ProtocolVersion) obj; in equals() local 182 return ((this.protocol.equals(that.protocol)) && in equals() 183 (this.major == that.major) && in equals() 184 (this.minor == that.minor)); in equals() 198 public boolean isComparable(ProtocolVersion that) { in isComparable() argument 199 return (that != null) && this.protocol.equals(that.protocol); in isComparable() 219 public int compareToVersion(ProtocolVersion that) { in compareToVersion() argument 220 if (that == null) { in compareToVersion() 224 if (!this.protocol.equals(that.protocol)) { in compareToVersion() 227 this + " " + that); in compareToVersion() [all …]
|
/external/guava/guava-tests/test/com/google/common/collect/ |
D | Collections2Test.java | 204 ASSERT.that(filtered).hasContentsInOrder("a", "b"); 216 ASSERT.that(filtered).hasContentsInOrder("a", "b"); 227 ASSERT.that(unfiltered).hasContentsInOrder("a", "yyy", "b"); 228 ASSERT.that(filtered).hasContentsInOrder("a", "b"); 231 ASSERT.that(unfiltered).hasContentsInOrder("yyy", "b"); 232 ASSERT.that(filtered).hasContentsInOrder("b"); 235 ASSERT.that(unfiltered).isEmpty(); 236 ASSERT.that(filtered).isEmpty(); 239 ASSERT.that(unfiltered).hasContentsInOrder("yyy"); 240 ASSERT.that(filtered).isEmpty(); [all …]
|
/external/chromium/base/memory/ |
D | scoped_nsobject.h | 52 bool operator==(NST* that) const { return object_ == that; } 53 bool operator!=(NST* that) const { return object_ != that; } 63 void swap(scoped_nsobject& that) { in swap() argument 64 NST* temp = that.object_; in swap() 65 that.object_ = object_; in swap() 125 bool operator==(id that) const { return object_ == that; } 126 bool operator!=(id that) const { return object_ != that; } 136 void swap(scoped_nsobject& that) { in swap() argument 137 id temp = that.object_; in swap() 138 that.object_ = object_; in swap()
|
/external/chromium_org/gpu/command_buffer/docs/ |
D | gles2_cmd_format_docs.txt | 10 //! the provided OpenGL ES 2.0 implementation that issues these commands for 17 //! Commands that send a variable amount of data have 1 to 3 ways to send that 21 //! an id of the shared memory and an offset into that shared memory of where 32 //! data you can then issue a command that uses the bucket and takes a bucket 52 //! failure case. For example, any command that returns a SizedResult 58 //! The docs are a little terse. For any command that corresponds to an OpenGL 79 //! Used for some glGetXXX commands that return a result through a pointer. We 107 //! The SetToken command puts a token in the command stream that you can 108 //! use to check if that token has been passed in the command stream. 163 //! command that needs a string needs a way to send that string to the API over [all …]
|
/external/chromium_org/third_party/icu/source/common/ |
D | chariter.cpp | 66 CharacterIterator::CharacterIterator(const CharacterIterator &that) : in CharacterIterator() argument 67 ForwardCharacterIterator(that), in CharacterIterator() 68 textLength(that.textLength), pos(that.pos), begin(that.begin), end(that.end) in CharacterIterator() 73 CharacterIterator::operator=(const CharacterIterator &that) { in operator =() argument 74 ForwardCharacterIterator::operator=(that); in operator =() 75 textLength = that.textLength; in operator =() 76 pos = that.pos; in operator =() 77 begin = that.begin; in operator =() 78 end = that.end; in operator =()
|
/external/mp4parser/isoparser/src/main/java/com/googlecode/mp4parser/boxes/mp4/objectdescriptors/ |
D | AudioSpecificConfig.java | 994 AudioSpecificConfig that = (AudioSpecificConfig) o; in equals() local 996 if (aacScalefactorDataResilienceFlag != that.aacScalefactorDataResilienceFlag) { in equals() 999 if (aacSectionDataResilienceFlag != that.aacSectionDataResilienceFlag) { in equals() 1002 if (aacSpectralDataResilienceFlag != that.aacSpectralDataResilienceFlag) { in equals() 1005 if (audioObjectType != that.audioObjectType) { in equals() 1008 if (channelConfiguration != that.channelConfiguration) { in equals() 1011 if (coreCoderDelay != that.coreCoderDelay) { in equals() 1014 if (dependsOnCoreCoder != that.dependsOnCoreCoder) { in equals() 1017 if (directMapping != that.directMapping) { in equals() 1020 if (epConfig != that.epConfig) { in equals() [all …]
|
/external/icu4c/common/ |
D | chariter.cpp | 68 CharacterIterator::CharacterIterator(const CharacterIterator &that) : in CharacterIterator() argument 69 ForwardCharacterIterator(that), in CharacterIterator() 70 textLength(that.textLength), pos(that.pos), begin(that.begin), end(that.end) in CharacterIterator() 75 CharacterIterator::operator=(const CharacterIterator &that) { in operator =() argument 76 ForwardCharacterIterator::operator=(that); in operator =() 77 textLength = that.textLength; in operator =() 78 pos = that.pos; in operator =() 79 begin = that.begin; in operator =() 80 end = that.end; in operator =()
|
/external/nist-sip/java/gov/nist/javax/sip/address/ |
D | NetObject.java | 79 public boolean equals(Object that) { in equals() argument 80 if (!this.getClass().equals(that.getClass())) in equals() 83 Class<?> hisclass = that.getClass(); in equals() 107 if (f.getInt(this) != g.getInt(that)) in equals() 110 if (f.getShort(this) != g.getShort(that)) in equals() 113 if (f.getChar(this) != g.getChar(that)) in equals() 116 if (f.getLong(this) != g.getLong(that)) in equals() 119 if (f.getBoolean(this) != g.getBoolean(that)) in equals() 122 if (f.getDouble(this) != g.getDouble(that)) in equals() 125 if (f.getFloat(this) != g.getFloat(that)) in equals() [all …]
|
/external/icu4c/i18n/ |
D | tztrans.cpp | 65 TimeZoneTransition::operator==(const TimeZoneTransition& that) const { in operator ==() 66 if (this == &that) { in operator ==() 69 if (typeid(*this) != typeid(that)) { in operator ==() 72 if (fTime != that.fTime) { in operator ==() 75 if ((fFrom == NULL && that.fFrom == NULL) in operator ==() 76 || (fFrom != NULL && that.fFrom != NULL && *fFrom == *(that.fFrom))) { in operator ==() 77 if ((fTo == NULL && that.fTo == NULL) in operator ==() 78 || (fTo != NULL && that.fTo != NULL && *fTo == *(that.fTo))) { in operator ==() 86 TimeZoneTransition::operator!=(const TimeZoneTransition& that) const { in operator !=() 87 return !operator==(that); in operator !=()
|
/external/chromium_org/third_party/icu/source/i18n/ |
D | tztrans.cpp | 65 TimeZoneTransition::operator==(const TimeZoneTransition& that) const { in operator ==() 66 if (this == &that) { in operator ==() 69 if (typeid(*this) != typeid(that)) { in operator ==() 72 if (fTime != that.fTime) { in operator ==() 75 if ((fFrom == NULL && that.fFrom == NULL) in operator ==() 76 || (fFrom != NULL && that.fFrom != NULL && *fFrom == *(that.fFrom))) { in operator ==() 77 if ((fTo == NULL && that.fTo == NULL) in operator ==() 78 || (fTo != NULL && that.fTo != NULL && *fTo == *(that.fTo))) { in operator ==() 86 TimeZoneTransition::operator!=(const TimeZoneTransition& that) const { in operator !=() 87 return !operator==(that); in operator !=()
|
/external/chromium_org/tools/clang/plugins/tests/ |
D | base_refcounted.txt | 2 …efcounted.h:47:3: warning: [chromium-style] Classes that are ref-counted should have destructors t… 8 …efcounted.h:59:3: warning: [chromium-style] Classes that are ref-counted should have destructors t… 14 ./base_refcounted.h:73:3: warning: [chromium-style] Classes that are ref-counted and have non-priva… 17 …fcounted.h:110:3: warning: [chromium-style] Classes that are ref-counted should have destructors t… 26 …ted.h:115:7: warning: [chromium-style] Classes that are ref-counted should have explicit destructo… 35 …fcounted.h:145:1: warning: [chromium-style] Classes that are ref-counted should have destructors t… 47 …ted.h:164:1: warning: [chromium-style] Classes that are ref-counted should have explicit destructo… 59 ./base_refcounted.h:204:3: warning: [chromium-style] Classes that are ref-counted and have non-priv… 62 ./base_refcounted.h:204:3: warning: [chromium-style] Classes that are ref-counted and have non-priv… 63 …counted.cpp:16:3: warning: [chromium-style] Classes that are ref-counted should have destructors t… [all …]
|
/external/apache-http/src/org/apache/http/auth/ |
D | AuthScope.java | 197 public int match(final AuthScope that) { in match() argument 199 if (LangUtils.equals(this.scheme, that.scheme)) { in match() 202 if (this.scheme != ANY_SCHEME && that.scheme != ANY_SCHEME) { in match() 206 if (LangUtils.equals(this.realm, that.realm)) { in match() 209 if (this.realm != ANY_REALM && that.realm != ANY_REALM) { in match() 213 if (this.port == that.port) { in match() 216 if (this.port != ANY_PORT && that.port != ANY_PORT) { in match() 220 if (LangUtils.equals(this.host, that.host)) { in match() 223 if (this.host != ANY_HOST && that.host != ANY_HOST) { in match() 244 AuthScope that = (AuthScope) o; in equals() local [all …]
|