Home
last modified time | relevance | path

Searched defs:where (Results 1 – 25 of 58) sorted by relevance

123

/aosp14/frameworks/base/core/java/com/android/internal/inputmethod/
H A DImeTracingClientImpl.java40 public void triggerClientDump(String where, @NonNull InputMethodManager immInstance, in triggerClientDump()
56 sendToService(proto.getBytes(), IME_TRACING_FROM_CLIENT, where); in triggerClientDump() local
63 public void triggerServiceDump(String where, @NonNull ServiceDumper dumper, in triggerServiceDump()
79 sendToService(proto.getBytes(), IME_TRACING_FROM_IMS, where); in triggerServiceDump() local
86 public void triggerManagerServiceDump(String where) { in triggerManagerServiceDump()
H A DImeTracing.java80 public void sendToService(byte[] protoDump, int source, String where) { in sendToService()
113 public abstract void triggerClientDump(String where, InputMethodManager immInstance, in triggerClientDump()
139 public abstract void triggerServiceDump(String where, ServiceDumper dumper, in triggerServiceDump()
147 public abstract void triggerManagerServiceDump(String where); in triggerManagerServiceDump()
H A DImeTracingServerImpl.java108 public void triggerClientDump(String where, InputMethodManager immInstance, in triggerClientDump()
114 public void triggerServiceDump(String where, ServiceDumper dumper, @Nullable byte[] icProto) { in triggerServiceDump()
119 public void triggerManagerServiceDump(String where) { in triggerManagerServiceDump()
/aosp14/frameworks/base/services/tests/uiservicestests/src/com/android/server/notification/
H A DNotificationVisitUrisTest.java282 private static Object generateObject(Class<?> clazz, Location where, in generateObject()
357 private static Object constructEmpty(Class<?> clazz, Location where, in constructEmpty()
419 private static void invokeAllSetters(Object instance, Location where, boolean allOverloads, in invokeAllSetters()
450 private static Object[] generateParameters(Executable executable, Location where, in generateParameters()
467 private static Object generateParameter(Type parameterType, Location where, in generateParameter()
509 static List<Method> getAllSetters(Class<?> clazz, Location where, boolean allOverloads, in getAllSetters()
532 setters.addAll(chooseOverloads(methods.get(methodName), where, allOverloads)); in getAllSetters() local
553 static <T extends Executable> T chooseBestOverload(List<T> executables, Location where) { in chooseBestOverload()
560 Location where, boolean chooseMultiple) { in chooseOverloads()
650 Object generate(Class<?> clazz, Location where) { in generate()
[all …]
/aosp14/frameworks/base/core/java/android/text/method/
H A DOffsetMapping.java152 public int where; field in OffsetMapping.TextUpdate
164 public TextUpdate(int where, int before, int after) { in TextUpdate()
/aosp14/frameworks/base/core/proto/android/view/inputmethod/
H A Dinputmethodeditortrace.proto65 optional string where = 2; field
115 optional string where = 2; field
152 optional string where = 2; field
/aosp14/frameworks/base/services/accessibility/java/com/android/server/accessibility/
H A DAccessibilityTraceManager.java144 public void logTrace(String where, long loggingTypes) { in logTrace()
149 public void logTrace(String where, long loggingTypes, String callingParams) { in logTrace()
158 public void logTrace(long timestamp, String where, long loggingTypes, String callingParams, in logTrace()
/aosp14/frameworks/base/telephony/common/com/google/android/mms/util/
H A DSqliteWrapper.java49 ContentValues values, String where, String[] selectionArgs) { in update()
60 String where, String[] selectionArgs) { in delete()
/aosp14/frameworks/base/core/tests/coretests/src/android/app/activity/
H A DActivityTestsBase.java87 public void activityFinished(int resultCode, Intent data, RuntimeException where) { in activityFinished()
113 RuntimeException where = new RuntimeException("Original error was here"); in finishWithResult() local
118 public void finishWithResult(int resultCode, Intent data, RuntimeException where) { in finishWithResult()
H A DLocalProvider.java154 public int update(Uri url, ContentValues values, String where, String[] whereArgs) { in update()
183 public int delete(Uri url, String where, String[] whereArgs) { in delete()
/aosp14/frameworks/base/core/tests/coretests/src/android/app/
H A DSuggestionProvider.java97 public int update(Uri url, ContentValues values, String where, String[] whereArgs) { in update()
107 public int delete(Uri url, String where, String[] whereArgs) { in delete()
/aosp14/frameworks/base/core/java/android/database/sqlite/
H A DSqliteWrapper.java80 ContentValues values, String where, String[] selectionArgs) { in update()
92 String where, String[] selectionArgs) { in delete()
H A DSQLiteQueryBuilder.java374 boolean distinct, String tables, String[] columns, String where, in buildQueryString()
860 String where = computeWhere(selection); in buildQuery() local
929 final String where = computeWhere(selection); in buildUpdate() local
940 final String where = computeWhere(selection); in buildDelete() local
1177 final StringBuilder where = new StringBuilder(); in computeWhere() local
/aosp14/frameworks/base/core/java/android/text/
H A DEditable.java64 public Editable insert(int where, CharSequence text, int start, int end); in insert()
70 public Editable insert(int where, CharSequence text); in insert()
H A DPackedIntVector.java295 private final void moveValueGapTo(int column, int where) { in moveValueGapTo()
318 private final void moveRowGapTo(int where) { in moveRowGapTo()
H A DSelection.java515 int where = findEdge(text, layout, -1); in extendToLeftEdge() local
521 int where = findEdge(text, layout, 1); in extendToRightEdge() local
527 int where = findEdge(text, layout, -1); in moveToLeftEdge() local
533 int where = findEdge(text, layout, 1); in moveToRightEdge() local
/aosp14/frameworks/base/core/java/android/accessibilityservice/
H A DAccessibilityTrace.java186 void logTrace(String where, long loggingFlags); in logTrace()
196 void logTrace(String where, long loggingFlags, String callingParams); in logTrace()
213 void logTrace(long timestamp, String where, long loggingFlags, String callingParams, in logTrace()
/aosp14/frameworks/base/core/proto/android/server/
H A Dwindowmanagertrace.proto53 optional string where = 2; field
H A Daccessibilitytrace.proto58 optional string where = 6; field
/aosp14/frameworks/base/core/java/android/inputmethodservice/
H A DInputMethodServiceInternal.java86 default void triggerServiceDump(@NonNull String where, @Nullable byte[] icProto) { in triggerServiceDump()
/aosp14/frameworks/base/core/java/android/view/inputmethod/
H A DInputMethodManagerGlobal.java57 public static void startProtoDump(byte[] protoDump, int source, String where, in startProtoDump()
/aosp14/frameworks/base/core/tests/coretests/src/android/content/
H A DMemoryFileProvider.java163 public int update(Uri url, ContentValues values, String where, String[] whereArgs) { in update()
173 public int delete(Uri url, String where, String[] whereArgs) { in delete()
/aosp14/frameworks/base/services/core/java/com/android/server/wm/
H A DAccessibilityController.java1844 void logTrace(String where, long loggingTypes) { in logTrace()
1848 void logTrace(String where, long loggingTypes, String callingParams) { in logTrace()
1852 void logTrace(String where, long loggingTypes, String callingParams, byte[] a11yDump, in logTrace()
1859 public void logTrace(String where, long loggingTypes, String callingParams, byte[] a11yDump, in logTrace()
2032 void logState(String where, long loggingTypes) { in logState()
2042 void logState(String where, long loggingTypes, String callingParams) { in logState()
2052 void logState(String where, long loggingTypes, String callingParams, byte[] a11yDump) { in logState()
2063 void logState(String where, long loggingTypes, String callingParams, byte[] a11yDump, in logState()
2077 void logState(String where, long loggingTypes, String callingParams, byte[] a11yDump, in logState()
2092 void logState(String where, long loggingTypes, String callingParams, byte[] a11yDump, in logState()
[all …]
H A DWindowTracing.java283 void logState(String where) { in logState()
312 private void log(String where) { in log()
/aosp14/frameworks/base/core/java/android/webkit/
H A DWebIconDatabase.java80 public abstract void bulkRequestIconForPageUrl(ContentResolver cr, String where, in bulkRequestIconForPageUrl()

123