/dalvik/vm/mterp/ |
config-portdbg | 28 # C pre-processor defines for stub C instructions
|
/development/samples/BrowserPlugin/src/com/android/sampleplugin/ |
SamplePlugin.java | 35 // TODO Auto-generated method stub
|
/external/icu4c/stubdata/ |
stubdata.c | 16 * The stub data library (for which this file is the source) is sufficient
|
/external/qemu/distrib/sdl-1.2.12/src/cdrom/dummy/ |
SDL_syscdrom.c | 26 /* Stub functions for system-level CD-ROM audio control */
|
/frameworks/base/core/java/com/android/internal/app/ |
DisableCarModeActivity.java | 34 IUiModeManager uiModeManager = IUiModeManager.Stub.asInterface(
|
/frameworks/base/services/java/com/android/server/ |
ClipboardService.java | 25 public class ClipboardService extends IClipboard.Stub {
|
/frameworks/base/telephony/tests/telephonytests/src/com/android/internal/telephony/ |
TestPhoneNotifier.java | 20 * Stub class used for unit tests
|
/packages/apps/IM/src/com/android/im/app/adapter/ |
ChatSessionListenerAdapter.java | 27 public class ChatSessionListenerAdapter extends IChatSessionListener.Stub {
|
/cts/tests/tests/app/src/android/app/cts/ |
AlertDialogTest.java | 51 super("com.android.cts.stub", DialogStubActivity.class); 130 assertEquals(mActivity.getString(com.android.cts.stub.R.string.alert_dialog_positive), 135 assertEquals(mActivity.getString(com.android.cts.stub.R.string.alert_dialog_neutral), 140 assertEquals(mActivity.getString(com.android.cts.stub.R.string.alert_dialog_negative), 303 assertEquals(mActivity.getString(com.android.cts.stub.R.string.alert_dialog_positive), 308 assertEquals(mActivity.getString(com.android.cts.stub.R.string.alert_dialog_negative), 313 assertEquals(mActivity.getString(com.android.cts.stub.R.string.alert_dialog_neutral),
|
/cts/tests/tests/view/src/android/view/cts/ |
MenuInflaterTest.java | 19 import com.android.cts.stub.R; 50 super("com.android.cts.stub", MenuInflaterStubActivity.class); 82 mMenuInflater.inflate(com.android.cts.stub.R.menu.browser, menu); 93 mMenuInflater.inflate(com.android.cts.stub.R.menu.browser, null); 122 mMenuInflater.inflate(com.android.cts.stub.R.menu.title_icon, menu); 138 mMenuInflater.inflate(com.android.cts.stub.R.menu.category_order, menu); 162 mMenuInflater.inflate(com.android.cts.stub.R.menu.checkable, menu);
|
View_AnimationTest.java | 27 import com.android.cts.stub.R; 49 super("com.android.cts.stub", ViewTestStubActivity.class);
|
/frameworks/base/ |
preloaded-classes | 12 android.accounts.IAccountAuthenticatorResponse$Stub 13 android.accounts.IAccountManager$Stub 14 android.accounts.IAccountManagerResponse$Stub 33 android.app.IAlarmManager$Stub 34 android.app.IStatusBar$Stub 35 android.app.ITransientNotification$Stub 53 android.app.admin.IDevicePolicyManager$Stub 67 android.app.backup.IBackupManager$Stub 75 android.bluetooth.IBluetooth$Stub 77 android.bluetooth.IBluetoothA2dp$Stub [all...] |
/cts/tests/tests/content/src/android/content/cts/ |
ComponentNameTest.java | 122 assertEquals("com.android.cts.stub/android.content.cts.ComponentNameTest", 180 assertEquals("com.android.cts.stub", actual); 204 assertEquals("com.android.cts.stub/android.content.cts.ComponentNameTest", actual); 252 assertEquals("{com.android.cts.stub/android.content.cts.ComponentNameTest}", shortString); 295 assertEquals("com.android.cts.stub", parcel.readString());
|
/cts/tests/tests/widget/src/android/widget/cts/ |
SimpleCursorTreeAdapterTest.java | 19 import com.android.cts.stub.R; 187 String.valueOf(com.android.cts.stub.R.drawable.scenery)); 189 com.android.cts.stub.R.drawable.scenery); 215 com.android.cts.stub.R.raw.testimage)); 217 com.android.cts.stub.R.raw.testimage);
|
AnalogClockTest.java | 19 import com.android.cts.stub.R; 41 super("com.android.cts.stub", FrameLayoutStubActivity.class);
|
/external/v8/test/cctest/ |
test-assembler-arm.cc | 74 Code::ComputeFlags(Code::STUB), 111 Code::ComputeFlags(Code::STUB), 157 Code::ComputeFlags(Code::STUB), 205 Code::ComputeFlags(Code::STUB), 265 Code::ComputeFlags(Code::STUB),
|
/packages/apps/Mms/src/com/android/mms/ui/ |
MessageListItem.java | 300 // TODO Auto-generated method stub 304 // TODO Auto-generated method stub 308 // TODO Auto-generated method stub 615 // TODO Auto-generated method stub 619 // TODO Auto-generated method stub 623 // TODO Auto-generated method stub 627 // TODO Auto-generated method stub 642 // TODO Auto-generated method stub 646 // TODO Auto-generated method stub 650 // TODO Auto-generated method stub [all...] |
/bionic/libc/ |
SYSCALLS.TXT | 7 # return_type func_name[:syscall_name[:call_id]]([parameter_list]) (#syscall_number|stub) 21 # - it there is "stub" instead of a syscall number, the tool will not generate any 23 # a relevant C stub 58 int seteuid:seteuid32(uid_t) stub 63 # see comments in arch-arm/bionic/kill.S to understand why we don't generate an ARM stub for kill/tkill 74 pid_t getpgrp(void) stub 93 int creat(const char*, mode_t) stub 97 void * mmap(void *, size_t, int, int, int, long) stub 141 int umount(const char*) stub
|
/frameworks/base/docs/html/guide/developing/tools/ |
aidl.jd | 55 This interface has an inner abstract class named Stub that inherits the 57 call). You must create a class that extends <em>YourInterface</em>.Stub 143 includes an abstract inner class named Stub that declares all the methods 144 that you declared in your .aidl file. Stub also defines a few helper methods, 149 <p>To implement your interface, extend <em>YourInterface</em>.Stub, 150 and implement the methods. (You can create the .aidl file and implement the stub 156 private final IRemoteService.Stub mBinder = new IRemoteService.Stub(){ 284 IBinder} instance (called <em>service</em>). Call <code><em>YourInterfaceName</em>.Stub.asInterface((IBinder)<em>service</em>)</code> to
|
/dalvik/docs/ |
porting-guide.html | 203 directly to the C stub because it's expecting to be called with a "glue" 204 argument and then return. We need a C stub "wrapper" that does the 209 <code>dalvik/vm/mterp/myarch/stub.S</code> that contains one line: 211 /* stub for ${opcode} */ 216 # source for the instruction table stub 217 asm-stub myarch/stub.S 222 see 256 copies of the stub function in a single large block after the 223 <code>dvmAsmInstructionStart</code> label. The <code>stub.S</code> 231 The actual contents of <code>stub.S</code> are up to you to define [all...] |
/development/pdk/docs/porting/ |
dalvik.jd | 209 directly to the C stub because it's expecting to be called with a "glue" 210 argument and then return. We need a C stub "wrapper" that does the 215 <code>dalvik/vm/mterp/myarch/stub.S</code> that contains one line: 217 /* stub for ${opcode} */ 222 # source for the instruction table stub 223 asm-stub myarch/stub.S 228 see 256 copies of the stub function in a single large block after the 229 <code>dvmAsmInstructionStart</code> label. The <code>stub.S</code> 237 The actual contents of <code>stub.S</code> are up to you to define [all...] |
/cts/tests/tests/text/src/android/text/method/cts/ |
DateKeyListenerTest.java | 19 import com.android.cts.stub.R; 45 super("com.android.cts.stub", KeyListenerStubActivity.class);
|
DateTimeKeyListenerTest.java | 19 import com.android.cts.stub.R; 45 super("com.android.cts.stub", KeyListenerStubActivity.class);
|
TimeKeyListenerTest.java | 19 import com.android.cts.stub.R; 41 super("com.android.cts.stub", KeyListenerStubActivity.class);
|
/cts/tests/tests/view/src/android/view/animation/cts/ |
LinearInterpolatorTest.java | 29 import com.android.cts.stub.R; 50 super("com.android.cts.stub", AnimationTestStubActivity.class);
|