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

1 2 3 4 5 67 8 91011>>

  /cts/tools/dasm/src/java_cup/
terminal_set.java 26 * @param other the set we are cloning from.
28 public terminal_set(terminal_set other)
31 not_null(other);
32 _elements = (BitSet)other._elements.clone();
96 * @param other the set we are testing against.
98 public boolean is_subset_of(terminal_set other)
101 not_null(other);
103 /* make a copy of the other set */
104 BitSet copy_other = (BitSet)other._elements.clone();
110 return copy_other.equals(other._elements)
    [all...]
  /frameworks/base/services/core/java/com/android/server/display/
DisplayDeviceInfo.java 68 * and that no other application should be able to interact with it.
128 * Diff result: Other fields differ.
139 * other sources. The name may be localized and displayed to the user.
287 public boolean equals(DisplayDeviceInfo other) {
288 return other != null && diff(other) == 0;
293 * Assumes other is not null.
295 public int diff(DisplayDeviceInfo other) {
297 if (state != other.state) {
300 if (colorMode != other.colorMode)
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/test/
test_binop.py 86 def __add__(self, other):
88 if isint(other):
89 other = Rat(other)
90 if isRat(other):
91 return Rat(self.__num*other.__den + other.__num*self.__den,
92 self.__den*other.__den)
93 if isnum(other):
94 return float(self) + other
    [all...]
  /prebuilts/gdb/darwin-x86/lib/python2.7/test/
test_binop.py 86 def __add__(self, other):
88 if isint(other):
89 other = Rat(other)
90 if isRat(other):
91 return Rat(self.__num*other.__den + other.__num*self.__den,
92 self.__den*other.__den)
93 if isnum(other):
94 return float(self) + other
    [all...]
  /prebuilts/gdb/linux-x86/lib/python2.7/test/
test_binop.py 86 def __add__(self, other):
88 if isint(other):
89 other = Rat(other)
90 if isRat(other):
91 return Rat(self.__num*other.__den + other.__num*self.__den,
92 self.__den*other.__den)
93 if isnum(other):
94 return float(self) + other
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/
test_binop.py 86 def __add__(self, other):
88 if isint(other):
89 other = Rat(other)
90 if isRat(other):
91 return Rat(self.__num*other.__den + other.__num*self.__den,
92 self.__den*other.__den)
93 if isnum(other):
94 return float(self) + other
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/
test_binop.py 86 def __add__(self, other):
88 if isint(other):
89 other = Rat(other)
90 if isRat(other):
91 return Rat(self.__num*other.__den + other.__num*self.__den,
92 self.__den*other.__den)
93 if isnum(other):
94 return float(self) + other
    [all...]
  /art/compiler/utils/mips64/
managed_register_mips64.cc 24 bool Mips64ManagedRegister::Overlaps(const Mips64ManagedRegister& other) const {
25 if (IsNoRegister() || other.IsNoRegister()) return false;
27 CHECK(other.IsValidManagedRegister());
28 if (Equals(other)) return true;
29 if (IsFpuRegister() && other.IsVectorRegister()) {
30 return (AsFpuRegister() == other.AsOverlappingFpuRegister());
31 } else if (IsVectorRegister() && other.IsFpuRegister()) {
32 return (AsVectorRegister() == other.AsOverlappingVectorRegister());
  /external/chromium-trace/catapult/telemetry/telemetry/core/
os_version.py 14 def __lt__(self, other):
15 return self._sortable_name < other._sortable_name
17 def __gt__(self, other):
18 return self._sortable_name > other._sortable_name
20 def __le__(self, other):
21 return self._sortable_name <= other._sortable_name
23 def __ge__(self, other):
24 return self._sortable_name >= other._sortable_name
  /external/clang/test/SemaTemplate/
typo-dependent-name.cpp 15 bool f(T other) {
16 return this->inner < other;
  /external/deqp/external/vulkancts/modules/vulkan/draw/
vktDrawIndexedTest.hpp 41 DrawIndexedTests (const DrawIndexedTests &other);
42 DrawIndexedTests& operator= (const DrawIndexedTests &other);
vktDrawIndirectTest.hpp 41 IndirectDrawTests (const IndirectDrawTests &other);
42 IndirectDrawTests& operator= (const IndirectDrawTests &other);
vktDrawInstancedTests.hpp 41 InstancedTests (const InstancedTests &other);
42 InstancedTests& operator= (const InstancedTests &other);
vktDrawShaderDrawParametersTests.hpp 40 ShaderDrawParametersTests (const ShaderDrawParametersTests& other);
41 ShaderDrawParametersTests& operator= (const ShaderDrawParametersTests& other);
vktDrawSimpleTest.hpp 41 SimpleDrawTests (const SimpleDrawTests &other);
42 SimpleDrawTests& operator= (const SimpleDrawTests &other);
  /external/deqp/external/vulkancts/modules/vulkan/dynamic_state/
vktDynamicStateCBTests.hpp 43 DynamicStateCBTests (const DynamicStateCBTests &other);
44 DynamicStateCBTests& operator= (const DynamicStateCBTests &other);
vktDynamicStateDSTests.hpp 43 DynamicStateDSTests (const DynamicStateDSTests& other);
44 DynamicStateDSTests& operator= (const DynamicStateDSTests& other);
vktDynamicStateGeneralTests.hpp 43 DynamicStateGeneralTests (const DynamicStateGeneralTests& other);
44 DynamicStateGeneralTests& operator= (const DynamicStateGeneralTests& other);
vktDynamicStateRSTests.hpp 43 DynamicStateRSTests (const DynamicStateRSTests& other);
44 DynamicStateRSTests& operator= (const DynamicStateRSTests& other);
vktDynamicStateVPTests.hpp 43 DynamicStateVPTests (const DynamicStateVPTests& other);
44 DynamicStateVPTests& operator= (const DynamicStateVPTests& other);
  /external/deqp/external/vulkancts/modules/vulkan/query_pool/
vktQueryPoolOcclusionTests.hpp 42 QueryPoolOcclusionTests (const QueryPoolOcclusionTests &other);
43 QueryPoolOcclusionTests& operator= (const QueryPoolOcclusionTests &other);
  /external/deqp/framework/randomshaders/
rsgProgramGenerator.hpp 42 ProgramGenerator (const ProgramGenerator& other);
43 ProgramGenerator& operator= (const ProgramGenerator& other);
  /external/deqp/modules/gles2/accuracy/
es2aAccuracyTests.hpp 45 AccuracyTests (const AccuracyTests& other);
46 AccuracyTests& operator= (const AccuracyTests& other);
es2aTextureFilteringTests.hpp 45 TextureFilteringTests (const TextureFilteringTests& other);
46 TextureFilteringTests& operator= (const TextureFilteringTests& other);
es2aTextureMipmapTests.hpp 45 TextureMipmapTests (const TextureMipmapTests& other);
46 TextureMipmapTests& operator= (const TextureMipmapTests& other);

Completed in 1119 milliseconds

1 2 3 4 5 67 8 91011>>