/development/ndk/platforms/android-9/include/sys/ |
D | time.h | 51 #define timercmp(a, b, op) \ argument 56 #define timeradd(a, b, res) \ argument 66 #define timersub(a, b, res) \ argument
|
/development/ndk/platforms/android-21/include/sys/ |
D | time.h | 51 #define timercmp(a, b, op) \ argument 56 #define timeradd(a, b, res) \ argument 66 #define timersub(a, b, res) \ argument
|
D | param.h | 45 #define MIN(a,b) (((a)<(b))?(a):(b)) argument 46 #define MAX(a,b) (((a)>(b))?(a):(b)) argument
|
/development/ndk/platforms/android-21/include/linux/ |
D | uuid.h | 25 __u8 b[16]; member 29 __u8 b[16]; member 31 #define UUID_LE(a, b, c, d0, d1, d2, d3, d4, d5, d6, d7) ((uuid_le) {{ (a) & 0xff, ((a) >> 8) & 0… argument 32 #define UUID_BE(a, b, c, d0, d1, d2, d3, d4, d5, d6, d7) ((uuid_be) {{ ((a) >> 24) & 0xff, ((a) >… argument
|
D | version.h | 20 #define KERNEL_VERSION(a,b,c) (((a) << 16) + ((b) << 8) + (c)) argument
|
/development/samples/browseable/BasicSyncAdapter/src/com.example.android.basicsyncadapter/ |
D | SyncUtils.java | 90 Bundle b = new Bundle(); in TriggerRefresh() local 97 b); // Extras in TriggerRefresh() local
|
/development/ndk/platforms/android-9/include/linux/ |
D | jiffies.h | 64 #define time_after(a,b) (typecheck(unsigned long, a) && typecheck(unsigned long, b) && ((long… argument 65 #define time_before(a,b) time_after(b,a) argument 66 #define time_after_eq(a,b) (typecheck(unsigned long, a) && typecheck(unsigned long, b) && ((l… argument 67 #define time_before_eq(a,b) time_after_eq(b,a) argument
|
D | version.h | 13 #define KERNEL_VERSION(a,b,c) (((a) << 16) + ((b) << 8) + (c)) argument
|
/development/samples/browseable/AppShortcuts/src/com.example.android.appshortcuts/ |
D | ShortcutHelper.java | 141 final ShortcutInfo.Builder b = new ShortcutInfo.Builder( in refreshShortcuts() local 162 final ShortcutInfo.Builder b = new ShortcutInfo.Builder(mContext, urlAsString); in createShortcutForUrl() local 173 private ShortcutInfo.Builder setSiteInformation(ShortcutInfo.Builder b, Uri uri) { in setSiteInformation() 189 private ShortcutInfo.Builder setExtras(ShortcutInfo.Builder b) { in setExtras()
|
/development/samples/ShortcutSample/src/com/example/android/shortcutsample/ |
D | ShortcutHelper.java | 143 final ShortcutInfo.Builder b = new ShortcutInfo.Builder( in refreshShortcuts() local 165 final ShortcutInfo.Builder b = new ShortcutInfo.Builder(mContext, urlAsString); in createShortcutForUrl() local 176 private ShortcutInfo.Builder setSiteInformation(ShortcutInfo.Builder b, Uri uri) { in setSiteInformation() 192 private ShortcutInfo.Builder setExtras(ShortcutInfo.Builder b) { in setExtras()
|
/development/samples/ApiDemos/src/com/example/android/apis/graphics/ |
D | BitmapPixels.java | 53 private static int pack8888(int r, int g, int b, int a) { in pack8888() 57 private static short pack565(int r, int g, int b) { in pack565() 61 private static short pack4444(int r, int g, int b, int a) { in pack4444() 76 int b = Color.blue(c); in premultiplyColor() local 91 int b = getB32(from) << 23; in makeRamp() local
|
/development/ndk/platforms/android-9/arch-x86/include/asm/ |
D | div64.h | 24 #define div_long_long_rem(a,b,c) div_ll_X_l_rem(a,b,c) argument
|
D | desc_32.h | 64 #define write_ldt_entry(dt, entry, a, b) write_dt_entry(dt, entry, a, b) argument 65 #define write_gdt_entry(dt, entry, a, b) write_dt_entry(dt, entry, a, b) argument 66 #define write_idt_entry(dt, entry, a, b) write_dt_entry(dt, entry, a, b) argument
|
D | byteorder.h | 40 struct { __u32 a,b; } s; in ___arch__swab64() member
|
/development/ndk/platforms/android-9/include/ |
D | strings.h | 47 #define bzero(b, len) (void)(__builtin_memset((b), '\0', (len))) argument
|
/development/ndk/platforms/android-21/include/ |
D | strings.h | 49 #define bzero(b, len) \ argument
|
/development/samples/SimpleJNI/src/com/example/android/simplejni/ |
D | SimpleJNI.java | 42 static native int add(int a, int b); in add()
|
/development/samples/browseable/CustomChoiceList/src/com.example.android.customchoicelist/ |
D | CheckableLinearLayout.java | 47 public void setChecked(boolean b) { in setChecked()
|
/development/samples/browseable/RuntimePermissionsBasic/src/com.example.android.basicpermissions/ |
D | MainActivity.java | 69 Button b = (Button) findViewById(R.id.button_open_camera); in onCreate() local
|
/development/samples/browseable/WatchViewStub/src/com.example.android.google.wearable.watchviewstub/ |
D | MainActivity.java | 39 public void onCreate(Bundle b) { in onCreate()
|
/development/samples/RenderScript/Levels/src/com/android/rs/levels/ |
D | LevelsDalvikActivity.java | 170 Bitmap b = BitmapFactory.decodeResource(getResources(), resource, options); in loadBitmap() local 186 float b = (float)((mInPixels[i] >> 16) & 0xff); in filter() local
|
/development/samples/browseable/DelayedConfirmation/Application/src/com.example.android.wearable.delayedconfirmation/ |
D | MainActivity.java | 47 public void onCreate(Bundle b) { in onCreate()
|
/development/samples/ApiDemos/src/com/example/android/apis/view/ |
D | SecureViewOverlay.java | 52 protected void onLayout(boolean changed, int l, int t, int r, int b) { in onLayout()
|
/development/samples/ShortcutDemo/launcher/src/com/example/android/pm/shortcutlauncherdemo/ |
D | ShortcutListFragment.java | 52 final Bundle b = new Bundle(); in setArguments() local 157 final Bundle b = getArguments(); in refreshList() local
|
/development/samples/ApiDemos/src/com/example/android/apis/app/ |
D | FragmentArguments.java | 62 Bundle b = new Bundle(); in newInstance() local
|