/external/v8/src/regexp/ |
D | regexp-ast.cc | 142 void VisitCharacterRange(CharacterRange that); 152 void* RegExpUnparser::VisitDisjunction(RegExpDisjunction* that, void* data) { in VisitDisjunction() argument 154 for (int i = 0; i < that->alternatives()->length(); i++) { in VisitDisjunction() 156 that->alternatives()->at(i)->Accept(this, data); in VisitDisjunction() 163 void* RegExpUnparser::VisitAlternative(RegExpAlternative* that, void* data) { in VisitAlternative() argument 165 for (int i = 0; i < that->nodes()->length(); i++) { in VisitAlternative() 167 that->nodes()->at(i)->Accept(this, data); in VisitAlternative() 174 void RegExpUnparser::VisitCharacterRange(CharacterRange that) { in VisitCharacterRange() argument 175 os_ << AsUC32(that.from()); in VisitCharacterRange() 176 if (!that.IsSingleton()) { in VisitCharacterRange() [all …]
|
/external/curl/tests/data/ |
D | test1112 | 24 Long chunk of data that couldn't possibly be sent in the time allotted. 25 Long chunk of data that couldn't possibly be sent in the time allotted. 26 Long chunk of data that couldn't possibly be sent in the time allotted. 27 Long chunk of data that couldn't possibly be sent in the time allotted. 28 Long chunk of data that couldn't possibly be sent in the time allotted. 29 Long chunk of data that couldn't possibly be sent in the time allotted. 30 Long chunk of data that couldn't possibly be sent in the time allotted. 31 Long chunk of data that couldn't possibly be sent in the time allotted. 32 Long chunk of data that couldn't possibly be sent in the time allotted. 33 Long chunk of data that couldn't possibly be sent in the time allotted. [all …]
|
D | test1086 | 25 Long chunk of data that couldn't possibly be sent in the time allotted. 26 Long chunk of data that couldn't possibly be sent in the time allotted. 27 Long chunk of data that couldn't possibly be sent in the time allotted. 28 Long chunk of data that couldn't possibly be sent in the time allotted. 29 Long chunk of data that couldn't possibly be sent in the time allotted. 30 Long chunk of data that couldn't possibly be sent in the time allotted. 31 Long chunk of data that couldn't possibly be sent in the time allotted. 32 Long chunk of data that couldn't possibly be sent in the time allotted. 33 Long chunk of data that couldn't possibly be sent in the time allotted. 34 Long chunk of data that couldn't possibly be sent in the time allotted. [all …]
|
/external/pdfium/core/fxcrt/ |
D | cfx_retain_ptr.h | 24 CFX_RetainPtr(const CFX_RetainPtr& that) : CFX_RetainPtr(that.Get()) {} in CFX_RetainPtr() argument 25 CFX_RetainPtr(CFX_RetainPtr&& that) { Swap(that); } in CFX_RetainPtr() argument 31 CFX_RetainPtr(const CFX_RetainPtr<U>& that) : CFX_RetainPtr(that.Get()) {} in CFX_RetainPtr() argument 45 void Swap(CFX_RetainPtr& that) { m_pObj.swap(that.m_pObj); } in Swap() argument 51 CFX_RetainPtr& operator=(const CFX_RetainPtr& that) { 52 if (*this != that) 53 Reset(that.Get()); 57 bool operator==(const CFX_RetainPtr& that) const { 58 return Get() == that.Get(); 60 bool operator!=(const CFX_RetainPtr& that) const { return !(*this == that); } [all …]
|
D | cfx_maybe_owned.h | 27 CFX_MaybeOwned(const CFX_MaybeOwned& that) = delete; 28 CFX_MaybeOwned(CFX_MaybeOwned&& that) in CFX_MaybeOwned() argument 29 : m_pOwnedObj(that.m_pOwnedObj.release()), m_pObj(that.m_pObj) { in CFX_MaybeOwned() 30 that.m_pObj = nullptr; in CFX_MaybeOwned() 49 CFX_MaybeOwned& operator=(const CFX_MaybeOwned& that) = delete; 50 CFX_MaybeOwned& operator=(CFX_MaybeOwned&& that) { 51 m_pOwnedObj = std::move(that.m_pOwnedObj); 52 m_pObj = that.m_pObj; 53 that.m_pObj = nullptr; 65 bool operator==(const CFX_MaybeOwned& that) const { [all …]
|
/external/v8/src/compiler/ |
D | load-elimination.h | 54 AbstractChecks* that = new (zone) AbstractChecks(*this); in NON_EXPORTED_BASE() local 55 that->nodes_[that->next_index_] = node; in NON_EXPORTED_BASE() 56 that->next_index_ = (that->next_index_ + 1) % arraysize(nodes_); in NON_EXPORTED_BASE() 57 return that; in NON_EXPORTED_BASE() 60 bool Equals(AbstractChecks const* that) const; in NON_EXPORTED_BASE() 61 AbstractChecks const* Merge(AbstractChecks const* that, Zone* zone) const; in NON_EXPORTED_BASE() 88 AbstractElements* that = new (zone) AbstractElements(*this); in NON_EXPORTED_BASE() local 89 that->elements_[that->next_index_] = Element(object, index, value); in NON_EXPORTED_BASE() 90 that->next_index_ = (that->next_index_ + 1) % arraysize(elements_); in NON_EXPORTED_BASE() 91 return that; in NON_EXPORTED_BASE() [all …]
|
D | load-elimination.cc | 150 bool LoadElimination::AbstractChecks::Equals(AbstractChecks const* that) const { in Equals() 151 if (this == that) return true; in Equals() 156 if (that->nodes_[j] == this_node) break; in Equals() 161 if (Node* that_node = that->nodes_[i]) { in Equals() 172 AbstractChecks const* that, Zone* zone) const { in Merge() argument 173 if (this->Equals(that)) return this; in Merge() 177 for (Node* const that_node : that->nodes_) { in Merge() 215 AbstractElements* that = new (zone) AbstractElements(zone); in Kill() local 223 that->elements_[that->next_index_++] = element; in Kill() 226 that->next_index_ %= arraysize(elements_); in Kill() [all …]
|
/external/skia/include/gpu/ |
D | GrResourceKey.h | 50 bool operator==(const GrResourceKey& that) const { 51 return this->hash() == that.hash() && 53 &that.fKey[kHash_MetaDataIdx + 1], 57 GrResourceKey& operator=(const GrResourceKey& that) { 58 SkASSERT(that.isValid()); 59 if (this != &that) { 60 size_t bytes = that.size(); 63 memcpy(fKey.get(), that.fKey.get(), bytes); 182 GrScratchKey(const GrScratchKey& that) { *this = that; } in GrScratchKey() argument 191 GrScratchKey& operator=(const GrScratchKey& that) { [all …]
|
/external/ltp/testcases/network/stress/broken_ip/ |
D | 00_Descriptions.txt | 2 Verify that the kernel is not crashed with receiving a large number of 3 IPv4 packets that have wrong value in version field 6 Verify that the kernel is not crashed with receiving a large number of 7 IPv4 packets that have wrong value in the header length field 10 Verify that the kernel is not crashed with receiving a large number of 11 IPv4 packets that have wrong value in the total length field 14 Verify that the kernel is not crashed with receiving a large number of 15 IPv4 packets that have wrong fragment information 18 Verify that the kernel is not crashed with receiving a large number of 19 IPv4 packets that have wrong value in the protocol field [all …]
|
/external/llvm/include/llvm/Support/ |
D | TimeValue.h | 127 TimeValue& operator += (const TimeValue& that ) { 128 this->seconds_ += that.seconds_ ; 129 this->nanos_ += that.nanos_ ; 137 TimeValue& operator -= (const TimeValue &that ) { 138 this->seconds_ -= that.seconds_ ; 139 this->nanos_ -= that.nanos_ ; 147 int operator < (const TimeValue &that) const { return that > *this; } 152 int operator > (const TimeValue &that) const { 153 if ( this->seconds_ > that.seconds_ ) { 155 } else if ( this->seconds_ == that.seconds_ ) { [all …]
|
/external/swiftshader/third_party/llvm-subzero/include/llvm/Support/ |
D | TimeValue.h | 127 TimeValue& operator += (const TimeValue& that ) { 128 this->seconds_ += that.seconds_ ; 129 this->nanos_ += that.nanos_ ; 137 TimeValue& operator -= (const TimeValue &that ) { 138 this->seconds_ -= that.seconds_ ; 139 this->nanos_ -= that.nanos_ ; 147 int operator < (const TimeValue &that) const { return that > *this; } 152 int operator > (const TimeValue &that) const { 153 if ( this->seconds_ > that.seconds_ ) { 155 } else if ( this->seconds_ == that.seconds_ ) { [all …]
|
/external/swiftshader/third_party/LLVM/include/llvm/Support/ |
D | TimeValue.h | 115 TimeValue& operator += (const TimeValue& that ) { 116 this->seconds_ += that.seconds_ ; 117 this->nanos_ += that.nanos_ ; 125 TimeValue& operator -= (const TimeValue &that ) { 126 this->seconds_ -= that.seconds_ ; 127 this->nanos_ -= that.nanos_ ; 135 int operator < (const TimeValue &that) const { return that > *this; } 140 int operator > (const TimeValue &that) const { 141 if ( this->seconds_ > that.seconds_ ) { 143 } else if ( this->seconds_ == that.seconds_ ) { [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/pdfium/core/fpdfapi/page/ |
D | cpdf_generalstate.cpp | 73 CPDF_GeneralState::CPDF_GeneralState(const CPDF_GeneralState& that) in CPDF_GeneralState() argument 74 : m_Ref(that.m_Ref) {} in CPDF_GeneralState() 246 CPDF_GeneralState::StateData::StateData(const StateData& that) in StateData() argument 247 : m_BlendMode(that.m_BlendMode), in StateData() 248 m_BlendType(that.m_BlendType), in StateData() 249 m_pSoftMask(that.m_pSoftMask), in StateData() 250 m_StrokeAlpha(that.m_StrokeAlpha), in StateData() 251 m_FillAlpha(that.m_FillAlpha), in StateData() 252 m_pTR(that.m_pTR), in StateData() 253 m_pTransferFunc(that.m_pTransferFunc), in StateData() [all …]
|
/external/pdfium/fpdfsdk/pdfwindow/ |
D | PWL_ScrollBar.h | 24 bool operator==(const PWL_SCROLL_INFO& that) const { 25 return fContentMin == that.fContentMin && fContentMax == that.fContentMax && 26 fPlateWidth == that.fPlateWidth && fBigStep == that.fBigStep && 27 fSmallStep == that.fSmallStep; 29 bool operator!=(const PWL_SCROLL_INFO& that) const { 30 return !(*this == that); 72 bool operator==(const PWL_FLOATRANGE& that) const { 73 return fMin == that.fMin && fMax == that.fMax; 75 bool operator!=(const PWL_FLOATRANGE& that) const { return !(*this == that); } 90 bool operator==(const PWL_SCROLL_PRIVATEDATA& that) const { [all …]
|
/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/apache-http/src/org/apache/http/ |
D | ProtocolVersion.java | 185 ProtocolVersion that = (ProtocolVersion) obj; in equals() local 187 return ((this.protocol.equals(that.protocol)) && in equals() 188 (this.major == that.major) && in equals() 189 (this.minor == that.minor)); in equals() 203 public boolean isComparable(ProtocolVersion that) { in isComparable() argument 204 return (that != null) && this.protocol.equals(that.protocol); in isComparable() 224 public int compareToVersion(ProtocolVersion that) { in compareToVersion() argument 225 if (that == null) { in compareToVersion() 229 if (!this.protocol.equals(that.protocol)) { in compareToVersion() 232 this + " " + that); in compareToVersion() [all …]
|
/external/libchrome/base/mac/ |
D | scoped_typeref.h | 64 ScopedTypeRef(const ScopedTypeRef<T, Traits>& that) in ScopedTypeRef() argument 65 : object_(that.object_) { in ScopedTypeRef() 78 ScopedTypeRef(ScopedTypeRef<T, Traits>&& that) : object_(that.object_) { in ScopedTypeRef() argument 79 that.object_ = Traits::InvalidValue(); in ScopedTypeRef() 87 ScopedTypeRef& operator=(const ScopedTypeRef<T, Traits>& that) { 88 reset(that.get(), base::scoped_policy::RETAIN); 110 bool operator==(__unsafe_unretained T that) const { return object_ == that; } 112 bool operator!=(__unsafe_unretained T that) const { return object_ != that; } 118 void swap(ScopedTypeRef& that) { in swap() argument 119 __unsafe_unretained T temp = that.object_; in swap() [all …]
|
/external/guava/guava/src/com/google/common/hash/ |
D | BloomFilter.java | 205 public boolean isCompatible(BloomFilter<T> that) { in isCompatible() argument 206 checkNotNull(that); in isCompatible() 207 return (this != that) && in isCompatible() 208 (this.numHashFunctions == that.numHashFunctions) && in isCompatible() 209 (this.bitSize() == that.bitSize()) && in isCompatible() 210 (this.strategy.equals(that.strategy)) && in isCompatible() 211 (this.funnel.equals(that.funnel)); in isCompatible() 224 public void putAll(BloomFilter<T> that) { in putAll() argument 225 checkNotNull(that); in putAll() 226 checkArgument(this != that, "Cannot combine a BloomFilter with itself."); in putAll() [all …]
|
/external/dagger2/compiler/src/test/java/dagger/internal/codegen/ |
D | ComponentBuilderTest.java | 100 assertAbout(javaSources()).that(ImmutableList.of(injectableTypeFile, componentFile)) in testEmptyBuilder() 191 .that(ImmutableList.of(moduleFile, componentFile)) in testUsesBuildAndSetterNames() 304 .that(ImmutableList.of(module1, module2, componentFile)) in testIgnoresModulesNotInApi() 331 assertAbout(javaSource()).that(componentFile) in testMoreThanOneBuilderFails() 355 assertAbout(javaSource()).that(componentFile) in testBuilderGenericsFails() 371 assertAbout(javaSource()).that(builder) in testBuilderNotInComponentFails() 392 assertAbout(javaSource()).that(componentFile) in testBuilderMissingBuildMethodFails() 413 assertAbout(javaSource()).that(componentFile) in testPrivateBuilderFails() 434 assertAbout(javaSource()).that(componentFile) in testNonStaticBuilderFails() 455 assertAbout(javaSource()).that(componentFile) in testNonAbstractBuilderFails() [all …]
|
D | InjectConstructorFactoryGeneratorTest.java | 84 assertAbout(javaSource()).that(file) in injectOnPrivateConstructor() 101 assertAbout(javaSource()).that(file) in injectConstructorOnInnerClass() 116 assertAbout(javaSource()).that(file) in injectConstructorOnAbstractClass() 156 assertAbout(javaSource()).that(file) in injectConstructorOnGenericClass() 203 assertAbout(javaSource()).that(file) in fieldAndMethodGenerics() 240 assertAbout(javaSource()).that(file) in genericClassWithNoDependencies() 284 assertAbout(javaSource()).that(file) in twoGenericTypes() 342 assertAbout(javaSource()).that(file) in boundedGenerics() 435 assertAbout(javaSources()).that(ImmutableList.of(file, QUALIFIER_A)) in multipleSameTypesWithGenericsAndQualifiersAndLazies() 452 assertAbout(javaSource()).that(file) in multipleInjectConstructors() [all …]
|
/external/ltp/testcases/commands/mail/ |
D | 00_Descriptions.txt | 2 Test that mail user@domain will send a mail to that user at that domain. 5 …Test that mail user@bad-domain will result in a warning from the mailer daemon that the domain doe… 8 …Test that mail non_existent_user@localhost will result in delivery failure. Mailer-Daemon will re… 11 Test that mail -c user@domain option will carbon copy that user. 14 Test that mail -b user@domain option will blind carbon copy that user.
|
/external/icu/icu4c/source/common/ |
D | chariter.cpp | 70 CharacterIterator::CharacterIterator(const CharacterIterator &that) : in CharacterIterator() argument 71 ForwardCharacterIterator(that), in CharacterIterator() 72 textLength(that.textLength), pos(that.pos), begin(that.begin), end(that.end) in CharacterIterator() 77 CharacterIterator::operator=(const CharacterIterator &that) { in operator =() argument 78 ForwardCharacterIterator::operator=(that); in operator =() 79 textLength = that.textLength; in operator =() 80 pos = that.pos; in operator =() 81 begin = that.begin; in operator =() 82 end = that.end; in operator =()
|
/external/nist-sip/java/gov/nist/javax/sip/address/ |
D | NetObject.java | 83 public boolean equals(Object that) { in equals() argument 84 if (!this.getClass().equals(that.getClass())) in equals() 87 Class<?> hisclass = that.getClass(); in equals() 111 if (f.getInt(this) != g.getInt(that)) in equals() 114 if (f.getShort(this) != g.getShort(that)) in equals() 117 if (f.getChar(this) != g.getChar(that)) in equals() 120 if (f.getLong(this) != g.getLong(that)) in equals() 123 if (f.getBoolean(this) != g.getBoolean(that)) in equals() 126 if (f.getDouble(this) != g.getDouble(that)) in equals() 129 if (f.getFloat(this) != g.getFloat(that)) in equals() [all …]
|
/external/skia/src/gpu/ |
D | GrCoordTransform.h | 76 GrCoordTransform& operator= (const GrCoordTransform& that) { 78 fMatrix = that.fMatrix; 79 fProxy = that.fProxy; 80 fNormalize = that.fNormalize; 81 fReverseY = that.fReverseY; 94 bool hasSameEffectAs(const GrCoordTransform& that) const { in hasSameEffectAs() argument 95 if (fNormalize != that.fNormalize || in hasSameEffectAs() 96 fReverseY != that.fReverseY || in hasSameEffectAs() 97 !fMatrix.cheapEqualTo(that.fMatrix)) { in hasSameEffectAs() 102 if (fProxy->underlyingUniqueID() != that.fProxy->underlyingUniqueID()) { in hasSameEffectAs() [all …]
|