/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/tensorflow/tensorflow/examples/android/jni/object_tracking/ |
D | geom.h | 37 inline Point2f operator- (const Point2f& that) const { 38 return Point2f(this->x - that.x, this->y - that.y); 41 inline Point2f operator+ (const Point2f& that) const { 42 return Point2f(this->x + that.x, this->y + that.y); 45 inline Point2f& operator+= (const Point2f& that) { 46 this->x += that.x; 47 this->y += that.y; 51 inline Point2f& operator-= (const Point2f& that) { 52 this->x -= that.x; 53 this->y -= that.y; [all …]
|
/external/curl/tests/data/ |
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 …]
|
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 …]
|
/external/skqp/include/gpu/vk/ |
D | GrVkTypes.h | 56 bool operator==(const GrVkAlloc& that) const { 57 return fMemory == that.fMemory && fOffset == that.fOffset && fSize == that.fSize && 58 fFlags == that.fFlags && fUsesSystemHeap == that.fUsesSystemHeap; 98 bool operator==(const GrVkYcbcrConversionInfo& that) const { 100 if (!this->isValid() && !that.isValid()) { 103 return this->fYcbcrModel == that.fYcbcrModel && 104 this->fYcbcrRange == that.fYcbcrRange && 105 this->fXChromaOffset == that.fXChromaOffset && 106 this->fYChromaOffset == that.fYChromaOffset && 107 this->fChromaFilter == that.fChromaFilter && [all …]
|
/external/skia/include/gpu/vk/ |
D | GrVkTypes.h | 56 bool operator==(const GrVkAlloc& that) const { 57 return fMemory == that.fMemory && fOffset == that.fOffset && fSize == that.fSize && 58 fFlags == that.fFlags && fUsesSystemHeap == that.fUsesSystemHeap; 98 bool operator==(const GrVkYcbcrConversionInfo& that) const { 100 if (!this->isValid() && !that.isValid()) { 103 return this->fYcbcrModel == that.fYcbcrModel && 104 this->fYcbcrRange == that.fYcbcrRange && 105 this->fXChromaOffset == that.fXChromaOffset && 106 this->fYChromaOffset == that.fYChromaOffset && 107 this->fChromaFilter == that.fChromaFilter && [all …]
|
/external/bcc/src/cc/ |
D | table_desc.h | 45 TableDesc(const TableDesc &that) in TableDesc() argument 46 : name(that.name), in TableDesc() 47 fd(that.fd.dup()), in TableDesc() 48 type(that.type), in TableDesc() 49 key_size(that.key_size), in TableDesc() 50 leaf_size(that.leaf_size), in TableDesc() 51 max_entries(that.max_entries), in TableDesc() 52 flags(that.flags), in TableDesc() 53 key_desc(that.key_desc), in TableDesc() 54 leaf_desc(that.leaf_desc), in TableDesc() [all …]
|
/external/bcc/src/cc/includes/ |
D | table_desc.h | 45 TableDesc(const TableDesc &that) in TableDesc() argument 46 : name(that.name), in TableDesc() 47 fd(that.fd.dup()), in TableDesc() 48 type(that.type), in TableDesc() 49 key_size(that.key_size), in TableDesc() 50 leaf_size(that.leaf_size), in TableDesc() 51 max_entries(that.max_entries), in TableDesc() 52 flags(that.flags), in TableDesc() 53 key_desc(that.key_desc), in TableDesc() 54 leaf_desc(that.leaf_desc), in TableDesc() [all …]
|
/external/pdfium/core/fxcrt/ |
D | unowned_ptr.h | 43 UnownedPtr(const UnownedPtr& that) : UnownedPtr(that.Get()) {} in UnownedPtr() argument 54 UnownedPtr& operator=(T* that) { 56 m_pObj = that; 60 UnownedPtr& operator=(const UnownedPtr& that) { 62 if (*this != that) 63 m_pObj = that.Get(); 67 bool operator==(const UnownedPtr& that) const { return Get() == that.Get(); } 68 bool operator!=(const UnownedPtr& that) const { return !(*this == that); } 69 bool operator<(const UnownedPtr& that) const { 70 return std::less<T*>()(Get(), that.Get()); [all …]
|
D | retain_ptr.h | 32 RetainPtr(const RetainPtr& that) : RetainPtr(that.Get()) {} in RetainPtr() argument 33 RetainPtr(RetainPtr&& that) noexcept { Swap(that); } in RetainPtr() argument 40 RetainPtr(const RetainPtr<U>& that) : RetainPtr(that.Get()) {} in RetainPtr() argument 54 void Swap(RetainPtr& that) { m_pObj.swap(that.m_pObj); } in Swap() argument 60 RetainPtr& operator=(const RetainPtr& that) { 61 if (*this != that) 62 Reset(that.Get()); 66 RetainPtr& operator=(RetainPtr&& that) { 67 m_pObj.reset(that.Leak()); 71 bool operator==(const RetainPtr& that) const { return Get() == that.Get(); } [all …]
|
/external/skia/include/core/ |
D | SkTLazy.h | 24 SkTLazy(const SkTLazy& that) { *this = that; } in SkTLazy() argument 25 SkTLazy(SkTLazy&& that) { *this = std::move(that); } in SkTLazy() argument 29 SkTLazy& operator=(const SkTLazy& that) { 30 if (that.isValid()) { 31 this->set(*that); 38 SkTLazy& operator=(SkTLazy&& that) { 39 if (that.isValid()) { 40 this->set(std::move(*that)); 151 SkTCopyOnFirstWrite(const SkTCopyOnFirstWrite& that) { *this = that; } in SkTCopyOnFirstWrite() argument 152 SkTCopyOnFirstWrite( SkTCopyOnFirstWrite&& that) { *this = std::move(that); } in SkTCopyOnFirstWrite() argument [all …]
|
/external/skqp/include/core/ |
D | SkTLazy.h | 24 SkTLazy(const SkTLazy& that) { *this = that; } in SkTLazy() argument 25 SkTLazy(SkTLazy&& that) { *this = std::move(that); } in SkTLazy() argument 29 SkTLazy& operator=(const SkTLazy& that) { 30 if (that.isValid()) { 31 this->set(*that); 38 SkTLazy& operator=(SkTLazy&& that) { 39 if (that.isValid()) { 40 this->set(std::move(*that)); 151 SkTCopyOnFirstWrite(const SkTCopyOnFirstWrite& that) { *this = that; } in SkTCopyOnFirstWrite() argument 152 SkTCopyOnFirstWrite( SkTCopyOnFirstWrite&& that) { *this = std::move(that); } in SkTCopyOnFirstWrite() argument [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/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/pdfium/fpdfsdk/pwl/ |
D | cpwl_scroll_bar.h | 25 bool operator==(const PWL_SCROLL_INFO& that) const { 26 return fContentMin == that.fContentMin && fContentMax == that.fContentMax && 27 fPlateWidth == that.fPlateWidth && fBigStep == that.fBigStep && 28 fSmallStep == that.fSmallStep; 30 bool operator!=(const PWL_SCROLL_INFO& that) const { 31 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/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() 284 CPDF_GeneralState::StateData::StateData(const StateData& that) in StateData() argument 285 : m_BlendMode(that.m_BlendMode), in StateData() 286 m_BlendType(that.m_BlendType), in StateData() 287 m_pSoftMask(that.m_pSoftMask), in StateData() 288 m_StrokeAlpha(that.m_StrokeAlpha), in StateData() 289 m_FillAlpha(that.m_FillAlpha), in StateData() 290 m_pTR(that.m_pTR), in StateData() 291 m_pTransferFunc(that.m_pTransferFunc), in StateData() [all …]
|
/external/skqp/src/gpu/ |
D | GrSwizzle.h | 21 constexpr GrSwizzle(const GrSwizzle& that) in GrSwizzle() argument 22 : fSwiz{that.fSwiz[0], that.fSwiz[1], that.fSwiz[2], that.fSwiz[3], '\0'} in GrSwizzle() 23 , fKey(that.fKey) {} 25 constexpr GrSwizzle& operator=(const GrSwizzle& that) { 26 fSwiz[0] = that.fSwiz[0]; 27 fSwiz[1] = that.fSwiz[1]; 28 fSwiz[2] = that.fSwiz[2]; 29 fSwiz[3] = that.fSwiz[3]; 31 fKey = that.fKey; 45 constexpr bool operator==(const GrSwizzle& that) const { return fKey == that.fKey; } [all …]
|
D | GrBackendSurface.cpp | 138 bool GrBackendFormat::operator==(const GrBackendFormat& that) const { in operator ==() 140 if (!fValid || !that.fValid) { in operator ==() 144 if (fBackend != that.fBackend) { in operator ==() 150 return fGLFormat == that.fGLFormat; in operator ==() 153 return fVk.fFormat == that.fVk.fFormat && in operator ==() 154 fVk.fYcbcrConversionInfo == that.fVk.fYcbcrConversionInfo; in operator ==() 159 return fMtlFormat == that.fMtlFormat; in operator ==() 163 return fMockFormat == that.fMockFormat; in operator ==() 245 GrBackendTexture::GrBackendTexture(const GrBackendTexture& that) : fIsValid(false) { in GrBackendTexture() argument 246 *this = that; in GrBackendTexture() [all …]
|
/external/skia/src/gpu/ |
D | GrSwizzle.h | 21 constexpr GrSwizzle(const GrSwizzle& that) in GrSwizzle() argument 22 : fSwiz{that.fSwiz[0], that.fSwiz[1], that.fSwiz[2], that.fSwiz[3], '\0'} in GrSwizzle() 23 , fKey(that.fKey) {} 25 constexpr GrSwizzle& operator=(const GrSwizzle& that) { 26 fSwiz[0] = that.fSwiz[0]; 27 fSwiz[1] = that.fSwiz[1]; 28 fSwiz[2] = that.fSwiz[2]; 29 fSwiz[3] = that.fSwiz[3]; 31 fKey = that.fKey; 45 constexpr bool operator==(const GrSwizzle& that) const { return fKey == that.fKey; } [all …]
|
D | GrBackendSurface.cpp | 148 bool GrBackendFormat::operator==(const GrBackendFormat& that) const { in operator ==() 150 if (!fValid || !that.fValid) { in operator ==() 154 if (fBackend != that.fBackend) { in operator ==() 160 return fGLFormat == that.fGLFormat; in operator ==() 163 return fVk.fFormat == that.fVk.fFormat && in operator ==() 164 fVk.fYcbcrConversionInfo == that.fVk.fYcbcrConversionInfo; in operator ==() 169 return fMtlFormat == that.fMtlFormat; in operator ==() 173 return fMockFormat == that.fMockFormat; in operator ==() 255 GrBackendTexture::GrBackendTexture(const GrBackendTexture& that) : fIsValid(false) { in GrBackendTexture() argument 256 *this = that; in GrBackendTexture() [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/v8/src/compiler/ |
D | load-elimination.h | 58 AbstractChecks* that = new (zone) AbstractChecks(*this); in NON_EXPORTED_BASE() local 59 that->nodes_[that->next_index_] = node; in NON_EXPORTED_BASE() 60 that->next_index_ = (that->next_index_ + 1) % arraysize(nodes_); in NON_EXPORTED_BASE() 61 return that; in NON_EXPORTED_BASE() 64 bool Equals(AbstractChecks const* that) const; in NON_EXPORTED_BASE() 65 AbstractChecks const* Merge(AbstractChecks const* that, Zone* zone) const; in NON_EXPORTED_BASE() 94 AbstractElements* that = new (zone) AbstractElements(*this); in NON_EXPORTED_BASE() local 95 that->elements_[that->next_index_] = in NON_EXPORTED_BASE() 97 that->next_index_ = (that->next_index_ + 1) % arraysize(elements_); in NON_EXPORTED_BASE() 98 return that; in NON_EXPORTED_BASE() [all …]
|