Home
last modified time | relevance | path

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

12345678910>>...21

/packages/modules/DnsResolver/
Dres_comp.cpp131 #define hyphenchar(c) ((c) == 0x2d) argument
132 #define bslashchar(c) ((c) == 0x5c) argument
133 #define periodchar(c) ((c) == PERIOD) argument
134 #define asterchar(c) ((c) == 0x2a) argument
135 #define alphachar(c) (((c) >= 0x41 && (c) <= 0x5a) || ((c) >= 0x61 && (c) <= 0x7a)) argument
136 #define digitchar(c) ((c) >= 0x30 && (c) <= 0x39) argument
137 #define underscorechar(c) ((c) == 0x5f) argument
139 #define borderchar(c) (alphachar(c) || digitchar(c)) argument
140 #define middlechar(c) (borderchar(c) || hyphenchar(c) || underscorechar(c)) argument
141 #define domainchar(c) ((c) > 0x20 && (c) < 0x7f) argument
/packages/apps/DocumentsUI/tests/common/com/android/documentsui/
DInspectorProvider.java72 MatrixCursor c = createDocCursor(projection); in queryDocument() local
77 MatrixCursor c = createDocCursor(projection); in queryDocument() local
98 MatrixCursor c = createDocCursor(projection); in queryChildDocuments() local
106 MatrixCursor c = createDocCursor(projection); in queryChildDocuments() local
114 MatrixCursor c = createDocCursor(projection); in queryChildDocuments() local
121 MatrixCursor c = createDocCursor(projection); in queryChildDocuments() local
134 private void addFileWithSize(MatrixCursor c, String id, long size) { in addFileWithSize()
DTestRootProvider.java68 MatrixCursor c = new MatrixCursor( in queryRoots() local
79 protected void addFile(MatrixCursor c, String id) { in addFile()
83 protected void addFile(MatrixCursor c, String id, int flags) { in addFile()
93 protected void addFolder(MatrixCursor c, String id) { in addFolder()
97 protected void addFolder(MatrixCursor c, String id, int flags) { in addFolder()
108 MatrixCursor c = new MatrixCursor( in createDocCursor() local
DBrokenSettingsEnabledProvider.java44 MatrixCursor c = createDocCursor(projection); in queryDocument() local
57 MatrixCursor c = createDocCursor(projection); in queryChildDocuments() local
/packages/inputmethods/LatinIME/native/jni/src/utils/
Dchar_utils.h32 static AK_FORCE_INLINE bool isAsciiUpper(int c) { in isAsciiUpper()
38 static AK_FORCE_INLINE int toLowerCase(const int c) { in toLowerCase()
48 static AK_FORCE_INLINE int toBaseLowerCase(const int c) { in toBaseLowerCase()
66 static AK_FORCE_INLINE int toBaseCodePoint(int c) { in toBaseCodePoint()
130 static AK_FORCE_INLINE bool isAscii(int c) { in isAscii()
134 static AK_FORCE_INLINE int toAsciiLower(int c) { in toAsciiLower()
/packages/apps/Test/connectivity/sl4n/rapidjson/include/rapidjson/
Dencodings.h128 Ch c = is.Take(); in Decode() local
157 Ch c; in Validate() local
199 Ch c = Take(is); in TakeBOM() local
265 Ch c = is.Take(); in Decode() local
284 Ch c; in Validate() local
302 CharType c = Take(is); in TakeBOM() local
309 CharType c = (unsigned char)is.Take(); in Take() local
334 CharType c = Take(is); in TakeBOM() local
341 CharType c = (unsigned char)is.Take() << 8; in Take() local
388 Ch c = is.Take(); in Decode() local
[all …]
Dfilewritestream.h35 void Put(char c) { in Put()
42 void PutN(char c, size_t n) { in PutN()
89 inline void PutN(FileWriteStream& stream, char c, size_t n) { in PutN()
/packages/apps/DocumentsUI/src/com/android/documentsui/base/
DDocumentFilters.java51 private static boolean isSharableInO(Cursor c) { in isSharableInO()
62 private static boolean isSharablePreO(Cursor c) { in isSharablePreO()
74 private static final boolean isVirtual(Cursor c) { in isVirtual()
82 private static final boolean isNotMovable(Cursor c) { in isNotMovable()
/packages/apps/Launcher3/tests/tapl/com/android/launcher3/tapl/
DBaseOverview.java51 try (LauncherInstrumentation.Closable c = in flingForward()
67 try (LauncherInstrumentation.Closable c = mLauncher.addContextLayer( in dismissAllTasks()
89 try (LauncherInstrumentation.Closable c = in flingBackward()
108 try (LauncherInstrumentation.Closable c = mLauncher.addContextLayer( in getCurrentTask()
DWorkspace.java57 try (LauncherInstrumentation.Closable c = in switchToAllApps()
93 try (LauncherInstrumentation.Closable c = mLauncher.addContextLayer( in tryGetWorkspaceAppIcon()
111 try (LauncherInstrumentation.Closable c = mLauncher.addContextLayer( in getWorkspaceAppIcon()
127 try (LauncherInstrumentation.Closable c = mLauncher.addContextLayer( in ensureWorkspaceIsScrollable()
210 try (LauncherInstrumentation.Closable c = mLauncher.addContextLayer("pressed Ctrl+W")) { in openAllWidgets()
/packages/apps/Car/Settings/src/com/android/car/settings/bluetooth/
DUtf8ByteLengthFilter.java54 char c = source.charAt(i); in filter() local
62 char c = dest.charAt(i); in filter() local
74 char c = source.charAt(i); in filter() local
/packages/apps/Gallery2/jni/filters/
Dcontrast.c20 unsigned char clamp(int c) in clamp()
30 int clampMax(int c,int max) in clampMax()
47 float c = 127-m*127; in JNIFUNCF() local
/packages/apps/Settings/src/com/android/settings/bluetooth/
DUtf8ByteLengthFilter.java55 char c = source.charAt(i); in filter() local
63 char c = dest.charAt(i); in filter() local
75 char c = source.charAt(i); in filter() local
/packages/services/Car/tests/CarDeveloperOptions/src/com/android/car/developeroptions/bluetooth/
DUtf8ByteLengthFilter.java55 char c = source.charAt(i); in filter() local
63 char c = dest.charAt(i); in filter() local
75 char c = source.charAt(i); in filter() local
/packages/inputmethods/LatinIME/common/src/com/android/inputmethod/latin/common/
DUnicodeSurrogate.java31 public static boolean isLowSurrogate(final char c) { in isLowSurrogate()
35 public static boolean isHighSurrogate(final char c) { in isHighSurrogate()
/packages/apps/DocumentsUI/tests/unit/com/android/documentsui/
DRecentsLoaderTests.java87 final Cursor c = result.cursor; in testDocumentsNotIncludeDirectory() local
103 final Cursor c = result.cursor; in testDocumentsNotMovable() local
130 TestCursor c = (TestCursor) mEnv.mockProviders.get(TestProvidersAccess.HOME.authority) in testContentsUpdate_observable() local
DGlobalSearchLoaderTest.java151 final Cursor c = result.cursor; in testSearchResult_includeDirectory() local
163 final Cursor c = result.cursor; in testSearchResult_isNotMovable() local
191 final Cursor c = result.cursor; in testSearchResult_includeSearchString() local
224 final Cursor c = result.cursor; in testSearchResult_includeDifferentRoot() local
/packages/apps/TV/src/com/android/tv/util/
DAsyncDbTask.java152 try (Cursor c = in doInBackground()
183 protected abstract Result onQuery(Cursor c); in onQuery()
226 protected final List<T> onQuery(Cursor c) { in onQuery()
256 protected abstract T fromCursor(Cursor c); in fromCursor()
278 protected final T onQuery(Cursor c) { in onQuery()
308 protected abstract T fromCursor(Cursor c); in fromCursor()
326 protected final Channel fromCursor(Cursor c) { in fromCursor()
366 protected final Program fromCursor(Cursor c) { in fromCursor()
379 protected final RecordedProgram fromCursor(Cursor c) { in fromCursor()
442 protected Program fromCursor(Cursor c) { in fromCursor()
/packages/apps/TV/tests/robotests/src/com/android/tv/dvr/
DScheduledRecordingTest.java72 Channel c = new ChannelImpl.Builder().build(); in testBuildProgram() local
102 ScheduledRecording c = in testBuild_priority() local
115 ScheduledRecording a, ScheduledRecording b, ScheduledRecording c) { in sortByPriority()
/packages/providers/ContactsProvider/tests/src/com/android/providers/contacts/
DPhotoStoreTest.java142 Cursor c = mDb.query(Tables.PHOTO_FILES, in runStorageTestForResource() local
163 Cursor c = mDb.query(Tables.PHOTO_FILES, in runStorageTestForResourceWithCrop() local
187 Cursor c = mDb.query(Tables.PHOTO_FILES, new String[]{PhotoFiles._ID}, in testRemoveEntry() local
233 Cursor c = mDb.query(Tables.PHOTO_FILES, new String[]{PhotoFiles._ID}, in testCleanup() local
/packages/apps/Bluetooth/src/com/android/bluetooth/map/
DBluetoothMapContent.java325 public void setMessageColumns(Cursor c) { in setMessageColumns()
350 public void setEmailMessageColumns(Cursor c) { in setEmailMessageColumns()
358 public void setImMessageColumns(Cursor c) { in setImMessageColumns()
369 public void setEmailImConvoColumns(Cursor c) { in setEmailImConvoColumns()
381 public void setEmailImConvoContactColumns(Cursor c) { in setEmailImConvoContactColumns()
399 public void setSmsColumns(Cursor c) { in setSmsColumns()
410 public void setMmsColumns(Cursor c) { in setMmsColumns()
443 private static void close(Closeable c) { in close()
452 private void setProtected(BluetoothMapMessageListingElement e, Cursor c, FilterInfo fi, in setProtected()
469 private void setThreadId(BluetoothMapMessageListingElement e, Cursor c, FilterInfo fi, in setThreadId()
[all …]
/packages/apps/DocumentsUI/tests/unit/com/android/documentsui/sorting/
DSortingCursorWrapperTest.java117 MatrixCursor c = new MatrixCursor(COLUMNS); in setUp() local
230 MatrixCursor c = new MatrixCursor(COLUMNS); in testSort_sizesWithBucketing_ascending() local
282 MatrixCursor c = new MatrixCursor(COLUMNS); in testSort_sizesWithBucketing_descending() local
333 MatrixCursor c = new MatrixCursor(COLUMNS); in testSort_time_ascending() local
370 MatrixCursor c = new MatrixCursor(COLUMNS); in testSort_time_descending() local
476 MatrixCursor c = new MatrixCursor(COLUMNS); in testReturnsWrappedExtras() local
499 private Cursor createSortingCursorWrapper(Cursor c) { in createSortingCursorWrapper()
/packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/utils/
DCapsModeUtils.java135 final char c = cs.charAt(i - 1); in getCapsMode() local
206 final char c = cs.charAt(j - 1); in getCapsMode() local
215 char c = cs.charAt(--j); in getCapsMode() local
/packages/apps/QuickSearchBox/src/com/android/quicksearchbox/util/
DJavaNetHttpHelper.java83 HttpURLConnection c = null; in get() local
103 HttpURLConnection c = null; in post() local
131 HttpURLConnection c = (HttpURLConnection) u.openConnection(); in createConnection() local
150 private String getResponseFrom(HttpURLConnection c) throws IOException, HttpException { in getResponseFrom()
/packages/apps/Launcher3/robolectric_tests/src/com/android/launcher3/model/
DGridSizeMigrationTaskTest.java85 Cursor c = mContext.getContentResolver().query(LauncherSettings.Favorites.CONTENT_URI, in verifyHotseat() local
103 Cursor c = mContext.getContentResolver().query(LauncherSettings.Favorites.CONTENT_URI, in verifyHotseat() local
284 Cursor c = mContext.getContentResolver().query( in verifyWorkspace() local
304 Cursor c = mContext.getContentResolver().query(LauncherSettings.Favorites.CONTENT_URI, in verifyWorkspace() local

12345678910>>...21