Searched defs:other (Results 1 - 25 of 55) sorted by relevance

123

/art/test/536-checker-needs-access-check/src/other/
H A DInaccessibleClass.java17 package other; package
H A DInaccessibleClassProxy.java17 package other; package
/art/test/536-checker-needs-access-check/src2/other/
H A DInaccessibleClass.java17 package other; package
H A DInaccessibleClassProxy.java17 package other; package
/art/test/537-checker-inline-and-unverified/src/other/
H A DInaccessibleClass.java17 package other; package
/art/test/537-checker-inline-and-unverified/src2/other/
H A DInaccessibleClass.java17 package other; package
/art/test/601-method-access/src/other/
H A DPublicClass.java17 package other; package
19 // Class that makes the ProtectedClass sub-classable by classes outside of package other.
H A DProtectedClass.java17 package other; package
/art/test/075-verification-error/src/other/
H A DInaccessibleClass.java17 package other; package
H A DInaccessibleMethod.java17 package other; package
H A DMutant.java17 package other; package
/art/test/075-verification-error/src2/other/
H A DInaccessibleClass.java17 package other; package
H A DInaccessibleMethod.java17 package other; package
H A DMutant.java17 package other; package
/art/tools/dexfuzz/src/dexfuzz/rawdex/
H A DTypeList.java57 public boolean comesBefore(TypeList other) { argument
58 int checkSize = Math.min(size, other.size);
60 if (list[i].typeIdx < other.list[i].typeIdx) {
62 } else if (list[i].typeIdx > other.list[i].typeIdx) {
66 if (size == other.size) {
/art/cmdline/
H A Dcmdline_parse_result.h114 static CmdlineParseResult<T> CastError(const CmdlineParseResult<T2>& other) { argument
115 assert(other.IsError());
116 return CmdlineParseResult<T>(other.GetStatus());
/art/test/050-sync-test/src/
H A DMain.java139 SleepyThread(SleepyThread other) { argument
140 mOther = other;
182 System.out.println("interrupting other (isAlive="
/art/runtime/base/
H A Ddchecked_vector.h149 void swap(dchecked_vector& other) { Base::swap(other); } argument
H A Ddebug_stack.h58 DebugStackReferenceImpl(const DebugStackReferenceImpl& other) = default; member in class:art::DebugStackReferenceImpl
59 DebugStackReferenceImpl& operator=(const DebugStackReferenceImpl& other) = default; member in class:art::DebugStackReferenceImpl
67 DebugStackIndirectTopRefImpl(const DebugStackIndirectTopRefImpl& other) = default; member in class:art::DebugStackIndirectTopRefImpl
68 DebugStackIndirectTopRefImpl& operator=(const DebugStackIndirectTopRefImpl& other) = default; member in class:art::DebugStackIndirectTopRefImpl
94 DebugStackReferenceImpl(const DebugStackReferenceImpl& other) argument
95 : counter_(other.counter_), ref_count_(counter_->IncrementRefCount()) {
97 DebugStackReferenceImpl& operator=(const DebugStackReferenceImpl& other) { argument
98 CHECK(counter_ == other.counter_);
116 DebugStackIndirectTopRefImpl(const DebugStackIndirectTopRefImpl& other) argument
117 : ref_(other
120 operator =(const DebugStackIndirectTopRefImpl& other) argument
[all...]
H A Darena_containers.h119 typedef ArenaAllocatorAdapter<U> other; typedef in struct:art::ArenaAllocatorAdapter::rebind
128 ArenaAllocatorAdapter(const ArenaAllocatorAdapter<U>& other) argument
129 : ArenaAllocatorAdapterKind(other),
130 arena_allocator_(other.arena_allocator_) {
156 typedef ArenaAllocatorAdapter<U> other; typedef in struct:art::ArenaAllocatorAdapter::rebind
164 ArenaAllocatorAdapter(const ArenaAllocatorAdapter<U>& other) argument
165 : ArenaAllocatorAdapterKind(other),
166 arena_allocator_(other.arena_allocator_) {
H A Dscoped_arena_containers.h79 typedef ScopedArenaAllocatorAdapter<U> other; typedef in struct:art::ScopedArenaAllocatorAdapter::rebind
90 ScopedArenaAllocatorAdapter(const ScopedArenaAllocatorAdapter<U>& other) argument
91 : DebugStackReference(other),
92 DebugStackIndirectTopRef(other),
93 ArenaAllocatorAdapterKind(other),
94 arena_stack_(other.arena_stack_) {
122 typedef ScopedArenaAllocatorAdapter<U> other; typedef in struct:art::ScopedArenaAllocatorAdapter::rebind
133 ScopedArenaAllocatorAdapter(const ScopedArenaAllocatorAdapter<U>& other) argument
134 : DebugStackReference(other),
135 DebugStackIndirectTopRef(other),
[all...]
/art/compiler/optimizing/
H A Dnodes_arm64.h60 HArm64DataProcWithShifterOp* other = other_instr->AsArm64DataProcWithShifterOp(); variable
61 return instr_kind_ == other->instr_kind_ &&
62 op_kind_ == other->op_kind_ &&
63 shift_amount_ == other->shift_amount_;
109 bool InstructionDataEquals(HInstruction* other ATTRIBUTE_UNUSED) const OVERRIDE { return true; }
H A Dlocations.h87 Location(const Location& other) : value_(other.value_) {} argument
89 Location& operator=(const Location& other) { argument
90 value_ = other.value_;
281 bool Equals(Location other) const {
282 return value_ == other.value_;
285 bool Contains(Location other) const {
286 if (Equals(other)) {
289 return ToLow().Equals(other) || ToHigh().Equals(other);
[all...]
/art/compiler/utils/
H A Dmanaged_register.h50 ManagedRegister(const ManagedRegister& other) : id_(other.id_) { } argument
52 ManagedRegister& operator=(const ManagedRegister& other) { argument
53 id_ = other.id_;
65 bool Equals(const ManagedRegister& other) const {
66 return id_ == other.id_;
92 ManagedRegisterSpill(const ManagedRegister& other, uint32_t size, uint32_t spill_offset) argument
93 : ManagedRegister(other), size_(size), spill_offset_(spill_offset) { }
95 explicit ManagedRegisterSpill(const ManagedRegister& other) argument
96 : ManagedRegister(other), size
98 ManagedRegisterSpill(const ManagedRegister& other, int32_t size) argument
[all...]
H A Darray_ref.h33 * or any other contiguous chunk of memory but that memory must remain valid,
100 ArrayRef& operator=(const ArrayRef& other) { argument
101 array_ = other.array_;
102 size_ = other.size_;
108 operator=(const ArrayRef<U>& other) { argument
109 return *this = ArrayRef(other);

Completed in 488 milliseconds

123