/development/ndk/platforms/android-3/include/ |
D | ctype.h | 102 __CTYPE_INLINE int isalnum(int c) in isalnum() 107 __CTYPE_INLINE int isalpha(int c) in isalpha() 112 __CTYPE_INLINE int iscntrl(int c) in iscntrl() 117 __CTYPE_INLINE int isdigit(int c) in isdigit() 122 __CTYPE_INLINE int isgraph(int c) in isgraph() 127 __CTYPE_INLINE int islower(int c) in islower() 132 __CTYPE_INLINE int isprint(int c) in isprint() 137 __CTYPE_INLINE int ispunct(int c) in ispunct() 142 __CTYPE_INLINE int isspace(int c) in isspace() 147 __CTYPE_INLINE int isupper(int c) in isupper() [all …]
|
D | stdint.h | 75 # define INT8_C(c) c argument 76 # define INT_LEAST8_C(c) INT8_C(c) argument 77 # define INT_FAST8_C(c) INT8_C(c) argument 79 # define UINT8_C(c) c argument 80 # define UINT_LEAST8_C(c) UINT8_C(c) argument 81 # define UINT_FAST8_C(c) UINT8_C(c) argument 108 # define INT16_C(c) c argument 109 # define INT_LEAST16_C(c) INT16_C(c) argument 110 # define INT_FAST16_C(c) INT32_C(c) argument 112 # define UINT16_C(c) c argument [all …]
|
/development/ndk/platforms/android-3/include/linux/ |
D | ctype.h | 26 #define isalnum(c) ((__ismask(c)&(_U|_L|_D)) != 0) argument 27 #define isalpha(c) ((__ismask(c)&(_U|_L)) != 0) argument 28 #define iscntrl(c) ((__ismask(c)&(_C)) != 0) argument 29 #define isdigit(c) ((__ismask(c)&(_D)) != 0) argument 30 #define isgraph(c) ((__ismask(c)&(_P|_U|_L|_D)) != 0) argument 31 #define islower(c) ((__ismask(c)&(_L)) != 0) argument 32 #define isprint(c) ((__ismask(c)&(_P|_U|_L|_D|_SP)) != 0) argument 33 #define ispunct(c) ((__ismask(c)&(_P)) != 0) argument 34 #define isspace(c) ((__ismask(c)&(_S)) != 0) argument 35 #define isupper(c) ((__ismask(c)&(_U)) != 0) argument [all …]
|
D | debug_locks.h | 20 #define DEBUG_LOCKS_WARN_ON(c) ({ int __ret = 0; if (unlikely(c)) { if (debug_locks_off())… argument 22 #define SMP_DEBUG_LOCKS_WARN_ON(c) do { } while (0) argument
|
D | vt_buffer.h | 18 #define scr_memcpyw(d, s, c) memcpy(d, s, c) argument 19 #define scr_memmovew(d, s, c) memmove(d, s, c) argument
|
/development/ndk/platforms/android-21/include/ |
D | stdint.h | 108 #define INT8_C(c) c argument 109 #define INT_LEAST8_C(c) INT8_C(c) argument 110 #define INT_FAST8_C(c) INT8_C(c) argument 112 #define UINT8_C(c) c argument 113 #define UINT_LEAST8_C(c) UINT8_C(c) argument 114 #define UINT_FAST8_C(c) UINT8_C(c) argument 116 #define INT16_C(c) c argument 117 #define INT_LEAST16_C(c) INT16_C(c) argument 118 #define INT_FAST16_C(c) INT32_C(c) argument 120 #define UINT16_C(c) c argument [all …]
|
/development/samples/ApiDemos/src/com/example/android/apis/view/ |
D | GridLayout3.java | 65 TextView c = new TextView(context); in create() local 71 TextView c = new TextView(context); in create() local 77 TextView c = new TextView(context); in create() local 82 EditText c = new EditText(context); in create() local 88 TextView c = new TextView(context); in create() local 93 TextView c = new EditText(context); in create() local 99 Button c = new Button(context); in create() local 104 Button c = new Button(context); in create() local
|
D | List7.java | 63 Cursor c = getContentResolver().query(Phone.CONTENT_URI, in onCreate() local 82 Cursor c = (Cursor) parent.getItemAtPosition(position); in onItemSelected() local
|
D | DateWidgets1.java | 70 final Calendar c = Calendar.getInstance(); in onCreate() local 150 private static String pad(int c) { in pad()
|
/development/samples/Support7Demos/src/com/example/android/supportv7/view/ |
D | GridLayout3.java | 76 TextView c = new TextView(context); in create() local 82 TextView c = new TextView(context); in create() local 88 TextView c = new TextView(context); in create() local 93 EditText c = new EditText(context); in create() local 99 TextView c = new TextView(context); in create() local 104 EditText c = new EditText(context); in create() local 110 Button c = new Button(context); in create() local 115 Button c = new Button(context); in create() local
|
/development/ndk/platforms/android-3/include/linux/mmc/ |
D | card.h | 72 #define mmc_card_present(c) ((c)->state & MMC_STATE_PRESENT) argument 73 #define mmc_card_dead(c) ((c)->state & MMC_STATE_DEAD) argument 74 #define mmc_card_bad(c) ((c)->state & MMC_STATE_BAD) argument 75 #define mmc_card_sd(c) ((c)->state & MMC_STATE_SDCARD) argument 76 #define mmc_card_readonly(c) ((c)->state & MMC_STATE_READONLY) argument 78 #define mmc_card_set_present(c) ((c)->state |= MMC_STATE_PRESENT) argument 79 #define mmc_card_set_dead(c) ((c)->state |= MMC_STATE_DEAD) argument 80 #define mmc_card_set_bad(c) ((c)->state |= MMC_STATE_BAD) argument 81 #define mmc_card_set_sd(c) ((c)->state |= MMC_STATE_SDCARD) argument 82 #define mmc_card_set_readonly(c) ((c)->state |= MMC_STATE_READONLY) argument [all …]
|
/development/samples/ApiDemos/src/com/example/android/apis/graphics/ |
D | BitmapPixels.java | 41 private static int getR32(int c) { return (c >> 0) & 0xFF; } in getR32() 43 private static int getG32(int c) { return (c >> 8) & 0xFF; } in getG32() 45 private static int getB32(int c) { return (c >> 16) & 0xFF; } in getB32() 47 private static int getA32(int c) { return (c >> 24) & 0xFF; } in getA32() 65 private static int mul255(int c, int a) { in mul255() 73 private static int premultiplyColor(int c) { in premultiplyColor()
|
D | Patterns.java | 35 Canvas c = new Canvas(bm); in makeBitmap1() local 45 Canvas c = new Canvas(bm); in makeBitmap2() local
|
/development/samples/browseable/BluetoothAdvertisements/src/com.example.android.bluetoothadvertisements/ |
D | AdvertiserFragment.java | 139 private static Intent getServiceIntent(Context c) { in getServiceIntent() 162 Context c = getActivity(); in startAdvertising() local 170 Context c = getActivity(); in stopAdvertising() local
|
/development/samples/ApiDemos/src/com/example/android/apis/os/ |
D | MorseCodeConverter.java | 75 static long[] pattern(char c) { in pattern() 98 char c = str.charAt(i); in pattern() local 121 char c = str.charAt(i); in pattern() local
|
/development/tools/emulator/test-apps/SmokeTests/src/com/android/emulator/smoketests/sms/ |
D | SmsTest.java | 51 Cursor c = getSmsCursor(); in testReceivedSms() local 66 Cursor c; in getSmsCursor() local
|
/development/samples/browseable/CardEmulation/src/com.example.android.cardemulation/ |
D | AccountStorage.java | 39 public static void SetAccount(Context c, String s) { in SetAccount() 48 public static String GetAccount(Context c) { in GetAccount()
|
/development/samples/Support7Demos/src/com/example/android/supportv7/widget/decorator/ |
D | DividerItemDecoration.java | 58 public void onDraw(Canvas c, RecyclerView parent) { in onDraw() 66 public void drawVertical(Canvas c, RecyclerView parent) { in drawVertical() 83 public void drawHorizontal(Canvas c, RecyclerView parent) { in drawHorizontal()
|
/development/samples/CubeLiveWallpaper/src/com/example/android/livecubes/cube1/ |
D | CubeWallpaper1.java | 155 Canvas c = null; in drawFrame() local 178 void drawCube(Canvas c) { in drawCube() 202 void drawLine(Canvas c, int x1, int y1, int z1, int x2, int y2, int z2) { in drawLine() 234 void drawTouchPoint(Canvas c) { in drawTouchPoint()
|
/development/samples/Vault/tests/src/com/example/android/vault/ |
D | VaultProviderTest.java | 56 Cursor c; in testDeleteDirectory() local 91 private static void assertContains(Cursor c, String... docs) { in assertContains()
|
/development/samples/Spinner/src/com/android/example/spinner/ |
D | SpinnerActivity.java | 171 public myOnItemSelectedListener(Activity c, ArrayAdapter<CharSequence> ad) { in myOnItemSelectedListener() 291 public boolean readInstanceState(Context c) { in readInstanceState() 327 public boolean writeInstanceState(Context c) { in writeInstanceState()
|
/development/ndk/platforms/android-9/arch-mips/include/asm/ |
D | vga.h | 30 #define scr_memcpyw(d, s, c) memcpy(d, s, c) argument 31 #define scr_memmovew(d, s, c) memmove(d, s, c) argument
|
/development/tools/idegen/src/ |
D | Eclipse.java | 35 public static void generateFrom(Configuration c) throws IOException { in generateFrom() 117 Configuration c) { in constructExcluding()
|
/development/ndk/sources/android/ndk_helper/ |
D | interpolator.cpp | 96 float c = dest_value_ - start_value_; in Update() local 108 const float c ) in GetFormula()
|
/development/samples/CubeLiveWallpaper/src/com/example/android/livecubes/cube2/ |
D | CubeWallpaper2.java | 222 Canvas c = null; in drawFrame() local 240 void drawCube(Canvas c) { in drawCube() 278 void drawLines(Canvas c) { in drawLines() 288 void drawTouchPoint(Canvas c) { in drawTouchPoint()
|