HomeSort by relevance Sort by last modified time
    Searched refs:other (Results 401 - 425 of 9229) sorted by null

<<11121314151617181920>>

  /cts/tools/dasm/src/java_cup/
symbol_set.java 24 * @param other the set we are cloning from.
26 public symbol_set(symbol_set other) throws internal_error
28 not_null(other);
29 _all = (Hashtable)other._all.clone();
70 * @param other the set we are testing against.
72 public boolean is_subset_of(symbol_set other) throws internal_error
74 not_null(other);
76 /* walk down our set and make sure every element is in the other */
78 if (!other.contains((symbol)e.nextElement()))
88 * @param other the set we are are testing against
    [all...]
  /dalvik/dexgen/src/com/android/dexgen/rop/cst/
Constant.java 48 public final int compareTo(Constant other) {
50 Class otherClazz = other.getClass();
56 return compareTo0(other);
63 * @param other {@code non-null;} the instance to compare to
67 protected abstract int compareTo0(Constant other);
  /dalvik/dx/src/com/android/dx/rop/cst/
Constant.java 48 public final int compareTo(Constant other) {
50 Class otherClazz = other.getClass();
56 return compareTo0(other);
63 * @param other {@code non-null;} the instance to compare to
67 protected abstract int compareTo0(Constant other);
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/test/crashers/
gc_has_finalizer.py 21 def __eq__(self, other):
22 del self.other
30 a.other = b
31 b.other = a
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/util/
Memoable.java 22 * @param other an object originally {@link #copy() copied} from an object of the same type as this instance.
24 * @throws MemoableResetException if the <b>other</b> parameter is in some other way invalid.
26 void reset(Memoable other);
  /external/eigen/Eigen/src/Core/
Assign.h 20 ::lazyAssign(const DenseBase<OtherDerived>& other)
30 eigen_assert(rows() == other.rows() && cols() == other.cols());
31 internal::call_assignment_no_alias(derived(),other.derived());
39 EIGEN_STRONG_INLINE Derived& DenseBase<Derived>::operator=(const DenseBase<OtherDerived>& other)
41 internal::call_assignment(derived(), other.derived());
47 EIGEN_STRONG_INLINE Derived& DenseBase<Derived>::operator=(const DenseBase& other)
49 internal::call_assignment(derived(), other.derived());
55 EIGEN_STRONG_INLINE Derived& MatrixBase<Derived>::operator=(const MatrixBase& other)
57 internal::call_assignment(derived(), other.derived())
    [all...]
  /external/libchrome/base/trace_event/
memory_allocator_dump_guid.h 34 bool operator==(const MemoryAllocatorDumpGuid& other) const {
35 return guid_ == other.guid_;
38 bool operator!=(const MemoryAllocatorDumpGuid& other) const {
39 return !(*this == other);
  /external/nist-sip/java/gov/nist/javax/sip/
LogRecord.java 12 public abstract boolean equals(Object other);
  /external/pdfium/core/fpdfdoc/
cpvt_secprops.h 20 CPVT_SecProps(const CPVT_SecProps& other)
21 : fLineLeading(other.fLineLeading),
22 fLineIndent(other.fLineIndent),
23 nAlignment(other.nAlignment) {}
  /external/skia/src/core/
SkMD5.h 26 bool operator ==(Digest const& other) const {
27 return 0 == memcmp(data, other.data, sizeof(data));
29 bool operator !=(Digest const& other) const { return !(*this == other); }
  /external/smali/dexlib2/src/main/java/org/jf/dexlib2/base/
BaseTryBlock.java 13 * in the documentation and/or other materials provided with the
40 TryBlock other = (TryBlock)o; local
41 return getStartCodeAddress() == other.getStartCodeAddress() &&
42 getCodeUnitCount() == other.getCodeUnitCount() &&
43 getExceptionHandlers().equals(other.getExceptionHandlers());
  /external/v8/tools/clang/rewrite_to_chrome_style/tests/
namespaces-expected.cc 30 namespace other { namespace
38 } // namespace other
46 other::foo();
48 other::blink::foo();
49 other::WTF::foo();
namespaces-original.cc 30 namespace other { namespace
38 } // namespace other
46 other::foo();
48 other::blink::foo();
49 other::WTF::foo();
  /frameworks/native/include/input/
DisplayViewport.h 51 bool operator==(const DisplayViewport& other) const {
52 return displayId == other.displayId
53 && orientation == other.orientation
54 && logicalLeft == other.logicalLeft
55 && logicalTop == other.logicalTop
56 && logicalRight == other.logicalRight
57 && logicalBottom == other.logicalBottom
58 && physicalLeft == other.physicalLeft
59 && physicalTop == other.physicalTop
60 && physicalRight == other.physicalRigh
    [all...]
  /frameworks/native/libs/vr/libpdx/private/pdx/
channel_handle.h 53 ChannelHandle(ChannelHandle&& other) : ChannelHandleBase{other.value_} {
54 other.value_ = kEmptyHandle;
60 ChannelHandle& operator=(ChannelHandle&& other) {
61 value_ = other.value_;
62 other.value_ = kEmptyHandle;
77 ChannelHandle(ChannelHandle&& other)
78 : ChannelHandleBase{other.value_}, manager_{other.manager_} {
79 other.manager_ = nullptr
    [all...]
  /frameworks/support/core-utils/api23/android/support/v4/print/
PrintHelperApi23.java 29 protected PrintAttributes.Builder copyAttributes(PrintAttributes other) {
30 PrintAttributes.Builder b = super.copyAttributes(other);
32 if (other.getDuplexMode() != 0) {
33 b.setDuplexMode(other.getDuplexMode());
  /system/chre/util/include/chre/util/
optional.h 64 * @param other The other object to move from.
67 Optional<ObjectType>& operator=(ObjectType&& other);
70 * Performs a move assignment from one optional to another. The other is left
73 * @param other The other object to move.
76 Optional<ObjectType>& operator=(Optional<ObjectType>&& other);
82 * @param other The other object to copy from.
85 Optional<ObjectType>& operator=(const ObjectType& other);
    [all...]
  /system/libvintf/
ManifestHal.cpp 34 bool ManifestHal::operator==(const ManifestHal &other) const {
35 if (format != other.format)
37 if (name != other.name)
39 if (versions != other.versions)
  /art/tools/checker/common/
mixins.py 18 def __eq__(self, other):
19 return isinstance(other, self.__class__) \
20 and self.__dict__ == other.__dict__
  /external/clang/test/SemaCXX/
cxx11-unused.cpp 13 A(const A &other) = delete; member in class:A
30 B(const B &other);
33 B::B(const B &other) = default; member in class:B
  /external/fmtlib/test/
mock-allocator.h 14 and/or other materials provided with the distribution.
53 AllocatorRef(const AllocatorRef &other) : alloc_(other.alloc_) {}
55 AllocatorRef& operator=(const AllocatorRef &other) {
56 alloc_ = other.alloc_;
62 void move(AllocatorRef &other) {
63 alloc_ = other.alloc_;
64 other.alloc_ = 0;
68 AllocatorRef(AllocatorRef &&other) {
69 move(other);
    [all...]
  /external/libchrome/base/task_scheduler/
sequence_sort_key.cc 15 bool SequenceSortKey::operator<(const SequenceSortKey& other) const {
16 // This SequenceSortKey is considered less important than |other| if it has a
18 // later than |other|'s.
20 static_cast<int>(priority_) - static_cast<int>(other.priority_);
25 return next_task_sequenced_time_ > other.next_task_sequenced_time_;
  /external/libmojo/mojo/public/cpp/bindings/
associated_interface_ptr_info.h 24 AssociatedInterfacePtrInfo(AssociatedInterfacePtrInfo&& other)
25 : handle_(std::move(other.handle_)), version_(other.version_) {
26 other.version_ = 0u;
35 AssociatedInterfacePtrInfo& operator=(AssociatedInterfacePtrInfo&& other) {
36 if (this != &other) {
37 handle_ = std::move(other.handle_);
38 version_ = other.version_;
39 other.version_ = 0u;
58 bool Equals(const AssociatedInterfacePtrInfo& other) const
    [all...]
  /external/syslinux/gpxe/src/core/
filter.c 37 struct xfer_interface *other = filter_other_half ( xfer ); local
39 xfer_close ( other, rc );
44 struct xfer_interface *other = filter_other_half ( xfer ); local
46 return xfer_vredirect ( other, type, args );
50 struct xfer_interface *other = filter_other_half ( xfer ); local
52 return xfer_window ( other );
57 struct xfer_interface *other = filter_other_half ( xfer ); local
59 return xfer_alloc_iob ( other, len );
64 struct xfer_interface *other = filter_other_half ( xfer ); local
66 return xfer_deliver_iob_meta ( other, iobuf, meta )
71 struct xfer_interface *other = filter_other_half ( xfer ); local
    [all...]
  /libcore/ojluni/src/main/java/sun/nio/fs/
AbstractPath.java 42 public final boolean startsWith(String other) {
43 return startsWith(getFileSystem().getPath(other));
47 public final boolean endsWith(String other) {
48 return endsWith(getFileSystem().getPath(other));
52 public final Path resolve(String other) {
53 return resolve(getFileSystem().getPath(other));
57 public final Path resolveSibling(Path other) {
58 if (other == null)
61 return (parent == null) ? other : parent.resolve(other);
    [all...]

Completed in 710 milliseconds

<<11121314151617181920>>