HomeSort by relevance Sort by last modified time
    Searched refs:inst (Results 51 - 75 of 161) sorted by null

1 23 4 5 6 7

  /dalvik/vm/mterp/c/
OP_CONST_WIDE_32.c 5 vdst = INST_AA(inst);
OP_REM_DOUBLE.c 4 vdst = INST_AA(inst);
OP_REM_FLOAT.c 4 vdst = INST_AA(inst);
OP_RSUB_INT_LIT8.c 4 vdst = INST_AA(inst);
OP_THROW.c 5 vsrc1 = INST_AA(inst);
OP_NEW_ARRAY.c 9 vdst = INST_A(inst);
10 vsrc1 = INST_B(inst); /* length reg */
OP_CONST_CLASS.c 5 vdst = INST_AA(inst);
OP_CONST_STRING.c 5 vdst = INST_AA(inst);
OP_CONST_STRING_JUMBO.c 6 vdst = INST_AA(inst);
OP_MONITOR_ENTER.c 5 vsrc1 = INST_AA(inst);
OP_MONITOR_EXIT.c 7 vsrc1 = INST_AA(inst);
opcommon.c 29 vdst = INST_A(inst); \
30 vsrc1 = INST_B(inst); \
43 vdst = INST_A(inst); \
44 vsrc1 = INST_B(inst); \
64 vdst = INST_A(inst); \
65 vsrc1 = INST_B(inst); \
77 vdst = INST_AA(inst); \
99 vsrc1 = INST_A(inst); \
100 vsrc2 = INST_B(inst); \
116 vsrc1 = INST_AA(inst); \
    [all...]
  /development/samples/BrowserPlugin/jni/animation/
AnimationPlugin.h 33 BallAnimation(NPP inst);
  /external/webkit/WebCore/bridge/c/
c_runtime.cpp 40 JSValue CField::valueFromInstance(ExecState* exec, const Instance* inst) const
42 const CInstance* instance = static_cast<const CInstance*>(inst);
63 void CField::setValueToInstance(ExecState *exec, const Instance *inst, JSValue aValue) const
65 const CInstance* instance = static_cast<const CInstance*>(inst);
c_class.cpp 84 const CInstance* inst = static_cast<const CInstance*>(instance); local
85 NPObject* obj = inst->getObject();
105 const CInstance* inst = static_cast<const CInstance*>(instance); local
106 NPObject* obj = inst->getObject();
  /frameworks/base/core/tests/coretests/src/android/widget/listview/
ListViewHeightTest.java 50 Instrumentation inst = getInstrumentation(); local
65 inst.waitForIdleSync();
74 inst.waitForIdleSync();
82 inst.waitForIdleSync();
  /packages/apps/Music/tests/src/com/android/music/functional/
TestSongs.java 70 Instrumentation inst = getInstrumentation(); local
72 inst.invokeContextMenuAction(getActivity(), MusicUtils.Defs.NEW_PLAYLIST, 0);
76 inst.sendKeyDownUpSync(KeyEvent.KEYCODE_DEL);
77 inst.sendStringSync(MusicPlayerNames.unsortedPlaylistTitle[i]);
78 inst.sendKeyDownUpSync(KeyEvent.KEYCODE_DPAD_DOWN);
79 inst.sendKeyDownUpSync(KeyEvent.KEYCODE_DPAD_CENTER);
81 inst.sendKeyDownUpSync(KeyEvent.KEYCODE_DPAD_DOWN);
154 Instrumentation inst = getInstrumentation(); local
155 inst.invokeContextMenuAction(getActivity(), MusicUtils.Defs.USE_AS_RINGTONE, 0);
178 Instrumentation inst = getInstrumentation(); local
    [all...]
  /frameworks/base/test-runner/src/android/test/
TouchUtils.java 261 Instrumentation inst = test.getInstrumentation(); local
268 inst.sendPointerSync(event);
269 inst.waitForIdleSync();
275 inst.sendPointerSync(event);
276 inst.waitForIdleSync();
280 inst.sendPointerSync(event);
281 inst.waitForIdleSync();
301 Instrumentation inst = test.getInstrumentation(); local
308 inst.sendPointerSync(event);
309 inst.waitForIdleSync()
336 Instrumentation inst = test.getInstrumentation(); local
397 Instrumentation inst = test.getInstrumentation(); local
764 Instrumentation inst = test.getInstrumentation(); local
    [all...]
  /frameworks/base/awt/org/apache/harmony/awt/gl/
AwtImageBackdoorAccessor.java 42 static protected AwtImageBackdoorAccessor inst; field in class:AwtImageBackdoorAccessor
45 // First we need to run the static initializer in the DataBuffer class to resolve inst.
47 return inst;
  /development/samples/BrowserPlugin/jni/background/
BackgroundPlugin.cpp 55 BackgroundPlugin::BackgroundPlugin(NPP inst) : SurfaceSubPlugin(inst) {
75 NPError err = browser->setvalue(inst, kAcceptEvents_ANPSetValue, &flags);
100 jclass backgroundClass = gSystemI.loadJavaClass(inst(), className);
130 PluginObject *obj = (PluginObject*) inst()->pdata;
141 inst(), zoomFactorW, zoomFactorH);
152 gLogI.log(kError_ANPLogType, " ------ %p unable to lock the plugin", inst());
185 gLogI.log(kError_ANPLogType, " ------ %p the plugin did not request draw events", inst());
190 gLogI.log(kDebug_ANPLogType, " ------ %p onLoad", inst());
193 gLogI.log(kDebug_ANPLogType, " ------ %p onScreen", inst());
    [all...]
BackgroundPlugin.h 33 BackgroundPlugin(NPP inst);
  /frameworks/base/tests/DumpRenderTree/src/com/android/dumprendertree/forwarder/
ForwardService.java 30 private static ForwardService inst; field in class:ForwardService
48 if (inst == null) {
49 inst = new ForwardService();
51 return inst;
  /external/tcpdump/
print-zephyr.c 50 char *inst; member in struct:z_packet
110 z_triple(char *class, char *inst, const char *recipient)
114 snprintf(z_buf, sizeof(z_buf), "<%s,%s,%s>", class, inst, recipient);
168 PARSE_FIELD_STR(z.inst);
204 printf(" locate %s", z.inst);
214 if (!strcmp(z.inst, "CLIENT")) {
252 if (!strcmp(z.inst, "HM")) {
257 if (!strcmp(z.inst, "REALM")) {
271 printf(" hm_ctl %s", str_to_lower(z.inst));
277 if (!strcmp(z.inst, "HMST_CLIENT") && !strcmp(z.opcode, "GIMMESTATS"))
    [all...]
  /packages/apps/Music/tests/src/com/android/music/
MusicPlayerStability.java 61 Instrumentation inst = getInstrumentation(); local
64 inst.sendKeyDownUpSync(KeyEvent.KEYCODE_DPAD_DOWN);
69 inst.sendKeyDownUpSync(KeyEvent.KEYCODE_DPAD_CENTER);
  /dalvik/vm/mterp/portable/
debug.c 144 u2 inst = INST_INST(FETCH(0)); local
145 if (inst == OP_RETURN_VOID || inst == OP_RETURN || inst == OP_RETURN_WIDE ||
146 inst == OP_RETURN_OBJECT)
240 int inst = *pc & 0xff; local
241 gDvm.executedInstrCounts[inst]++;

Completed in 360 milliseconds

1 23 4 5 6 7