Searched defs:other (Results 1 - 25 of 74) 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/runtime/
H A Dplugin.h26 // By the time this has been called the runtime has been fully initialized but not other native
59 Plugin(const Plugin& other);
62 Plugin(Plugin&& other) argument
63 : library_(other.library_),
64 dlopen_handle_(other.dlopen_handle_) {
65 other.dlopen_handle_ = nullptr;
H A Dplugin.cc32 Plugin::Plugin(const Plugin& other) : library_(other.library_), dlopen_handle_(nullptr) { argument
33 if (other.IsLoaded()) {
/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/tools/ahat/src/heapdump/
H A DValue.java126 @Override public boolean equals(Object other) { argument
127 if (other instanceof Value) {
128 Value value = (Value)other;
/art/compiler/utils/
H A Dmanaged_register.h53 constexpr ManagedRegister(const ManagedRegister& other) = default; member in class:art::ManagedRegister
55 ManagedRegister& operator=(const ManagedRegister& other) = default; member in class:art::ManagedRegister
65 constexpr bool Equals(const ManagedRegister& other) const {
66 return id_ == other.id_;
95 ManagedRegisterSpill(const ManagedRegister& other, uint32_t size, uint32_t spill_offset) argument
96 : ManagedRegister(other), size_(size), spill_offset_(spill_offset) { }
98 explicit ManagedRegisterSpill(const ManagedRegister& other) argument
99 : ManagedRegister(other), size_(-1), spill_offset_(-1) { }
101 ManagedRegisterSpill(const ManagedRegister& other, int32_t size) argument
102 : ManagedRegister(other), size
[all...]
/art/runtime/base/
H A Ddchecked_vector.h147 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 Dtransform_iterator.h65 TransformIterator(const TransformIterator<OtherBI, Function>& other) // NOLINT, implicit argument
66 : data_(other.base(), other.GetFunction()) {
123 difference_type operator-(const TransformIterator& other) const {
128 return base() - other.base();
/art/runtime/base/unix_file/
H A Dfd_file.h49 FdFile(FdFile&& other) argument
50 : guard_state_(other.guard_state_),
51 fd_(other.fd_),
52 file_path_(std::move(other.file_path_)),
53 auto_close_(other.auto_close_),
54 read_only_mode_(other.read_only_mode_) {
55 other.Release(); // Release the src.
59 FdFile& operator=(FdFile&& other);

Completed in 395 milliseconds

123