HomeSort by relevance Sort by last modified time
    Searched full:other (Results 226 - 250 of 18848) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /dalvik/dx/tests/097-dex-branch-offset-zero/
info.txt 5 version, so it is possible for this test to spuriously fail if other
  /dalvik/libcore/security/src/main/java/org/bouncycastle/asn1/
DERApplicationSpecific.java 75 DERApplicationSpecific other = (DERApplicationSpecific)o; local
77 if (tag != other.tag)
82 if (octets.length != other.octets.length)
89 if (octets[i] != other.octets[i])
  /device/sample/products/
AndroidProducts.mk 6 # This file may not rely on the value of any variable other than
  /external/clearsilver/dso/
README 10 Linux specific at the moment. Patches to build this on other platforms
  /external/clearsilver/man/man3/
hdf_obj_child.3 28 hdf_obj_child and the other hdf_obj_ functions are
  /external/icu4c/test/perf/usetperf/
bitset.h 35 // TODO add other methods as needed.
  /external/icu4c/test/testdata/
tstfiles.mk 3 # TEST_RES_SOURCE defines data driven tests and other resource files to be included with
  /external/iptables/extensions/
libip6t_eui64.man 4 bit is not compared. This module doesn't match other link layer frame, and
libipt_MIRROR.man 12 avoid loops and other problems.
  /external/openssl/crypto/des/
DES.pm 10 # Other items we are prepared to export if requested
  /external/proguard/src/proguard/evaluation/
Variables.java 90 * given Variables object. The other object may have fewer values, in which
93 public void initialize(Variables other)
95 if (this.size < other.size)
97 throw new IllegalArgumentException("Variable frame is too small ["+this.size+"] compared to other frame ["+other.size+"]");
101 System.arraycopy(other.values, 0, this.values, 0, other.size);
108 * @param clearConflictingOtherVariables specifies whether the other
113 public boolean generalize(Variables other,
116 if (this.size != other.size
287 Variables other = (Variables)object; local
    [all...]
  /external/webkit/WebCore/platform/cf/
SchedulePair.cpp 12 * documentation and/or other materials provided with the distribution.
41 bool SchedulePair::operator==(const SchedulePair& other) const
43 if (runLoop() != other.runLoop())
46 CFStringRef otherMode = other.mode();
  /external/webkit/WebCore/rendering/
HitTestResult.cpp 55 HitTestResult::HitTestResult(const HitTestResult& other)
56 : m_innerNode(other.innerNode())
57 , m_innerNonSharedNode(other.innerNonSharedNode())
58 , m_point(other.point())
59 , m_localPoint(other.localPoint())
60 , m_innerURLElement(other.URLElement())
61 , m_scrollbar(other.scrollbar())
62 , m_isOverWidget(other.isOverWidget())
70 HitTestResult& HitTestResult::operator=(const HitTestResult& other)
72 m_innerNode = other.innerNode()
    [all...]
  /dalvik/dx/src/com/android/dx/rop/code/
SourcePosition.java 97 public boolean equals(Object other) {
98 if (!(other instanceof SourcePosition)) {
102 if (this == other) {
106 SourcePosition pos = (SourcePosition) other;
121 * @param other {@code non-null;} the instance to compare to
124 public boolean sameLine(SourcePosition other) {
125 return (line == other.line);
132 * @param other {@code non-null;} the instance to compare to
135 public boolean sameLineAndFile(SourcePosition other) {
136 return (line == other.line) &
    [all...]
  /development/samples/ApiDemos/src/com/example/android/apis/graphics/kube/
GLColor.java 41 public boolean equals(Object other) {
42 if (other instanceof GLColor) {
43 GLColor color = (GLColor)other;
  /external/qemu/distrib/sdl-1.2.12/src/video/Xext/extensions/
Xext.h 16 OPEN GROUP BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN
18 CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
21 used in advertising or otherwise to promote the sale, use or other dealings
  /frameworks/base/core/java/android/bluetooth/
package.html 8 <li>Scan for other Bluetooth devices</li>
11 <li>Connect to specified sockets on other devices</li>
12 <li>Transfer data to and from other devices</li>
  /frameworks/base/docs/html/resources/
index.jd 5 This section provides technical articles, tutorials, sample code, and other
29 <dd>Links to the Android discussion groups and information about other ways to
30 collaborate with other developers. </dd>
  /packages/apps/IM/src/com/android/im/engine/
Address.java 44 public boolean equals(Object other) {
45 return other instanceof Address
46 && this.getFullName().equals(((Address)other).getFullName());
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/resources/
ResourceItem.java 43 * @param other the ResourceItem to be compared to.
45 public int compareTo(ResourceItem other) {
46 return mName.compareTo(other.mName);
  /system/extras/tests/bionic/libc/
Android.mk 103 # Third, the other tests
106 other/bench_locks.c \
107 other/test_aligned.c \
108 other/test_arc4random.c \
109 other/test_atomics.c \
110 other/test_sysconf.c \
111 other/test_system.c \
112 other/test_thread_max.c \
113 other/test_timer_create.c \
114 other/test_timer_create2.c
    [all...]
README.TXT 13 All test programs, except those in the 'other' directory, should exit
29 other/
30 Other unrelated tests. These are not run by the test runner
  /external/quake/quake/src/WinQuake/data/
RLICNSE.TXT 23 hard disk or other storage device. You may create a map editor,
26 Derivative Works may not be sold, whether by you or by any other
28 Works at no charge amongst other end-users. The Software, together
34 other law governing such matters) and that you will not utilize, in
35 any other manner, the Software in violation of any applicable law.
55 Software for money or any other consideration; or
57 f. In any other manner and through any medium
81 4. Use of Other Material is Prohibited. Use, in any manner, of
84 and other such material contained within, generated by or relating to
100 thereto (including all characters and other images generated by the
    [all...]
  /external/webkit/WebCore/page/
SecurityOrigin.cpp 12 * documentation and/or other materials provided with the distribution.
108 SecurityOrigin::SecurityOrigin(const SecurityOrigin* other)
109 : m_sandboxFlags(other->m_sandboxFlags)
110 , m_protocol(other->m_protocol.threadsafeCopy())
111 , m_host(other->m_host.threadsafeCopy())
112 , m_domain(other->m_domain.threadsafeCopy())
113 , m_port(other->m_port)
114 , m_isUnique(other->m_isUnique)
115 , m_universalAccess(other->m_universalAccess)
116 , m_domainWasSetInDOM(other->m_domainWasSetInDOM
    [all...]
  /external/webkit/WebCore/platform/image-decoders/
ImageDecoder.cpp 116 // NOTE: Do not reset other members here; clearFrameBufferCache()
117 // calls this to free the bitmap data, but other functions like
119 // other metadata out of this frame later.
128 void RGBA32Buffer::copyBitmapData(const RGBA32Buffer& other)
130 if (this == &other)
133 m_bytes = other.m_bytes;
134 m_size = other.m_size;
135 setHasAlpha(other.m_hasAlpha);
166 RGBA32Buffer& RGBA32Buffer::operator=(const RGBA32Buffer& other)
168 if (this == &other)
    [all...]

Completed in 243 milliseconds

1 2 3 4 5 6 7 8 91011>>