Home
last modified time | relevance | path

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

12345678910>>...31

/external/truth/core/src/main/java/com/google/common/truth/
DStandardSubjectBuilder.java65 public final <ComparableT extends Comparable<?>> ComparableSubject<ComparableT> that( in that() method in StandardSubjectBuilder
70 public final BigDecimalSubject that(@Nullable BigDecimal actual) { in that() method in StandardSubjectBuilder
74 public final Subject that(@Nullable Object actual) { in that() method in StandardSubjectBuilder
79 public final ClassSubject that(@Nullable Class<?> actual) { in that() method in StandardSubjectBuilder
83 public final ThrowableSubject that(@Nullable Throwable actual) { in that() method in StandardSubjectBuilder
87 public final LongSubject that(@Nullable Long actual) { in that() method in StandardSubjectBuilder
91 public final DoubleSubject that(@Nullable Double actual) { in that() method in StandardSubjectBuilder
95 public final FloatSubject that(@Nullable Float actual) { in that() method in StandardSubjectBuilder
99 public final IntegerSubject that(@Nullable Integer actual) { in that() method in StandardSubjectBuilder
103 public final BooleanSubject that(@Nullable Boolean actual) { in that() method in StandardSubjectBuilder
[all …]
/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/cronet/base/mac/
Dscoped_nsobject.h94 scoped_nsprotocol(const scoped_nsprotocol<NST>& that) in scoped_nsprotocol()
101 scoped_nsprotocol(scoped_nsprotocol<NST>&& that) in scoped_nsprotocol() function
109 void reset(const scoped_nsprotocol<NST>& that) { in reset()
162 scoped_nsobject(const scoped_nsobject<NST>& that) in scoped_nsobject()
169 scoped_nsobject(scoped_nsobject<NST>&& that) in scoped_nsobject() function
177 void reset(const scoped_nsobject<NST>& that) { in reset()
221 scoped_nsobject(scoped_nsobject<id>&& that) in scoped_nsobject() function
226 void reset(const scoped_nsobject<id>& that) { in reset()
Dscoped_typeref.h63 ScopedTypeRef(const ScopedTypeRef<T, Traits>& that) in ScopedTypeRef()
77 ScopedTypeRef(ScopedTypeRef<T, Traits>&& that) : object_(that.object_) { in ScopedTypeRef()
99 void reset(const ScopedTypeRef<T, Traits>& that) { in reset()
129 void swap(ScopedTypeRef& that) { in swap()
/external/truth/extensions/proto/src/main/java/com/google/common/truth/extensions/proto/
DProtoSubjectBuilder.java53 public LiteProtoSubject that(@Nullable MessageLite messageLite) { in that() method in ProtoSubjectBuilder
57 public ProtoSubject that(@Nullable Message message) { in that() method in ProtoSubjectBuilder
61 public <M extends Message> IterableOfProtosSubject<M> that(@Nullable Iterable<M> messages) { in that() method in ProtoSubjectBuilder
65 public <M extends Message> MapWithProtoValuesSubject<M> that(@Nullable Map<?, M> map) { in that() method in ProtoSubjectBuilder
69 public <M extends Message> MultimapWithProtoValuesSubject<M> that(@Nullable Multimap<?, M> map) { in that() method in ProtoSubjectBuilder
/external/pdfium/core/fxcrt/
Dunowned_ptr.h62 constexpr UnownedPtr(const UnownedPtr& that) noexcept in UnownedPtr()
67 constexpr UnownedPtr(UnownedPtr&& that) noexcept in UnownedPtr() function
74 UnownedPtr(const UnownedPtr<U>& that) : UnownedPtr(static_cast<U*>(that)) {} in UnownedPtr()
80 UnownedPtr(UnownedPtr<U>&& that) noexcept { in UnownedPtr() function
192 UnownedPtr<T> WrapUnowned(T* that) { in WrapUnowned()
Dretain_ptr.h44 RetainPtr(const RetainPtr& that) noexcept : RetainPtr(that.Get()) {} in RetainPtr()
48 RetainPtr(RetainPtr&& that) noexcept { Unleak(that.Leak()); } in RetainPtr() function
54 RetainPtr(const RetainPtr<U>& that) : RetainPtr(that.Get()) {} in RetainPtr()
60 RetainPtr(RetainPtr<U>&& that) noexcept { in RetainPtr() function
126 void Swap(RetainPtr& that) { m_pObj.swap(that.m_pObj); } in Swap()
216 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/s2-geometry-library-java/src/com/google/common/geometry/
DS1Angle.java64 public boolean equals(Object that) { in equals()
77 public boolean lessThan(S1Angle that) { in lessThan()
81 public boolean greaterThan(S1Angle that) { in greaterThan()
85 public boolean lessOrEquals(S1Angle that) { in lessOrEquals()
89 public boolean greaterOrEquals(S1Angle that) { in greaterOrEquals()
134 public int compareTo(S1Angle that) { in compareTo()
DR2Vector.java76 public double dotProd(R2Vector that) { in dotProd()
80 public double crossProd(final R2Vector that) { in crossProd()
98 public boolean equals(Object that) { in equals()
/external/skia/src/gpu/ganesh/
DGrRefCnt.h44 gr_sp(const gr_sp<T, Ref, Unref>& that) : fPtr(SafeRef(that.get())) {} in gr_sp()
47 gr_sp(const gr_sp<U, Ref, Unref>& that) : fPtr(SafeRef(that.get())) {} in gr_sp()
49 gr_sp(const sk_sp<T>& that) : fPtr(SafeRef(that.get())) {} in gr_sp()
57 gr_sp(gr_sp<T, Ref, Unref>&& that) : fPtr(that.release()) {} in gr_sp()
63 gr_sp(sk_sp<T>&& that) : fPtr(SafeRef(that.get())) {} in gr_sp()
DGrBackendSemaphore.cpp38 GrBackendSemaphore::GrBackendSemaphore(const GrBackendSemaphore& that) { in GrBackendSemaphore()
43 GrBackendSemaphore& GrBackendSemaphore::operator=(const GrBackendSemaphore& that) { in operator =()
/external/cronet/base/allocator/partition_allocator/partition_alloc_base/mac/
Dscoped_typeref.h63 ScopedTypeRef(const ScopedTypeRef<T, Traits>& that) : object_(that.object_) { in ScopedTypeRef()
76 ScopedTypeRef(ScopedTypeRef<T, Traits>&& that) : object_(that.object_) { in ScopedTypeRef()
98 void reset(const ScopedTypeRef<T, Traits>& that) { in reset()
124 void swap(ScopedTypeRef& that) { in swap()
/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/skia/src/base/
DSkTLazy.h24 SkTLazy(const SkTLazy& that) : fValue(that.fValue) {} in SkTLazy()
25 SkTLazy(SkTLazy&& that) : fValue(std::move(that.fValue)) {} in SkTLazy() function
148 SkTCopyOnFirstWrite(const SkTCopyOnFirstWrite& that) { *this = that; } in SkTCopyOnFirstWrite()
149 SkTCopyOnFirstWrite( SkTCopyOnFirstWrite&& that) { *this = std::move(that); } in SkTCopyOnFirstWrite() function
DSkTDArray.cpp34 SkTDStorage::SkTDStorage(const SkTDStorage& that) in SkTDStorage()
37 SkTDStorage& SkTDStorage::operator=(const SkTDStorage& that) { in operator =()
51 SkTDStorage::SkTDStorage(SkTDStorage&& that) in SkTDStorage() function in SkTDStorage
57 SkTDStorage& SkTDStorage::operator=(SkTDStorage&& that) { in operator =()
75 void SkTDStorage::swap(SkTDStorage& that) { in swap()
/external/angle/third_party/vulkan-deps/spirv-tools/src/source/opt/
Dtypes.cpp282 bool Integer::IsSameImpl(const Type* that, IsSameCache*) const { in IsSameImpl() argument
298 bool Float::IsSameImpl(const Type* that, IsSameCache*) const { in IsSameImpl() argument
318 bool Vector::IsSameImpl(const Type* that, IsSameCache* seen) const { in IsSameImpl() argument
344 bool Matrix::IsSameImpl(const Type* that, IsSameCache* seen) const { in IsSameImpl() argument
378 bool Image::IsSameImpl(const Type* that, IsSameCache* seen) const { in IsSameImpl() argument
402 bool SampledImage::IsSameImpl(const Type* that, IsSameCache* seen) const { in IsSameImpl() argument
428 bool Array::IsSameImpl(const Type* that, IsSameCache* seen) const { in IsSameImpl() argument
467 bool RuntimeArray::IsSameImpl(const Type* that, IsSameCache* seen) const { in IsSameImpl() argument
506 bool Struct::IsSameImpl(const Type* that, IsSameCache* seen) const { in IsSameImpl() argument
548 bool Opaque::IsSameImpl(const Type* that, IsSameCache*) const { in IsSameImpl() argument
[all …]
/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/tensorflow/tensorflow/tools/android/test/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/deqp-deps/SPIRV-Tools/source/opt/
Dtypes.cpp279 bool Integer::IsSameImpl(const Type* that, IsSameCache*) const { in IsSameImpl() argument
295 bool Float::IsSameImpl(const Type* that, IsSameCache*) const { in IsSameImpl() argument
315 bool Vector::IsSameImpl(const Type* that, IsSameCache* seen) const { in IsSameImpl() argument
341 bool Matrix::IsSameImpl(const Type* that, IsSameCache* seen) const { in IsSameImpl() argument
374 bool Image::IsSameImpl(const Type* that, IsSameCache* seen) const { in IsSameImpl() argument
398 bool SampledImage::IsSameImpl(const Type* that, IsSameCache* seen) const { in IsSameImpl() argument
424 bool Array::IsSameImpl(const Type* that, IsSameCache* seen) const { in IsSameImpl() argument
463 bool RuntimeArray::IsSameImpl(const Type* that, IsSameCache* seen) const { in IsSameImpl() argument
502 bool Struct::IsSameImpl(const Type* that, IsSameCache* seen) const { in IsSameImpl() argument
544 bool Opaque::IsSameImpl(const Type* that, IsSameCache*) const { in IsSameImpl() argument
[all …]
/external/swiftshader/third_party/SPIRV-Tools/source/opt/
Dtypes.cpp281 bool Integer::IsSameImpl(const Type* that, IsSameCache*) const { in IsSameImpl() argument
297 bool Float::IsSameImpl(const Type* that, IsSameCache*) const { in IsSameImpl() argument
317 bool Vector::IsSameImpl(const Type* that, IsSameCache* seen) const { in IsSameImpl() argument
343 bool Matrix::IsSameImpl(const Type* that, IsSameCache* seen) const { in IsSameImpl() argument
377 bool Image::IsSameImpl(const Type* that, IsSameCache* seen) const { in IsSameImpl() argument
401 bool SampledImage::IsSameImpl(const Type* that, IsSameCache* seen) const { in IsSameImpl() argument
427 bool Array::IsSameImpl(const Type* that, IsSameCache* seen) const { in IsSameImpl() argument
466 bool RuntimeArray::IsSameImpl(const Type* that, IsSameCache* seen) const { in IsSameImpl() argument
505 bool Struct::IsSameImpl(const Type* that, IsSameCache* seen) const { in IsSameImpl() argument
547 bool Opaque::IsSameImpl(const Type* that, IsSameCache*) const { in IsSameImpl() argument
[all …]
/external/webrtc/modules/desktop_capture/linux/wayland/test/
Dtest_screencast_stream_provider.cc197 TestScreenCastStreamProvider* that = in OnCoreError() local
210 TestScreenCastStreamProvider* that = in OnStreamStateChanged() local
251 TestScreenCastStreamProvider* that = in OnStreamParamChanged() local
293 TestScreenCastStreamProvider* that = in OnStreamAddBuffer() local
345 TestScreenCastStreamProvider* that = in OnStreamRemoveBuffer() local
/external/skia/include/core/
DSkRefCnt.h231 sk_sp(const sk_sp<T>& that) : fPtr(SkSafeRef(that.get())) {} in sk_sp()
234 sk_sp(const sk_sp<U>& that) : fPtr(SkSafeRef(that.get())) {} in sk_sp()
241 sk_sp(sk_sp<T>&& that) : fPtr(that.release()) {} in sk_sp() function
244 sk_sp(sk_sp<U>&& that) : fPtr(that.release()) {} in sk_sp() function
330 void swap(sk_sp<T>& that) /*noexcept*/ { in swap()
/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/skia/src/core/
DSkDescriptor.cpp147 SkAutoDescriptor::SkAutoDescriptor(const SkAutoDescriptor& that) { in SkAutoDescriptor()
150 SkAutoDescriptor& SkAutoDescriptor::operator=(const SkAutoDescriptor& that) { in operator =()
154 SkAutoDescriptor::SkAutoDescriptor(SkAutoDescriptor&& that) { in SkAutoDescriptor() function in SkAutoDescriptor
162 SkAutoDescriptor& SkAutoDescriptor::operator=(SkAutoDescriptor&& that) { in operator =()

12345678910>>...31