HomeSort by relevance Sort by last modified time
    Searched refs:inst (Results 1 - 25 of 171) sorted by null

1 2 3 4 5 6 7

  /dalvik/vm/mterp/c/
OP_BREAKPOINT.c 8 * It's probably not necessary to update "inst", but we do it
20 LOGV("+++ break 0x%02x (0x%04x -> 0x%04x)\n", originalOpCode, inst,
21 INST_REPLACE_OP(inst, originalOpCode));
22 inst = INST_REPLACE_OP(inst, originalOpCode);
OP_RETURN.c 2 vsrc1 = INST_AA(inst);
4 (INST_INST(inst) == OP_RETURN) ? "" : "-object", vsrc1);
OP_UNUSED_FF.c 5 LOGE("unknown opcode 0x%02x\n", INST_INST(inst));
OP_MOVE.c 2 vdst = INST_A(inst);
3 vsrc1 = INST_B(inst);
5 (INST_INST(inst) == OP_MOVE) ? "" : "-object", vdst, vsrc1,
OP_CONST_4.c 5 vdst = INST_A(inst);
6 tmp = (s4) (INST_B(inst) << 28) >> 28; // sign extend 4-bit value
OP_MOVE_RESULT.c 2 vdst = INST_AA(inst);
4 (INST_INST(inst) == OP_MOVE_RESULT) ? "" : "-object",
OP_REM_DOUBLE_2ADDR.c 2 vdst = INST_A(inst);
3 vsrc1 = INST_B(inst);
OP_REM_FLOAT_2ADDR.c 2 vdst = INST_A(inst);
3 vsrc1 = INST_B(inst);
OP_MOVE_FROM16.c 2 vdst = INST_AA(inst);
5 (INST_INST(inst) == OP_MOVE_FROM16) ? "" : "-object", vdst, vsrc1,
OP_MOVE_WIDE.c 4 vdst = INST_A(inst);
5 vsrc1 = INST_B(inst);
OP_THROW_VERIFICATION_ERROR.c 3 vsrc1 = INST_AA(inst);
OP_ARRAY_LENGTH.c 5 vdst = INST_A(inst);
6 vsrc1 = INST_B(inst);
OP_CONST_HIGH16.c 2 vdst = INST_AA(inst);
OP_CONST_WIDE_HIGH16.c 2 vdst = INST_AA(inst);
OP_MOVE_RESULT_WIDE.c 2 vdst = INST_AA(inst);
OP_RETURN_WIDE.c 2 vsrc1 = INST_AA(inst);
OP_RSUB_INT.c 3 vdst = INST_A(inst);
4 vsrc1 = INST_B(inst);
  /packages/apps/Email/src/org/apache/james/mime4j/util/
TempStorage.java 33 private static TempStorage inst = null; field in class:TempStorage
40 if (inst != null) {
41 inst = (TempStorage) Class.forName(clazz).newInstance();
49 if (inst == null) {
50 inst = new SimpleTempStorage();
63 return inst;
66 public static void setInstance(TempStorage inst) {
67 if (inst == null) {
68 throw new NullPointerException("inst");
70 TempStorage.inst = inst;
    [all...]
  /frameworks/base/core/tests/coretests/src/android/widget/listview/
ListManagedCursorTest.java 60 Instrumentation inst = getInstrumentation(); local
62 int firstVisiblePosition = arrowScroll(inst);
64 inst.sendCharacterSync(KeyEvent.KEYCODE_BACK);
65 inst.waitForIdleSync();
77 Instrumentation inst = getInstrumentation(); local
79 int firstVisiblePosition = touchScroll(inst);
81 inst.sendCharacterSync(KeyEvent.KEYCODE_BACK);
82 inst.waitForIdleSync();
95 Instrumentation inst = getInstrumentation(); local
97 int firstVisiblePosition = arrowScroll(inst);
116 Instrumentation inst = getInstrumentation(); local
    [all...]
ListEmptyViewTest.java 55 Instrumentation inst = getInstrumentation(); local
57 inst.invokeMenuActionSync(mActivity, mActivity.MENU_ADD, 0);
58 inst.waitForIdleSync();
65 Instrumentation inst = getInstrumentation(); local
67 inst.invokeMenuActionSync(mActivity, mActivity.MENU_ADD, 0);
68 inst.waitForIdleSync();
78 inst.sendCharacterSync(KeyEvent.KEYCODE_BACK);
79 inst.waitForIdleSync();
87 Instrumentation inst = getInstrumentation(); local
92 inst.invokeMenuActionSync(mActivity, mActivity.MENU_ADD, 0)
    [all...]
  /external/chromium/sdch/open-vcdiff/src/
instruction_map.h 37 // inst (also known as instruction type), size, and mode and arriving at
54 // Finds an opcode that has the given inst, size, and mode for its first
65 // of expressing all combinations of inst and mode with size=0.
67 OpcodeOrNone LookupFirstOpcode(unsigned char inst,
70 return first_instruction_map_.Lookup(inst, size, mode);
75 // the first opcode, and has the given inst, size, and mode for its second
83 unsigned char inst,
86 return second_instruction_map_.Lookup(first_opcode, inst, size, mode);
97 void Add(unsigned char inst,
101 OpcodeOrNone* opcode_slot = &first_opcodes_[inst + mode][size]
    [all...]
  /frameworks/base/tests/BrowserTestPlugin/jni/
PluginObject.h 66 SubPlugin(NPP inst) : m_inst(inst) {}
70 NPP inst() const { return m_inst; } function in class:SubPlugin
  /packages/apps/Music/tests/src/com/android/music/stress/
AlbumsPlaybackStress.java 61 Instrumentation inst = getInstrumentation(); local
63 inst.sendKeyDownUpSync(KeyEvent.KEYCODE_DPAD_RIGHT);
64 inst.sendKeyDownUpSync(KeyEvent.KEYCODE_DPAD_RIGHT);
65 inst.sendKeyDownUpSync(KeyEvent.KEYCODE_DPAD_CENTER);
66 inst.sendKeyDownUpSync(KeyEvent.KEYCODE_DPAD_CENTER);
67 inst.sendKeyDownUpSync(KeyEvent.KEYCODE_DPAD_CENTER);
69 inst.sendKeyDownUpSync(KeyEvent.KEYCODE_BACK);
70 inst.sendKeyDownUpSync(KeyEvent.KEYCODE_BACK);
72 inst.sendKeyDownUpSync(KeyEvent.KEYCODE_DPAD_DOWN);
73 inst.sendKeyDownUpSync(KeyEvent.KEYCODE_DPAD_CENTER)
    [all...]
  /frameworks/base/core/tests/coretests/src/android/util/
KeyUtils.java 46 final Instrumentation inst = test.getInstrumentation(); local
48 inst.sendKeySync(new KeyEvent(KeyEvent.ACTION_DOWN, KeyEvent.KEYCODE_MENU));
49 inst.sendKeySync(new KeyEvent(KeyEvent.ACTION_UP, KeyEvent.KEYCODE_MENU));
59 final Instrumentation inst = test.getInstrumentation(); local
66 inst.sendKeySync(pushMenuKey);
67 inst.sendKeySync(new KeyEvent(KeyEvent.ACTION_DOWN, shortcutKeyCode));
68 inst.sendKeySync(new KeyEvent(KeyEvent.ACTION_UP, shortcutKeyCode));
69 inst.sendKeySync(new KeyEvent(KeyEvent.ACTION_UP, KeyEvent.KEYCODE_MENU));
78 final Instrumentation inst = test.getInstrumentation(); local
80 inst.sendKeySync(new KeyEvent(KeyEvent.ACTION_DOWN, KeyEvent.KEYCODE_DPAD_CENTER))
    [all...]
  /development/samples/BrowserPlugin/jni/
PluginObject.h 49 SubPlugin(NPP inst) : m_inst(inst) {}
57 NPP inst() const { return m_inst; } function in class:SubPlugin
65 SurfaceSubPlugin(NPP inst) : SubPlugin(inst) { m_context = NULL; }

Completed in 751 milliseconds

1 2 3 4 5 6 7