HomeSort by relevance Sort by last modified time
    Searched defs:code (Results 451 - 475 of 878) sorted by null

<<11121314151617181920>>

  /packages/apps/Exchange/src/com/android/exchange/adapter/
Search.java 107 int code = resp.getStatus(); local
108 if (code == HttpStatus.SC_OK) {
118 svc.userLog("Search returned " + code);
  /packages/apps/Nfc/jni/
com_android_nfc.cpp 363 //Display status code
369 NFCSTATUS code; member in struct:android::status_entry
420 if (sNameTable[i].code == PHNFCSTATUS(status))
  /packages/experimental/AndroidVendorSecurityTool/src/com/android/vending/sectool/v1/
PostNotification.java 64 int code = FAIL; local
86 code = CLEAN;
95 code = INIT;
97 code = FAIL;
100 code = IMMUNE;
106 if (code == CLEAN) {
108 } else if (code == IMMUNE) {
110 } else if (code == INIT) {
  /packages/inputmethods/LatinIME/java/src/com/android/inputmethod/keyboard/
KeyDetector.java 163 // allCodes[0] should always have the key code even if it is a non-letter key.
174 final int code = keys.get(index).mCode; local
176 if (code < Keyboard.CODE_SPACE)
178 allCodes[numCodes++] = code;
190 * @param allCodes All nearby key code except functional key are returned in this array
  /packages/inputmethods/LatinIME/java/src/com/android/inputmethod/keyboard/internal/
MoreKeySpecParser.java 33 * - Label optionally followed by keyOutputText or code (keyLabel|keyOutputText).
34 * - Icon followed by keyOutputText or code (@icon/icon_number|@integer/key_code)
58 throw new MoreKeySpecParserError("outputText or code not specified: " + moreKeySpec);
134 // Code is automatically generated for one letter label. See {@link getCode()}.
147 final int code = res.getInteger(resId); local
148 return code;
153 // Code is automatically generated for one letter label.
189 public boolean shouldFilterOut(int code);
194 public boolean shouldFilterOut(int code) {
195 return Character.isDigit(code);
    [all...]
  /packages/inputmethods/LatinIME/native/src/
proximity_info.cpp 80 // Build the reversed look up table from the char code to the index in mKeyXCoordinates,
85 const int code = mKeyCharCodes[i]; local
86 if (0 <= code && code <= MAX_CHAR_CODE) {
87 mCodeToKeyIndex[code] = i;
  /packages/inputmethods/OpenWnn/src/jp/co/omronsoft/openwnn/
OpenWnnEvent.java 77 * This event input specified character({@code chars}) into the cursor position.
84 * This event changes a character at cursor position with specified rule({@code toggleMap}).
97 * This event processes a {@code keyEvent}.
104 * This event processes a {@code keyEvent}.
171 * To get words from the list, use {@code GET_WORD} event.
178 * Get a word from top of the list made by {@code LIST_WORDS_IN_USER_DICTIONARY}.
227 /** Event code */
228 public int code = UNDEFINED; field in class:OpenWnnEvent
243 /** Error code */
249 * @param code The cod
    [all...]
  /prebuilt/linux-x86/toolchain/i686-linux-glibc2.7-4.4.3/sysroot/usr/include/linux/
icmp.h 70 __u8 code; member in struct:icmphdr
if_pppox.h 113 __u8 code; member in struct:pppoe_hdr
igmp.h 32 __u8 code; /* For newer IGMP */ member in struct:igmphdr
64 __u8 code; member in struct:igmpv3_query
  /prebuilt/ndk/android-ndk-r4/platforms/android-3/arch-arm/usr/include/linux/
icmp.h 60 __u8 code; member in struct:icmphdr
  /prebuilt/ndk/android-ndk-r4/platforms/android-4/arch-arm/usr/include/linux/
icmp.h 60 __u8 code; member in struct:icmphdr
  /prebuilt/ndk/android-ndk-r4/platforms/android-5/arch-arm/usr/include/linux/
icmp.h 60 __u8 code; member in struct:icmphdr
  /prebuilt/ndk/android-ndk-r4/platforms/android-5/arch-x86/usr/include/linux/
icmp.h 60 __u8 code; member in struct:icmphdr
  /prebuilt/ndk/android-ndk-r4/platforms/android-8/arch-arm/usr/include/linux/
icmp.h 60 __u8 code; member in struct:icmphdr
  /prebuilt/ndk/android-ndk-r4/platforms/android-8/arch-x86/usr/include/linux/
icmp.h 60 __u8 code; member in struct:icmphdr
  /prebuilt/ndk/android-ndk-r5/platforms/android-3/arch-arm/usr/include/linux/
icmp.h 60 __u8 code; member in struct:icmphdr
  /prebuilt/ndk/android-ndk-r6/platforms/android-3/arch-arm/usr/include/linux/
icmp.h 60 __u8 code; member in struct:icmphdr
  /prebuilt/ndk/android-ndk-r6/platforms/android-3/arch-x86/usr/include/linux/
icmp.h 60 __u8 code; member in struct:icmphdr
  /system/core/include/diskconfig/
diskconfig.h 73 uint8_t code[440]; /* bytes 0-439 */ member in struct:pc_boot_record
  /external/webkit/Source/WebCore/inspector/front-end/
HeapSnapshotView.js 8 * * Redistributions of source code must retain the above copyright
46 code: new WebInspector.ResourceCategory("code", WebInspector.UIString("Code"), "rgb(255,121,0)"),
557 var highLevels = { data: 0, code: 0 };
600 if (type === "CODE_TYPE" || type === "SHARED_FUNCTION_INFO_TYPE" || type === "SCRIPT_TYPE") return "code";
622 return "code";
    [all...]
  /bionic/libc/kernel/common/linux/
filter.h 23 __u16 code; member in struct:sock_filter
35 #define BPF_CLASS(code) ((code) & 0x07)
45 #define BPF_SIZE(code) ((code) & 0x18)
49 #define BPF_MODE(code) ((code) & 0xe0)
57 #define BPF_OP(code) ((code) & 0xf0)
72 #define BPF_SRC(code) ((code) & 0x08
    [all...]
  /dalvik/dexgen/src/com/android/dexgen/dex/code/
OutputFinisher.java 17 package com.android.dexgen.dex.code;
19 import com.android.dexgen.rop.code.LocalItem;
20 import com.android.dexgen.rop.code.RegisterSpec;
21 import com.android.dexgen.rop.code.RegisterSpecList;
22 import com.android.dexgen.rop.code.RegisterSpecSet;
23 import com.android.dexgen.rop.code.SourcePosition;
40 * {@code >= 0;} register count for the method, not including any extra
45 /** {@code non-null;} the list of instructions, per se */
55 * {@code >= 0;} the count of reserved registers (low-numbered
65 * @param regCount {@code >= 0;} register count for the metho
    [all...]
  /dalvik/dexgen/src/com/android/dexgen/rop/code/
RegOps.java 17 package com.android.dexgen.rop.code;
24 * <p><b>Note:</b> Opcode descriptions use a rough pseudocode. {@code r}
25 * is the result register, {@code x} is the first argument,
26 * {@code y} is the second argument, and {@code z} is the
32 /** {@code nop()} */
35 /** {@code T: any type; r,x: T :: r = x;} */
38 /** {@code T: any type; r,param(x): T :: r = param(x)} */
42 * {@code T: Throwable; r: T :: r = caught_exception}.
49 /** {@code T: any type; r, literal: T :: r = literal;} *
    [all...]
RegisterSpec.java 17 package com.android.dexgen.rop.code;
33 /** {@code non-null;} string to prefix register numbers with */
36 /** {@code non-null;} intern table for instances */
40 /** {@code non-null;} common comparison instance used while interning */
43 /** {@code >= 0;} register number */
46 /** {@code non-null;} type loaded or stored */
49 /** {@code null-ok;} local variable info associated with this register, if any */
55 * @param reg {@code >= 0;} the register number
56 * @param type {@code non-null;} the type (or possibly actual value) which
58 * @param local {@code null-ok;} the associated local variable, if an
    [all...]

Completed in 1518 milliseconds

<<11121314151617181920>>