Home
last modified time | relevance | path

Searched defs:c (Results 1 – 25 of 150) sorted by relevance

123456

/development/ndk/platforms/android-3/include/
Dctype.h102 __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 …]
Dstdint.h75 # 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/
Dctype.h26 #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 …]
Ddebug_locks.h20 #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
Dvt_buffer.h18 #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/
Dstdint.h108 #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/
DGridLayout3.java65 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
DList7.java63 Cursor c = getContentResolver().query(Phone.CONTENT_URI, in onCreate() local
82 Cursor c = (Cursor) parent.getItemAtPosition(position); in onItemSelected() local
DDateWidgets1.java70 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/
DGridLayout3.java76 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/
Dcard.h72 #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/
DBitmapPixels.java41 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()
DPatterns.java35 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/
DAdvertiserFragment.java139 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/
DMorseCodeConverter.java75 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/
DSmsTest.java51 Cursor c = getSmsCursor(); in testReceivedSms() local
66 Cursor c; in getSmsCursor() local
/development/samples/browseable/CardEmulation/src/com.example.android.cardemulation/
DAccountStorage.java39 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/
DDividerItemDecoration.java58 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/
DCubeWallpaper1.java155 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/
DVaultProviderTest.java56 Cursor c; in testDeleteDirectory() local
91 private static void assertContains(Cursor c, String... docs) { in assertContains()
/development/samples/Spinner/src/com/android/example/spinner/
DSpinnerActivity.java171 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/
Dvga.h30 #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/
DEclipse.java35 public static void generateFrom(Configuration c) throws IOException { in generateFrom()
117 Configuration c) { in constructExcluding()
/development/ndk/sources/android/ndk_helper/
Dinterpolator.cpp96 float c = dest_value_ - start_value_; in Update() local
108 const float c ) in GetFormula()
/development/samples/CubeLiveWallpaper/src/com/example/android/livecubes/cube2/
DCubeWallpaper2.java222 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()

123456