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

<<11121314151617181920>>

  /hardware/broadcom/wlan/bcm4329/src/include/
bcmperf.h 21 * software in any way with any other Broadcom software provided under a license
22 * other than the GPL, without Broadcom's express prior written consent.
epivers.h 19 * software in any way with any other Broadcom software provided under a license
20 * other than the GPL, without Broadcom's express prior written consent.
hndpmu.h 21 * software in any way with any other Broadcom software provided under a license
22 * other than the GPL, without Broadcom's express prior written consent.
  /ndk/build/platforms/android-3/arch-arm/usr/include/netinet/
udp.h 12 * the documentation and/or other materials provided with the
32 * We would include linux/udp.h, but it brings in too much other stuff
  /ndk/build/platforms/android-4/arch-arm/usr/include/netinet/
udp.h 12 * the documentation and/or other materials provided with the
32 * We would include linux/udp.h, but it brings in too much other stuff
  /ndk/build/platforms/android-5/arch-arm/usr/include/netinet/
udp.h 12 * the documentation and/or other materials provided with the
32 * We would include linux/udp.h, but it brings in too much other stuff
  /ndk/build/platforms/android-5/arch-x86/usr/include/netinet/
udp.h 12 * the documentation and/or other materials provided with the
32 * We would include linux/udp.h, but it brings in too much other stuff
  /ndk/build/platforms/android-8/arch-arm/usr/include/netinet/
udp.h 12 * the documentation and/or other materials provided with the
32 * We would include linux/udp.h, but it brings in too much other stuff
  /ndk/build/platforms/android-8/arch-x86/usr/include/netinet/
udp.h 12 * the documentation and/or other materials provided with the
32 * We would include linux/udp.h, but it brings in too much other stuff
  /prebuilt/common/kxml2/
license.txt 16 AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
18 FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS
  /sdk/hierarchyviewer/src/com/android/hierarchyviewer/scene/
ViewNode.java 149 final ViewNode other = (ViewNode) obj; local
150 return !(this.name != other.name && (this.name == null || !this.name.equals(other.name)));
183 final Property other = (Property) obj; local
184 if (this.name != other.name && (this.name == null || !this.name.equals(other.name))) {
187 return !(this.value != other.value && (this.value == null || !this.value.equals(other.value)));
  /system/bluetooth/data/
audio.conf 20 # other one automatically so the default setting of true is usually a good
35 # Just an example of potential config options for the other interfaces
  /system/wlan/ti/wilink_6_1/stad/src/Connection_Managment/
externalSec.c 15 * the documentation and/or other materials provided with the
75 * TI_STATUS - 0 on success, any other value on failure.
132 * TI_STATUS - 0 on success, any other value on failure.
174 * TI_STATUS - 0 on success, any other value on failure.
209 * TI_STATUS - 0 on success, any other value on failure.
231 * TI_STATUS - 0 on success, any other value on failure.
253 * TI_STATUS - 0 on success, any other value on failure.
294 * TI_STATUS - 0 on success, any other value on failure.
  /external/webkit/WebKit/qt/Api/
qwebplugindatabase.cpp 70 Contructs a copy of \a other.
72 QWebPluginInfo::QWebPluginInfo(const QWebPluginInfo& other)
73 : m_package(other.m_package)
201 Returns true if this plugin info is the same as the \a other plugin info.
203 bool QWebPluginInfo::operator==(const QWebPluginInfo& other) const
205 return m_package == other.m_package;
209 Returns true if this plugin info is different from the \a other plugin info.
211 bool QWebPluginInfo::operator!=(const QWebPluginInfo& other) const
213 return m_package != other.m_package;
217 Assigns the \a other plugin info to this plugin info, and returns a referenc
    [all...]
  /dalvik/dx/src/com/android/dx/dex/file/
EncodedField.java 63 public boolean equals(Object other) {
64 if (! (other instanceof EncodedField)) {
68 return compareTo((EncodedField) other) == 0;
79 public int compareTo(EncodedField other) {
80 return field.compareTo(other.field);
FieldAnnotationStruct.java 62 public boolean equals(Object other) {
63 if (! (other instanceof FieldAnnotationStruct)) {
67 return field.equals(((FieldAnnotationStruct) other).field);
71 public int compareTo(FieldAnnotationStruct other) {
72 return field.compareTo(other.field);
MethodAnnotationStruct.java 62 public boolean equals(Object other) {
63 if (! (other instanceof MethodAnnotationStruct)) {
67 return method.equals(((MethodAnnotationStruct) other).method);
71 public int compareTo(MethodAnnotationStruct other) {
72 return method.compareTo(other.method);
ParameterAnnotationStruct.java 86 public boolean equals(Object other) {
87 if (! (other instanceof ParameterAnnotationStruct)) {
91 return method.equals(((ParameterAnnotationStruct) other).method);
95 public int compareTo(ParameterAnnotationStruct other) {
96 return method.compareTo(other.method);
StringIdItem.java 53 public boolean equals(Object other) {
54 if (!(other instanceof StringIdItem)) {
58 StringIdItem otherString = (StringIdItem) other;
69 public int compareTo(Object other) {
70 StringIdItem otherString = (StringIdItem) other;
  /dalvik/dx/src/com/android/dx/rop/cst/
CstNat.java 61 public boolean equals(Object other) {
62 if (!(other instanceof CstNat)) {
66 CstNat otherNat = (CstNat) other;
79 protected int compareTo0(Constant other) {
80 CstNat otherNat = (CstNat) other;
  /dalvik/libcore/concurrent/src/main/java/java/util/concurrent/
CyclicBarrier.java 12 * each other to reach a common barrier point. CyclicBarriers are
14 * must occasionally wait for each other. The barrier is called
86 * other threads waiting at that barrier point will also leave
96 * corresponding {@code await()} in other threads.
279 * <li>Some other thread {@linkplain Thread#interrupt interrupts}
281 * <li>Some other thread {@linkplain Thread#interrupt interrupts}
282 * one of the other waiting threads; or
283 * <li>Some other thread times out while waiting for barrier; or
284 * <li>Some other thread invokes {@link #reset} on this barrier.
301 * then all other waiting threads will thro
    [all...]
  /dalvik/libcore/nio/src/main/java/java/nio/
CharSequenceAdapter.java 32 static CharSequenceAdapter copy(CharSequenceAdapter other) {
33 CharSequenceAdapter buf = new CharSequenceAdapter(other.sequence);
34 buf.limit = other.limit;
35 buf.position = other.position;
36 buf.mark = other.mark;
  /dalvik/libcore/security/src/main/java/java/security/cert/
X509CRLEntry.java 43 * @param other
48 public boolean equals(Object other) {
49 if (other == this) {
52 if (!(other instanceof X509CRLEntry)) {
55 X509CRLEntry obj = (X509CRLEntry) other;
  /dalvik/libcore/security/src/main/java/org/bouncycastle/jce/provider/
JDKDSAPrivateKey.java 113 DSAPrivateKey other = (DSAPrivateKey)o; local
115 return this.getX().equals(other.getX())
116 && this.getParams().getG().equals(other.getParams().getG())
117 && this.getParams().getP().equals(other.getParams().getP())
118 && this.getParams().getQ().equals(other.getParams().getQ());
  /external/dropbear/
LICENSE 28 AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
30 OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
46 called by a name other than "ssh" or "Secure Shell". "
87 FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF
89 WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

Completed in 63 milliseconds

<<11121314151617181920>>