HomeSort by relevance Sort by last modified time
    Searched refs:other (Results 526 - 550 of 8492) sorted by null

<<21222324252627282930>>

  /external/doclava/src/com/google/doclava/
Sorter.java 28 public int compareTo(Object other) {
29 return label.compareToIgnoreCase(((Sorter) other).label);
  /external/eigen/Eigen/src/plugins/
CommonCwiseBinaryOps.h 13 /** \returns an expression of the difference of \c *this and \a other
21 /** \returns an expression of the sum of \c *this and \a other
29 /** \returns an expression of a custom coefficient-wise operator \a func of *this and \a other
42 binaryExpr(const EIGEN_CURRENT_STORAGE_BASE_CLASS<OtherDerived> &other, const CustomBinaryOp& func = CustomBinaryOp()) const
44 return CwiseBinaryOp<CustomBinaryOp, const Derived, const OtherDerived>(derived(), other.derived(), func);
  /external/guava/guava/src/com/google/common/collect/
AbstractRangeSet.java 56 public boolean enclosesAll(RangeSet<C> other) {
57 for (Range<C> range : other.asRanges()) {
66 public void addAll(RangeSet<C> other) {
67 for (Range<C> range : other.asRanges()) {
73 public void removeAll(RangeSet<C> other) {
74 for (Range<C> range : other.asRanges()) {
87 RangeSet<?> other = (RangeSet<?>) obj; local
88 return this.asRanges().equals(other.asRanges());
  /external/guice/core/src/com/google/inject/matcher/
Matcher.java 35 Matcher<T> and(Matcher<? super T> other);
41 Matcher<T> or(Matcher<? super T> other);
  /external/icu/icu4c/source/common/
mutex.h 59 Mutex(const Mutex &other); // forbid copying of this class
60 Mutex &operator=(const Mutex &other); // forbid copying of this class
  /external/icu/icu4c/source/layout/
CharSubstitutionFilter.h 38 CharSubstitutionFilter(const CharSubstitutionFilter &other); // forbid copying of this class
45 CharSubstitutionFilter &operator=(const CharSubstitutionFilter &other); // forbid copying of this class
GDEFMarkFilter.h 26 GDEFMarkFilter(const GDEFMarkFilter &other); // forbid copying of this class
27 GDEFMarkFilter &operator=(const GDEFMarkFilter &other); // forbid copying of this class
  /external/libchrome/dbus/
file_descriptor.cc 24 FileDescriptor::FileDescriptor(FileDescriptor&& other) : FileDescriptor() {
25 Swap(&other);
33 FileDescriptor& FileDescriptor::operator=(FileDescriptor&& other) {
34 Swap(&other);
62 void FileDescriptor::Swap(FileDescriptor* other) {
63 swap(value_, other->value_);
64 swap(owner_, other->owner_);
65 swap(valid_, other->valid_);
  /external/llvm/test/CodeGen/SystemZ/Large/
branch-range-02.py 39 # ...lots of other blocks...
71 other = 'end' if 2 * i < blocks else 'b0' variable
77 print ' br i1 %%atest%d, label %%%s, label %%%s' % (i, other, next)
  /external/opencv3/modules/stitching/include/opencv2/stitching/detail/
camera.hpp 25 // and/or other materials provided with the distribution.
61 CameraParams(const CameraParams& other);
62 const CameraParams& operator =(const CameraParams& other);
  /external/proguard/src/proguard/
KeepClassSpecification.java 117 KeepClassSpecification other = (KeepClassSpecification)object; local
119 this.markClasses == other.markClasses &&
120 this.markConditionally == other.markConditionally &&
121 this.markDescriptorClasses == other.markDescriptorClasses &&
122 this.allowShrinking == other.allowShrinking &&
123 this.allowOptimization == other.allowOptimization &&
124 this.allowObfuscation == other.allowObfuscation &&
125 super.equals(other);
  /external/proguard/src/proguard/optimize/info/
ClassOptimizationInfo.java 152 public void merge(ClassOptimizationInfo other)
154 this.isInstantiated |= other.isInstantiated;
155 this.isInstanceofed |= other.isInstanceofed;
156 this.isDotClassed |= other.isDotClassed;
157 this.isCaught |= other.isCaught;
158 this.containsStaticInitializer |= other.containsStaticInitializer;
159 this.containsPackageVisibleMembers |= other.containsPackageVisibleMembers;
160 this.invokesPackageVisibleMembers |= other.invokesPackageVisibleMembers;
  /external/slf4j/slf4j-simple/src/test/java/org/slf4j/
SilentPrintStream.java 20 * LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
22 * WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
31 PrintStream other; field in class:SilentPrintStream
35 other = ps;
  /frameworks/av/camera/ndk/impl/
ACameraCaptureSession.h 29 bool operator == (const ACaptureSessionOutput& other) const {
30 return mWindow == other.mWindow;
32 bool operator != (const ACaptureSessionOutput& other) const {
33 return mWindow != other.mWindow;
35 bool operator < (const ACaptureSessionOutput& other) const {
36 return mWindow < other.mWindow;
38 bool operator > (const ACaptureSessionOutput& other) const {
39 return mWindow > other.mWindow;
  /libcore/ojluni/src/main/java/java/util/
OptionalDouble.java 141 * Return the value if present, otherwise return {@code other}.
143 * @param other the value to be returned if there is no value present
144 * @return the value, if present, otherwise {@code other}
146 public double orElse(double other) {
147 return isPresent ? value : other;
151 * Return the value if present, otherwise invoke {@code other} and return
154 * @param other a {@code DoubleSupplier} whose result is returned if no value
156 * @return the value if present otherwise the result of {@code other.getAsDouble()}
157 * @throws NullPointerException if value is not present and {@code other} is
160 public double orElseGet(DoubleSupplier other) {
211 OptionalDouble other = (OptionalDouble) obj; local
    [all...]
OptionalInt.java 142 * Return the value if present, otherwise return {@code other}.
144 * @param other the value to be returned if there is no value present
145 * @return the value, if present, otherwise {@code other}
147 public int orElse(int other) {
148 return isPresent ? value : other;
152 * Return the value if present, otherwise invoke {@code other} and return
155 * @param other a {@code IntSupplier} whose result is returned if no value
157 * @return the value if present otherwise the result of {@code other.getAsInt()}
158 * @throws NullPointerException if value is not present and {@code other} is
161 public int orElseGet(IntSupplier other) {
212 OptionalInt other = (OptionalInt) obj; local
    [all...]
OptionalLong.java 141 * Return the value if present, otherwise return {@code other}.
143 * @param other the value to be returned if there is no value present
144 * @return the value, if present, otherwise {@code other}
146 public long orElse(long other) {
147 return isPresent ? value : other;
151 * Return the value if present, otherwise invoke {@code other} and return
154 * @param other a {@code LongSupplier} whose result is returned if no value
156 * @return the value if present otherwise the result of {@code other.getAsLong()}
157 * @throws NullPointerException if value is not present and {@code other} is
160 public long orElseGet(LongSupplier other) {
211 OptionalLong other = (OptionalLong) obj; local
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.8/x86_64-linux/include/c++/4.8/ext/pb_ds/detail/binomial_heap_/
constructors_destructor_fn_imps.hpp 54 binomial_heap(const PB_DS_CLASS_C_DEC& other)
55 : base_type(other)
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.8/x86_64-linux/include/c++/4.8/ext/pb_ds/detail/hash_fn/
direct_mask_range_hashing_imp.hpp 44 swap(PB_DS_CLASS_C_DEC& other)
45 { mask_based_base::swap(other); }
direct_mod_range_hashing_imp.hpp 44 swap(PB_DS_CLASS_C_DEC& other)
45 { mod_based_base::swap(other); }
mod_based_range_hashing.hpp 56 swap(mod_based_range_hashing& other)
57 { std::swap(m_size, other.m_size); }
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.8/x86_64-linux/include/c++/4.8/ext/pb_ds/detail/list_update_map_/
constructor_destructor_fn_imps.hpp 83 PB_DS_LU_NAME(const PB_DS_CLASS_C_DEC& other) :
88 for (const_iterator it = other.begin(); it != other.end(); ++it)
108 swap(PB_DS_CLASS_C_DEC& other)
111 PB_DS_ASSERT_VALID(other)
112 _GLIBCXX_DEBUG_ONLY(debug_base::swap(other);)
113 std::swap(m_p_l, other.m_p_l);
115 PB_DS_ASSERT_VALID(other)
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/x86_64-linux/include/c++/4.8/ext/pb_ds/detail/binomial_heap_/
constructors_destructor_fn_imps.hpp 54 binomial_heap(const PB_DS_CLASS_C_DEC& other)
55 : base_type(other)
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/x86_64-linux/include/c++/4.8/ext/pb_ds/detail/hash_fn/
direct_mask_range_hashing_imp.hpp 44 swap(PB_DS_CLASS_C_DEC& other)
45 { mask_based_base::swap(other); }
direct_mod_range_hashing_imp.hpp 44 swap(PB_DS_CLASS_C_DEC& other)
45 { mod_based_base::swap(other); }

Completed in 1195 milliseconds

<<21222324252627282930>>