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

<<21222324252627282930>>

  /external/deqp/executor/
xeTestCaseListParser.hpp 45 TestCaseListParser (const TestCaseListParser& other);
46 TestCaseListParser& operator= (const TestCaseListParser& other);
  /external/deqp/framework/delibs/decpp/
deDynamicLibrary.hpp 44 DynamicLibrary (const DynamicLibrary& other); // Not allowed!
45 DynamicLibrary& operator= (const DynamicLibrary& other); // Not allowed!
deThread.hpp 59 Thread (const Thread& other); // Not allowed!
60 Thread& operator= (const Thread& other); // Not allowed!
deThreadLocal.hpp 45 ThreadLocal (const ThreadLocal& other); // Not allowed!
46 ThreadLocal& operator= (const ThreadLocal& other); // Not allowed!
  /external/deqp/framework/randomshaders/
rsgShaderGenerator.hpp 45 ShaderGenerator (const ShaderGenerator& other);
46 ShaderGenerator& operator= (const ShaderGenerator& other);
  /external/deqp/modules/gles2/functional/
es2fBufferObjectQueryTests.hpp 52 BufferObjectQueryTests (const BufferObjectQueryTests& other);
53 BufferObjectQueryTests& operator= (const BufferObjectQueryTests& other);
es2fFloatStateQueryTests.hpp 54 FloatStateQueryTests (const FloatStateQueryTests& other);
55 FloatStateQueryTests& operator= (const FloatStateQueryTests& other);
es2fIntegerStateQueryTests.hpp 54 IntegerStateQueryTests (const IntegerStateQueryTests& other);
55 IntegerStateQueryTests& operator= (const IntegerStateQueryTests& other);
es2fTextureStateQueryTests.hpp 53 TextureStateQueryTests (const TextureStateQueryTests& other);
54 TextureStateQueryTests& operator= (const TextureStateQueryTests& other);
  /external/deqp/modules/gles3/functional/
es3fBufferObjectQueryTests.hpp 53 BufferObjectQueryTests (const BufferObjectQueryTests& other);
54 BufferObjectQueryTests& operator= (const BufferObjectQueryTests& other);
es3fInteger64StateQueryTests.hpp 54 Integer64StateQueryTests (const Integer64StateQueryTests& other);
55 Integer64StateQueryTests& operator= (const Integer64StateQueryTests& other);
  /external/deqp/modules/gles31/functional/
es31fShaderAtomicOpTests.hpp 53 ShaderAtomicOpTests (const ShaderAtomicOpTests& other);
54 ShaderAtomicOpTests& operator= (const ShaderAtomicOpTests& other);
es31fUniformLocationTests.hpp 52 UniformLocationTests (const UniformLocationTests& other);
53 UniformLocationTests& operator= (const UniformLocationTests& other);
  /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;

Completed in 780 milliseconds

<<21222324252627282930>>