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

<<11121314151617181920>>

  /external/webkit/WebCore/manual-tests/
input-empty-on-focus.html 6 test obsolete. Maybe we can find some other way to test the same code path.</p>
  /external/webkit/WebKit/qt/Api/
qwebplugindatabase_p.h 38 QWebPluginInfo(const QWebPluginInfo& other);
39 QWebPluginInfo &operator=(const QWebPluginInfo& other);
59 bool operator==(const QWebPluginInfo& other) const;
60 bool operator!=(const QWebPluginInfo& other) const;
  /frameworks/base/core/java/android/util/
Pair.java 47 final Pair<F, S> other;
49 other = (Pair<F, S>) o;
53 return first.equals(other.first) && second.equals(other.second);
  /frameworks/base/media/libstagefright/
string.cpp 70 bool string::operator<(const string &other) const {
71 return mString < other.mString;
74 bool string::operator==(const string &other) const {
75 return mString == other.mString;
  /packages/apps/Email/src/com/android/email/service/
IEmailServiceCallback.aidl 39 * statusCode = 0 for OK, 1 for progress, other codes for error
47 * statusCode = 0 for OK, 1 for progress, other codes for error
56 * statusCode = 0 for OK, 1 for progress, other codes for error
64 * statusCode = 0 for OK, 1 for progress, other codes for error
  /system/wlan/ti/sta_dk_4_0_4_32/CUDK/Inc/
TI_AdapterPM.h 42 Return: TI_RESULT_OK on success. Any other value indicates an error.
58 Return: TI_RESULT_OK on success. Any other value indicates an error.
86 Return: TI_RESULT_OK on success. Any other value indicates an error.
99 Return: TI_RESULT_OK on success. Any other value indicates an error.
112 Return: TI_RESULT_OK on success. Any other value indicates an error.
124 Return: TI_RESULT_OK on success. Any other value indicates an error.
136 Return: TI_RESULT_OK on success. Any other value indicates an error.
150 Return: TI_RESULT_OK on success. Any other value indicates an error.
164 Return: TI_RESULT_OK on success. Any other value indicates an error.
  /external/icu4c/i18n/
plurrule.cpp 74 PluralRules::PluralRules(const PluralRules& other)
75 : UObject(other),
79 *this=other;
93 PluralRules::operator=(const PluralRules& other) {
94 if (this != &other) {
96 if (other.mRules==NULL) {
100 mRules = new RuleChain(*other.mRules);
216 PluralRules::operator==(const PluralRules& other) const {
222 if ( this == &other ) {
229 StringEnumeration* otherKeywordList =other.getKeywords(status)
    [all...]
  /dalvik/libcore/luni/src/main/java/org/apache/harmony/luni/internal/util/
ZoneInfo.java 231 ZoneInfo other = (ZoneInfo) obj; local
232 return mUseDst == other.mUseDst
233 && (mDaylightName == null ? other.mDaylightName == null :
234 mDaylightName.equals(other.mDaylightName))
235 && (mStandardName == null ? other.mStandardName == null :
236 mStandardName.equals(other.mStandardName))
237 && mRawOffset == other.mRawOffset
239 && Arrays.equals(mGmtOffs, other.mGmtOffs)
240 && Arrays.equals(mIsDsts, other.mIsDsts)
241 && Arrays.equals(mTypes, other.mTypes
    [all...]
  /development/tools/zoneinfo/
ZoneInfo.java 242 ZoneInfo other = (ZoneInfo) obj; local
243 return mUseDst == other.mUseDst
244 && (mDaylightName == null ? other.mDaylightName == null :
245 mDaylightName.equals(other.mDaylightName))
246 && (mStandardName == null ? other.mStandardName == null :
247 mStandardName.equals(other.mStandardName))
248 && mRawOffset == other.mRawOffset
250 && Arrays.equals(mGmtOffs, other.mGmtOffs)
251 && Arrays.equals(mIsDsts, other.mIsDsts)
252 && Arrays.equals(mTypes, other.mTypes
    [all...]
  /external/skia/src/core/
SkBlitter_4444.cpp 109 SkPMColor16 other, unsigned invScale, int count)
115 *dst = other + SkAlphaMulQ4(*dst, invScale);
130 uint32_t other, unsigned invScale, int count)
138 *dst++ = SkCompact_4444((other + tmp) >> 4);
156 SkPMColor16 other = fPMColor16Other; local
159 SkTSwap<SkPMColor16>(color, other);
163 sk_dither_memset16(device, color, other, width);
167 SkExpand_4444_Replicate(other),
180 SkPMColor16 other = fPMColor16Other; local
184 SkTSwap<SkPMColor16>(color, other);
221 SkPMColor16 other = fPMColor16Other; local
254 SkPMColor16 other = fPMColor16Other; local
    [all...]
  /external/icu4c/common/
utrie2_builder.c 41 * The UTRIE2_SHIFT_1, UTRIE2_SHIFT_2, UTRIE2_INDEX_SHIFT and other values
197 * does not overlap other index-2 blocks with the gap.
236 cloneBuilder(const UNewTrie2 *other) {
244 trie->data=(uint32_t *)uprv_malloc(other->dataCapacity*4);
249 trie->dataCapacity=other->dataCapacity;
252 uprv_memcpy(trie->index1, other->index1, sizeof(trie->index1));
253 uprv_memcpy(trie->index2, other->index2, other->index2Length*4);
254 trie->index2NullOffset=other->index2NullOffset;
255 trie->index2Length=other->index2Length
    [all...]
  /bionic/libc/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
  /bionic/libc/unistd/
pread.c 12 * the documentation and/or other materials provided with the
19 * documentation and/or other materials provided with the distribution.
  /cts/tools/signature-tools/src/signature/model/impl/
SigArrayType.java 54 IArrayType other = (IArrayType) that; local
55 return thiz.getComponentType().equals(other.getComponentType());
  /dalvik/libcore/luni/src/main/java/java/util/
IllegalFormatPrecisionException.java 21 * a negative other than -1 or in other cases where precision is not supported.
IllegalFormatWidthException.java 21 * negative value other than -1 or in other cases where a width is not
  /dalvik/libcore/security/
bouncycastle-license.txt 19 CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
21 SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
  /dalvik/libcore/security/src/main/java/org/bouncycastle/asn1/
ASN1Encodable.java 70 DEREncodable other = (DEREncodable)o; local
72 return this.toASN1Object().equals(other.getDERObject());
  /external/bluetooth/bluez/audio/
audio.conf 22 # other one automatically so the default setting of true is usually a good
37 # Just an example of potential config options for the other interfaces
  /external/bluetooth/glib/debian/
README.debian 6 many other things.
23 been separated from The GIMP now, as other teams of programmers
  /external/clearsilver/perl/
README 6 example C compilers and installed libraries) and any other information
30 This module requires these other modules and libraries:
  /external/dropbear/
agentfwd.h 20 * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
22 * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
bignum.h 20 * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
22 * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
common-chansession.c 20 * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
22 * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
compat.h 20 * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
22 * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE

Completed in 95 milliseconds

<<11121314151617181920>>