HomeSort by relevance Sort by last modified time
    Searched refs:that (Results 1 - 25 of 15443) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /toolchain/binutils/binutils-2.27/gas/testsuite/gas/cris/
pic-err-2.s 1 ; Check that --pic isn't recognized for a.out files, specified by emulation.
pic-err-3.s 1 ; Check that --pic isn't recognized for a.out files, with a.out the default.
pushpopv32.s 1 ; Check that push and pop builtin "macros" aren't recognized for
tls-err-3.s 1 ; Check that TLS PIC suffixes aren't accepted when non-PIC.
  /toolchain/binutils/binutils-2.27/gas/testsuite/gas/mips/
24k-branch-delay-1.s 1 # Test that we don't move store into delay slots
  /toolchain/binutils/binutils-2.27/gas/testsuite/gas/mmix/
loc-1.s 1 # Check that we don't get anything strange from a single LOC to data and a
  /development/tools/bugreport/src/com/android/bugreport/stacks/
KernelStackFrameSnapshot.java 31 public KernelStackFrameSnapshot(KernelStackFrameSnapshot that) {
32 super(that);
33 this.syscall = that.syscall;
34 this.offset0 = that.offset0;
35 this.offset1 = that.offset1;
NativeStackFrameSnapshot.java 34 final NativeStackFrameSnapshot that = new NativeStackFrameSnapshot(); local
35 that.library = this.library;
36 that.symbol = this.symbol;
37 that.offset = this.offset;
38 return that;
JavaStackFrameSnapshot.java 43 public JavaStackFrameSnapshot(JavaStackFrameSnapshot that) {
44 super(that);
45 this.packageName = that.packageName;
46 this.className = that.className;
47 this.methodName = that.methodName;
48 this.sourceFile = that.sourceFile;
49 this.sourceLine = that.sourceLine;
50 this.language = that.language;
51 final int N = that.locks.size();
53 this.locks.add(that.locks.get(i).clone())
    [all...]
LockSnapshot.java 41 public LockSnapshot(LockSnapshot that) {
42 this.type = that.type;
43 this.address = that.address;
44 this.packageName = that.packageName;
45 this.className = that.className;
46 this.threadId = that.threadId;
54 public boolean equals(LockSnapshot that) {
55 return this.address == that.address
56 || (this.address != null && that.address != null
57 && this.address.equals(that.address))
    [all...]
ThreadSnapshot.java 64 public ThreadSnapshot(ThreadSnapshot that) {
65 this.name = that.name;
66 this.daemon = that.daemon;
67 this.priority = that.priority;
68 this.tid = that.tid;
69 this.sysTid = that.sysTid;
70 this.vmState = that.vmState;
71 int N = that.attributeText.size();
73 this.attributeText.add(that.attributeText.get(i));
75 this.heldMutexes = that.heldMutexes
    [all...]
  /external/libchrome/dbus/
object_path.cc 2 // Use of this source code is governed by a BSD-style license that can be
17 bool ObjectPath::operator<(const ObjectPath& that) const {
18 return value_ < that.value_;
21 bool ObjectPath::operator==(const ObjectPath& that) const {
22 return value_ == that.value_;
25 bool ObjectPath::operator!=(const ObjectPath& that) const {
26 return value_ != that.value_;
  /external/pdfium/core/fxcrt/
unowned_ptr.h 2 // Use of this source code is governed by a BSD-style license that can be
13 // UnownedPtr is a smart pointer class that behaves very much like a
18 // explaining that is it // Not owned. Additionally, an attempt to delete
23 // which checks that the object being pointed to is still alive.
27 // programming required is that the lifetime an object containing an
30 // The same checks are also performed at assignment time to prove that the
43 UnownedPtr(const UnownedPtr& that) : UnownedPtr(that.Get()) {}
54 UnownedPtr& operator=(T* that) {
56 m_pObj = that;
    [all...]
  /packages/apps/Settings/src/com/android/settings/notification/
ZenRuleInfo.java 12 ZenRuleInfo that = (ZenRuleInfo) o;
14 if (isSystem != that.isSystem) return false;
15 if (ruleInstanceLimit != that.ruleInstanceLimit) return false;
16 if (packageName != null ? !packageName.equals(that.packageName) : that.packageName != null)
18 if (title != null ? !title.equals(that.title) : that.title != null) return false;
20 that.settingsAction) : that.settingsAction != null) return false;
22 that.configurationActivity) : that.configurationActivity != null) return false
    [all...]
  /external/annotation-tools/scene-lib/src/annotations/util/
EqualByStringRepresentation.java 8 * {@link EqualByStringRepresentation} is a "mix-in" class for objects that are
24 public final boolean equals(Object that) {
25 return that != null && this.getClass() == that.getClass()
26 && this.toString().equals(that.toString());
  /toolchain/binutils/binutils-2.27/gas/testsuite/gas/sh/sh64/
err-4.s 4 ! Check that we can't have different ISA:s in the same section if disallowed.
  /cts/tests/tests/view/src/android/view/cts/
MotionEventUtils.java 57 public void verifyMatches(MotionEvent that, int pointerIndex) {
59 that.getPointerId(pointerIndex), this.id);
61 that.getToolType(pointerIndex), this.toolType);
64 public void verifyMatchesPointerProperties(PointerProperties that) {
65 assertEquals("Pointer ID should be the same", that.id, this.id);
66 assertEquals("Tool type should be the same", that.toolType, this.toolType);
70 final PointerProperties that = new PointerProperties(); local
71 motionEvent.getPointerProperties(pointerIndex, that);
73 verifyMatchesPointerProperties(that);
129 public void verifyMatches(MotionEvent that) {
379 final PointerCoords that = new PointerCoords(); local
387 final PointerCoords that = new PointerCoords(); local
    [all...]
  /system/core/base/include/android-base/
scopeguard.h 25 // ScopeGuard ensures that the specified functor is executed no matter how the
32 ScopeGuard(ScopeGuard&& that) : f_(std::move(that.f_)), active_(that.active_) {
33 that.active_ = false;
37 ScopeGuard(ScopeGuard<Functor>&& that) : f_(std::move(that.f_)), active_(that.active_) {
38 that.active_ = false;
48 void operator=(ScopeGuard&& that) = delete member in class:android::base::ScopeGuard
    [all...]
  /external/eigen/failtest/
failtest_sanity_check.cpp 2 This is just some text that won't compile as a C++ file, as a basic sanity check for failtest.
  /external/llvm/test/MC/Mips/mips2/
invalid-mips32r2-xfail.s 1 # Instructions that are supposed to be invalid but currently aren't
  /external/llvm/test/MC/Mips/mips32/
invalid-mips32r2-xfail.s 1 # Instructions that are supposed to be invalid but currently aren't
  /external/llvm/test/MC/Mips/mips4/
invalid-mips64r2-xfail.s 1 # Instructions that are supposed to be invalid but currently aren't
  /external/llvm/test/MC/Mips/mips5/
invalid-mips64r2-xfail.s 1 # Instructions that are supposed to be invalid but currently aren't
  /external/llvm/test/MC/Mips/mips64/
invalid-mips64r2-xfail.s 1 # Instructions that are supposed to be invalid but currently aren't
  /frameworks/base/cmds/statsd/src/config/
ConfigKey.h 36 explicit ConfigKey(const ConfigKey& that);
47 inline bool operator<(const ConfigKey& that) const {
48 if (mUid < that.mUid) {
51 if (mUid > that.mUid) {
54 return mId < that.mId;
57 inline bool operator==(const ConfigKey& that) const {
58 return mUid == that.mUid && mId == that.mId;

Completed in 617 milliseconds

1 2 3 4 5 6 7 8 91011>>