/development/ndk/platforms/android-9/arch-mips/include/asm/ |
D | uaccess.h | 67 …from, n) ({ register void __user *__cu_to_r __asm__("$4"); register const void *__cu_from_r _… argument 69 …user(to, from, n) ({ void __user *__cu_to; const void *__cu_from; long __cu_len; might_… argument 70 …ser_inatomic(to, from, n) ({ void __user *__cu_to; const void *__cu_from; long __cu_len; … argument 71 …ser_inatomic(to, from, n) ({ void *__cu_to; const void __user *__cu_from; long __cu_len; … argument 72 …user(to, from, n) ({ void __user *__cu_to; const void *__cu_from; long __cu_len; might_… argument 74 …from, n) ({ register void *__cu_to_r __asm__("$4"); register const void __user *__cu_from_r _… argument 75 …from, n) ({ register void *__cu_to_r __asm__("$4"); register const void __user *__cu_from_r _… argument 76 …user(to, from, n) ({ void *__cu_to; const void __user *__cu_from; long __cu_len; might_… argument 77 …user(to, from, n) ({ void *__cu_to; const void __user *__cu_from; long __cu_len; might_… argument 79 #define __copy_in_user(to, from, n) __copy_from_user(to, from, n) argument [all …]
|
/development/ndk/platforms/android-3/include/linux/mtd/ |
D | map.h | 79 #define INVALIDATE_CACHED_RANGE(map, from, size) do { if(map->inval_cache) map->inval_cache(map, … argument 97 #define map_copy_from(map, to, from, len) inline_map_copy_from(map, to, from, len) argument 99 #define map_copy_to(map, to, from, len) inline_map_copy_to(map, to, from, len) argument
|
D | mtd.h | 100 int (*point) (struct mtd_info *mtd, loff_t from, size_t len, size_t *retlen, u_char **mtdbuf); 102 void (*unpoint) (struct mtd_info *mtd, u_char * addr, loff_t from, size_t len); 104 int (*read) (struct mtd_info *mtd, loff_t from, size_t len, size_t *retlen, u_char *buf); 107 int (*read_oob) (struct mtd_info *mtd, loff_t from, 113 …int (*read_fact_prot_reg) (struct mtd_info *mtd, loff_t from, size_t len, size_t *retlen, u_char *… 115 …int (*read_user_prot_reg) (struct mtd_info *mtd, loff_t from, size_t len, size_t *retlen, u_char *… 116 …int (*write_user_prot_reg) (struct mtd_info *mtd, loff_t from, size_t len, size_t *retlen, u_char … 117 int (*lock_user_prot_reg) (struct mtd_info *mtd, loff_t from, size_t len);
|
/development/samples/ApiDemos/src/com/example/android/apis/app/ |
D | IncomingMessage.java | 66 static Intent[] makeMessageIntentStack(Context context, CharSequence from, in makeMessageIntentStack() argument 90 intents[3].putExtra(IncomingMessageView.KEY_FROM, from); in makeMessageIntentStack() 106 CharSequence from = "Joe"; in showAppNotification() local 119 makeMessageIntentStack(this, from, message), PendingIntent.FLAG_CANCEL_CURRENT); in showAppNotification() 129 notif.setLatestEventInfo(this, from, message, contentIntent); in showAppNotification() 155 CharSequence from = "Dianne"; in showInterstitialNotification() local 168 intent.putExtra(IncomingMessageView.KEY_FROM, from); in showInterstitialNotification() 182 notif.setLatestEventInfo(this, from, message, contentIntent); in showInterstitialNotification()
|
D | IncomingMessageInterstitial.java | 56 CharSequence from = getIntent().getCharSequenceExtra(IncomingMessageView.KEY_FROM); in switchToApp() local 59 Intent[] stack = IncomingMessage.makeMessageIntentStack(this, from, msg); in switchToApp()
|
D | IncomingMessageView.java | 47 ((TextView)findViewById(R.id.from)).setText( in onCreate()
|
/development/samples/Support4Demos/src/com/example/android/supportv4/app/ |
D | SharingSupport.java | 56 ShareCompat.IntentBuilder b = ShareCompat.IntentBuilder.from(this); in onCreateOptionsMenu() 65 ShareCompat.IntentBuilder.from(this) in onShareTextClick() 79 ShareCompat.IntentBuilder.from(this) in onShareFileClick() 102 ShareCompat.IntentBuilder.from(this) in onShareMultipleFileClick()
|
/development/samples/ApiDemos/src/com/example/android/apis/graphics/ |
D | BitmapPixels.java | 86 private static void makeRamp(int from, int to, int n, in makeRamp() argument 89 int r = getR32(from) << 23; in makeRamp() 90 int g = getG32(from) << 23; in makeRamp() 91 int b = getB32(from) << 23; in makeRamp() 92 int a = getA32(from) << 23; in makeRamp()
|
/development/tools/findunused/ |
D | removeunusedresources | 60 echo REMOVING STRING $LINE from $RESLINE 65 echo REMOVING $LINE from $RESLINE
|
/development/tutorials/NotepadCodeLab/Notepadv1Solution/src/com/android/demo/notepad1/ |
D | Notepadv1.java | 70 String[] from = new String[] { NotesDbAdapter.KEY_TITLE }; in fillData() local 75 new SimpleCursorAdapter(this, R.layout.notes_row, c, from, to); in fillData()
|
/development/ndk/platforms/android-3/arch-arm/include/asm/ |
D | uaccess.h | 70 #define __copy_from_user(to,from,n) (memcpy(to, (void __force *)from, n), 0) argument 71 #define __copy_to_user(to,from,n) (memcpy((void __force *)to, from, n), 0) argument
|
/development/ndk/platforms/android-3/include/linux/netfilter/ |
D | xt_connbytes.h | 30 aligned_u64 from; member
|
/development/samples/XmlAdapters/src/com/example/android/xmladapters/ |
D | Adapters.java | 805 String from = a.getString(R.styleable.CursorAdapter_MapItem_fromValue); in findMap() local 806 if (from == null) { in findMap() 819 transformation.addStringMapping(from, to); in findMap() 827 transformation.addResourceMapping(from, to); in findMap() 911 XmlCursorAdapter(Context context, int layout, String uri, String[] from, int[] to, in XmlCursorAdapter() argument 915 super(context, layout, null, from, to); in XmlCursorAdapter() 918 mFrom = from; in XmlCursorAdapter() 923 mColumns = new String[from.length + 1]; in XmlCursorAdapter() 926 System.arraycopy(from, 0, mColumns, 1, from.length); in XmlCursorAdapter() 929 final int count = from.length; in XmlCursorAdapter() [all …]
|
/development/samples/SkeletonApp/ |
D | readme.txt | 7 will use. You can run the application either directly from the "test" 8 list in the app launcher (it is named Skeleton App) or by selecting it from 30 {src/PACKAGE/CLASS.java}, where PACKAGE comes from the name in the <package> 31 tag and CLASS comes from the class in the <activity> tag.
|
/development/tutorials/NotepadCodeLab/Notepadv2/src/com/android/demo/notepad2/ |
D | Notepadv2.java | 57 String[] from = new String[]{NotesDbAdapter.KEY_TITLE}; in fillData() local 64 new SimpleCursorAdapter(this, R.layout.notes_row, mNotesCursor, from, to); in fillData()
|
/development/samples/SupportAppNavigation/src/com/example/android/support/appnavigation/app/ |
D | InterstitialMessageActivity.java | 35 TaskStackBuilder.from(this) in onViewContent()
|
/development/tutorials/NotepadCodeLab/Notepadv3Solution/src/com/android/demo/notepad3/ |
D | Notepadv3.java | 57 String[] from = new String[]{NotesDbAdapter.KEY_TITLE}; in fillData() local 64 new SimpleCursorAdapter(this, R.layout.notes_row, notesCursor, from, to); in fillData()
|
/development/samples/ApiDemos/src/com/example/android/apis/view/ |
D | Tabs1.java | 38 LayoutInflater.from(this).inflate(R.layout.tabs1, tabHost.getTabContentView(), true); in onCreate()
|
D | List5.java | 73 tv = (TextView) LayoutInflater.from(mContext).inflate( in getView()
|
/development/host/windows/usb/winusb/ |
D | BUILDME.TXT | 2 which can be obtained from Microsoft. Assuming that WDK is installed, you
|
/development/build/ |
D | sdk.atree | 22 # This is to help when the sdk.git project is branched differently from 42 # host tools from out/host/$(HOST_OS)-$(HOST_ARCH)/ 66 # version files for the SDK updater, from development.git 69 # copy build prop from out/.../sdk/ 79 # emulator skins from sdk.git 119 # NOTICE files are copied by build/core/Makefile from sdk.git 140 # version files for the SDK updater, from sdk.git 210 # NOTICE files are copied by build/core/Makefile from sdk.git 217 # empty add-on folder with just a readme copied from sdk.git
|
/development/tutorials/NotepadCodeLab/Notepadv3/src/com/android/demo/notepad3/ |
D | Notepadv3.java | 59 String[] from = new String[]{NotesDbAdapter.KEY_TITLE}; in fillData() local 66 new SimpleCursorAdapter(this, R.layout.notes_row, mNotesCursor, from, to); in fillData()
|
/development/samples/TicTacToeMain/ |
D | README.txt | 34 JAR file: the source and resources from the library are _actually_ merged in 36 the main project can either use or redefine behavior from the libraries.
|
/development/tutorials/NotepadCodeLab/Notepadv2Solution/src/com/android/demo/notepad2/ |
D | Notepadv2.java | 59 String[] from = new String[]{NotesDbAdapter.KEY_TITLE}; in fillData() local 66 new SimpleCursorAdapter(this, R.layout.notes_row, mNotesCursor, from, to); in fillData()
|
/development/samples/SearchableDictionary/src/com/example/android/searchabledict/ |
D | SearchableDictionary.java | 102 String[] from = new String[] { DictionaryDatabase.KEY_WORD, in showResults() local 111 R.layout.result, cursor, from, to); in showResults()
|