Home
last modified time | relevance | path

Searched defs:that (Results 1 – 25 of 711) sorted by relevance

12345678910>>...29

/external/pdfium/testing/resources/javascript/
Dproperty_test_helpers.js21 function testReadProperty(that, prop, expected) { argument
34 function testUnreadableProperty(that, prop) { argument
43 function testWriteProperty(that, prop, newValue) { argument
57 function testWriteIgnoredProperty(that, prop, expected, newValue) { argument
71 function testUnwritableProperty(that, prop, newValue) { argument
80 function testRWProperty(that, prop, expected, newValue) { argument
85 function testRIProperty(that, prop, expected, newValue) { argument
90 function testROProperty(that, prop, expected) { argument
95 function testXXProperty(that, prop) { argument
/external/v8/src/regexp/
Dregexp-ast.cc152 void* RegExpUnparser::VisitDisjunction(RegExpDisjunction* that, void* data) { in VisitDisjunction()
163 void* RegExpUnparser::VisitAlternative(RegExpAlternative* that, void* data) { in VisitAlternative()
174 void RegExpUnparser::VisitCharacterRange(CharacterRange that) { in VisitCharacterRange()
182 void* RegExpUnparser::VisitCharacterClass(RegExpCharacterClass* that, in VisitCharacterClass()
195 void* RegExpUnparser::VisitAssertion(RegExpAssertion* that, void* data) { in VisitAssertion()
220 void* RegExpUnparser::VisitAtom(RegExpAtom* that, void* data) { in VisitAtom()
231 void* RegExpUnparser::VisitText(RegExpText* that, void* data) { in VisitText()
246 void* RegExpUnparser::VisitQuantifier(RegExpQuantifier* that, void* data) { in VisitQuantifier()
260 void* RegExpUnparser::VisitCapture(RegExpCapture* that, void* data) { in VisitCapture()
267 void* RegExpUnparser::VisitGroup(RegExpGroup* that, void* data) { in VisitGroup()
[all …]
Dregexp-dotprinter.cc90 void DotPrinterImpl::PrintAttributes(RegExpNode* that) { in PrintAttributes()
105 void DotPrinterImpl::VisitChoice(ChoiceNode* that) { in VisitChoice()
117 void DotPrinterImpl::VisitLoopChoice(LoopChoiceNode* that) { in VisitLoopChoice()
122 NegativeLookaroundChoiceNode* that) { in VisitNegativeLookaroundChoice()
126 void DotPrinterImpl::VisitText(TextNode* that) { in VisitText()
161 void DotPrinterImpl::VisitBackReference(BackReferenceNode* that) { in VisitBackReference()
169 void DotPrinterImpl::VisitEnd(EndNode* that) { in VisitEnd()
174 void DotPrinterImpl::VisitAssertion(AssertionNode* that) { in VisitAssertion()
200 void DotPrinterImpl::VisitAction(ActionNode* that) { in VisitAction()
/external/pdfium/core/fxcrt/
Dretain_ptr.h33 RetainPtr(const RetainPtr& that) : RetainPtr(that.Get()) {} in RetainPtr()
36 RetainPtr(RetainPtr&& that) noexcept { Swap(that); } in RetainPtr() function
43 RetainPtr(const RetainPtr<U>& that) : RetainPtr(that.Get()) {} in RetainPtr()
58 void Swap(RetainPtr& that) { m_pObj.swap(that.m_pObj); } in Swap()
163 RetainPtr<T> WrapRetain(T* that) { in WrapRetain()
Dweak_ptr.h23 WeakPtr(const WeakPtr& that) : m_pHandle(that.m_pHandle) {} in WeakPtr()
24 WeakPtr(WeakPtr&& that) noexcept { Swap(that); } in WeakPtr() function
56 void Swap(WeakPtr& that) { m_pHandle.Swap(that.m_pHandle); } in Swap()
/external/skia/src/core/
DSkTLazy.h24 SkTLazy(const SkTLazy& that) : fPtr(that.fPtr ? new (&fStorage) T(*that.fPtr) : nullptr) {} in SkTLazy()
25 SkTLazy(SkTLazy&& that) : fPtr(that.fPtr ? new (&fStorage) T(std::move(*that.fPtr)) : nullptr){} in SkTLazy() function
151 SkTCopyOnFirstWrite(const SkTCopyOnFirstWrite& that) { *this = that; } in SkTCopyOnFirstWrite()
152 SkTCopyOnFirstWrite( SkTCopyOnFirstWrite&& that) { *this = std::move(that); } in SkTCopyOnFirstWrite() function
/external/doclava/src/com/google/doclava/
DSourcePositionInfo.java28 public SourcePositionInfo(SourcePositionInfo that) { in SourcePositionInfo() method in SourcePositionInfo
40 public static SourcePositionInfo add(SourcePositionInfo that, String str, int index) { in add()
56 public static SourcePositionInfo findBeginning(SourcePositionInfo that, String str) { in findBeginning()
78 SourcePositionInfo that = (SourcePositionInfo) o; in compareTo() local
/external/skqp/include/core/
DSkTLazy.h24 SkTLazy(const SkTLazy& that) { *this = that; } in SkTLazy()
25 SkTLazy(SkTLazy&& that) { *this = std::move(that); } in SkTLazy() function
151 SkTCopyOnFirstWrite(const SkTCopyOnFirstWrite& that) { *this = that; } in SkTCopyOnFirstWrite()
152 SkTCopyOnFirstWrite( SkTCopyOnFirstWrite&& that) { *this = std::move(that); } in SkTCopyOnFirstWrite() function
DSkRefCnt.h215 sk_sp(const sk_sp<T>& that) : fPtr(SkSafeRef(that.get())) {} in sk_sp()
218 sk_sp(const sk_sp<U>& that) : fPtr(SkSafeRef(that.get())) {} in sk_sp()
225 sk_sp(sk_sp<T>&& that) : fPtr(that.release()) {} in sk_sp() function
228 sk_sp(sk_sp<U>&& that) : fPtr(that.release()) {} in sk_sp() function
314 void swap(sk_sp<T>& that) /*noexcept*/ { in swap()
/external/skia/modules/skplaintexteditor/src/
Dstringslice.cpp15 StringSlice::StringSlice(StringSlice&& that) in StringSlice() function in StringSlice
24 StringSlice& StringSlice::operator=(StringSlice&& that) { in operator =()
32 StringSlice& StringSlice::operator=(const StringSlice& that) { in operator =()
/external/skia/include/core/
DSkRefCnt.h226 sk_sp(const sk_sp<T>& that) : fPtr(SkSafeRef(that.get())) {} in sk_sp()
229 sk_sp(const sk_sp<U>& that) : fPtr(SkSafeRef(that.get())) {} in sk_sp()
236 sk_sp(sk_sp<T>&& that) : fPtr(that.release()) {} in sk_sp() function
239 sk_sp(sk_sp<U>&& that) : fPtr(that.release()) {} in sk_sp() function
325 void swap(sk_sp<T>& that) /*noexcept*/ { in swap()
/external/tensorflow/tensorflow/examples/android/jni/object_tracking/
Dgeom.h69 inline float DistanceSquared(const Point2f& that) { in DistanceSquared()
73 inline float Distance(const Point2f& that) { in Distance()
156 inline BoundingBox Intersect(const BoundingBox& that) const { in Intersect()
175 inline BoundingBox Union(const BoundingBox& that) const { in Union()
182 inline float PascalScore(const BoundingBox& that) const { in PascalScore()
198 inline bool Intersects(const BoundingBox& that) const { in Intersects()
207 inline bool Contains(const BoundingBox& that) const { in Contains()
/external/swiftshader/third_party/SPIRV-Tools/source/opt/
Dtypes.cpp246 bool Integer::IsSameImpl(const Type* that, IsSameCache*) const { in IsSameImpl() argument
264 bool Float::IsSameImpl(const Type* that, IsSameCache*) const { in IsSameImpl() argument
285 bool Vector::IsSameImpl(const Type* that, IsSameCache* seen) const { in IsSameImpl() argument
310 bool Matrix::IsSameImpl(const Type* that, IsSameCache* seen) const { in IsSameImpl() argument
344 bool Image::IsSameImpl(const Type* that, IsSameCache* seen) const { in IsSameImpl() argument
374 bool SampledImage::IsSameImpl(const Type* that, IsSameCache* seen) const { in IsSameImpl() argument
401 bool Array::IsSameImpl(const Type* that, IsSameCache* seen) const { in IsSameImpl() argument
437 bool RuntimeArray::IsSameImpl(const Type* that, IsSameCache* seen) const { in IsSameImpl() argument
477 bool Struct::IsSameImpl(const Type* that, IsSameCache* seen) const { in IsSameImpl() argument
524 bool Opaque::IsSameImpl(const Type* that, IsSameCache*) const { in IsSameImpl() argument
[all …]
/external/deqp-deps/SPIRV-Tools/source/opt/
Dtypes.cpp249 bool Integer::IsSameImpl(const Type* that, IsSameCache*) const { in IsSameImpl() argument
267 bool Float::IsSameImpl(const Type* that, IsSameCache*) const { in IsSameImpl() argument
288 bool Vector::IsSameImpl(const Type* that, IsSameCache* seen) const { in IsSameImpl() argument
313 bool Matrix::IsSameImpl(const Type* that, IsSameCache* seen) const { in IsSameImpl() argument
347 bool Image::IsSameImpl(const Type* that, IsSameCache* seen) const { in IsSameImpl() argument
377 bool SampledImage::IsSameImpl(const Type* that, IsSameCache* seen) const { in IsSameImpl() argument
404 bool Array::IsSameImpl(const Type* that, IsSameCache* seen) const { in IsSameImpl() argument
440 bool RuntimeArray::IsSameImpl(const Type* that, IsSameCache* seen) const { in IsSameImpl() argument
480 bool Struct::IsSameImpl(const Type* that, IsSameCache* seen) const { in IsSameImpl() argument
527 bool Opaque::IsSameImpl(const Type* that, IsSameCache*) const { in IsSameImpl() argument
[all …]
/external/angle/third_party/spirv-tools/src/source/opt/
Dtypes.cpp249 bool Integer::IsSameImpl(const Type* that, IsSameCache*) const { in IsSameImpl() argument
267 bool Float::IsSameImpl(const Type* that, IsSameCache*) const { in IsSameImpl() argument
288 bool Vector::IsSameImpl(const Type* that, IsSameCache* seen) const { in IsSameImpl() argument
313 bool Matrix::IsSameImpl(const Type* that, IsSameCache* seen) const { in IsSameImpl() argument
347 bool Image::IsSameImpl(const Type* that, IsSameCache* seen) const { in IsSameImpl() argument
377 bool SampledImage::IsSameImpl(const Type* that, IsSameCache* seen) const { in IsSameImpl() argument
404 bool Array::IsSameImpl(const Type* that, IsSameCache* seen) const { in IsSameImpl() argument
440 bool RuntimeArray::IsSameImpl(const Type* that, IsSameCache* seen) const { in IsSameImpl() argument
480 bool Struct::IsSameImpl(const Type* that, IsSameCache* seen) const { in IsSameImpl() argument
527 bool Opaque::IsSameImpl(const Type* that, IsSameCache*) const { in IsSameImpl() argument
[all …]
/external/apache-http/src/org/apache/http/
DProtocolVersion.java185 ProtocolVersion that = (ProtocolVersion) obj; in equals() local
203 public boolean isComparable(ProtocolVersion that) { in isComparable()
224 public int compareToVersion(ProtocolVersion that) { in compareToVersion()
/external/guava/guava-tests/test/com/google/common/collect/
DLegacyComparable.java49 LegacyComparable that = (LegacyComparable) object; in compareTo() local
56 LegacyComparable that = (LegacyComparable) object; in equals() local
/external/guava/android/guava-tests/test/com/google/common/collect/
DLegacyComparable.java49 LegacyComparable that = (LegacyComparable) object; in compareTo() local
56 LegacyComparable that = (LegacyComparable) object; in equals() local
/external/skia/include/ports/
DSkCFObject.h43 sk_cf_obj(const sk_cf_obj<T>& that) : fObject(SkCFSafeRetain(that.get())) {} in sk_cf_obj()
50 sk_cf_obj(sk_cf_obj<T>&& that) : fObject(that.release()) {} in sk_cf_obj() function
/external/robolectric-shadows/robolectric/src/main/java/org/robolectric/internal/
DSdkConfig.java85 public boolean equals(Object that) { in equals()
128 public boolean equals(Object that) { in equals()
133 public boolean isEqualTo(SdkVersion that) { in isEqualTo()
/external/skia/src/utils/win/
DSkTScopedComPtr.h37 SkTScopedComPtr(SkTScopedComPtr&& that) : fPtr(that.release()) {} in SkTScopedComPtr() function
72 void swap(SkTScopedComPtr<T>& that) { in swap()
/external/guava/android/guava/src/com/google/common/hash/
DHashCode.java108 abstract boolean equalsSameBits(HashCode that); in equalsSameBits()
160 boolean equalsSameBits(HashCode that) { in equalsSameBits()
226 boolean equalsSameBits(HashCode that) { in equalsSameBits()
310 boolean equalsSameBits(HashCode that) { in equalsSameBits()
374 HashCode that = (HashCode) object; in equals() local
/external/guava/guava/src/com/google/common/hash/
DHashCode.java108 abstract boolean equalsSameBits(HashCode that); in equalsSameBits()
160 boolean equalsSameBits(HashCode that) { in equalsSameBits()
226 boolean equalsSameBits(HashCode that) { in equalsSameBits()
310 boolean equalsSameBits(HashCode that) { in equalsSameBits()
374 HashCode that = (HashCode) object; in equals() local
/external/skqp/src/utils/win/
DSkTScopedComPtr.h44 SkTScopedComPtr(SkTScopedComPtr&& that) : fPtr(that.release()) {} in SkTScopedComPtr() function
79 void swap(SkTScopedComPtr<T>& that) { in swap()
/external/guava/guava/src/com/google/common/base/
DFunctions.java152 FunctionForMapNoDefault<?, ?> that = (FunctionForMapNoDefault<?, ?>) o; in equals() local
189 ForMapWithDefault<?, ?> that = (ForMapWithDefault<?, ?>) o; in equals() local
242 FunctionComposition<?, ?, ?> that = (FunctionComposition<?, ?, ?>) obj; in equals() local
290 PredicateFunction<?> that = (PredicateFunction<?>) obj; in equals() local
336 ConstantFunction<?> that = (ConstantFunction<?>) obj; in equals() local
383 SupplierFunction<?> that = (SupplierFunction<?>) obj; in equals() local

12345678910>>...29