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

1 2 3 4 5 6 7 8 91011>>

  /toolchain/binutils/binutils-2.25/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.25/gas/testsuite/gas/mips/
24k-branch-delay-1.s 1 # Test that we don't move store into delay slots
  /toolchain/binutils/binutils-2.25/gas/testsuite/gas/mmix/
loc-1.s 1 # Check that we don't get anything strange from a single LOC to data and a
err-bpo6.s 3 # Test that we handle COMM-type symbols with base-plus-offset relocs, but
4 # that we don't merge ones that may be separately merged with other
  /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_;
  /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...]
  /toolchain/binutils/binutils-2.25/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/update_engine/payload_consumer/
install_plan.cc 42 bool InstallPlan::operator==(const InstallPlan& that) const {
43 return ((is_resume == that.is_resume) &&
44 (payload_type == that.payload_type) &&
45 (download_url == that.download_url) &&
46 (payload_size == that.payload_size) &&
47 (payload_hash == that.payload_hash) &&
48 (metadata_size == that.metadata_size) &&
49 (metadata_signature == that.metadata_signature) &&
50 (source_slot == that.source_slot) &&
51 (target_slot == that.target_slot) &
    [all...]
  /external/pdfium/core/fxcrt/
cfx_retain_ptr.h 2 // Use of this source code is governed by a BSD-style license that can be
24 CFX_RetainPtr(const CFX_RetainPtr& that) : CFX_RetainPtr(that.Get()) {}
25 CFX_RetainPtr(CFX_RetainPtr&& that) { Swap(that); }
31 CFX_RetainPtr(const CFX_RetainPtr<U>& that) : CFX_RetainPtr(that.Get()) {}
45 void Swap(CFX_RetainPtr& that) { m_pObj.swap(that.m_pObj); }
51 CFX_RetainPtr& operator=(const CFX_RetainPtr& that) {
    [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
  /toolchain/binutils/binutils-2.25/gas/testsuite/gas/mt/
misc.s 1 ; Check that register names, both upper and lower case work and that
15 ; Check that the range of legal operand values is accepted.

Completed in 356 milliseconds

1 2 3 4 5 6 7 8 91011>>