/frameworks/base/core/tests/coretests/src/android/os/ |
IBinderThreadPriorityService.aidl | 22 void callBack(IBinderThreadPriorityService recurse);
|
BinderThreadPriorityService.java | 41 public void callBack(IBinderThreadPriorityService recurse) { 43 recurse.callBack(this); 45 Log.e(TAG, "Binder callback failed", e); 52 recurse.callBack(this); 54 Log.e(TAG, "Binder callback failed", e);
|
BinderThreadPriorityTest.java | 55 public void callBack(IBinderThreadPriorityService cb) { fail(); } 133 public void callBack(IBinderThreadPriorityService cb) {
|
/external/chromium_org/content/public/android/java/src/org/chromium/content/browser/input/ |
WeekPickerDialog.java | 15 * @param callBack How the parent is notified that the date is set. 20 OnValueSetListener callBack, 23 this(context, 0, callBack, year, weekOfYear, minValue, maxValue); 29 * @param callBack How the parent is notified that the date is set. 35 OnValueSetListener callBack, 39 super(context, theme, callBack, year, weekOfYear, minValue, maxValue);
|
MonthPickerDialog.java | 15 * @param callBack How the parent is notified that the date is set. 19 public MonthPickerDialog(Context context, OnValueSetListener callBack, 21 super(context, callBack, year, monthOfYear, minMonth, maxMonth);
|
TwoFieldDatePickerDialog.java | 26 * The callback used to indicate the user is done filling in the date. 39 * @param callBack How the parent is notified that the date is set. 44 OnValueSetListener callBack, 49 this(context, 0, callBack, year, positionInYear, minValue, maxValue); 55 * @param callBack How the parent is notified that the date is set. 61 OnValueSetListener callBack, 68 mCallBack = callBack;
|
DateTimePickerDialog.java | 32 * The callback used to indicate the user is done filling in the date. 52 * @param callBack How the parent is notified that the date is set. 58 OnDateTimeSetListener callBack, 69 mCallBack = callBack;
|
/external/chromium_org/third_party/skia/src/animator/ |
SkAnimatorScript.h | 42 void* callBack, SkScriptValue* ); 43 static bool EvalEnum(const char* token, size_t len, void* callBack, SkScriptValue* ); 44 static bool EvalID(const char* token, size_t len, void* callBack, SkScriptValue* ); 51 static bool EvalNamedColor(const char* token, size_t len, void* callBack, SkScriptValue* ); 53 void* callBack, SkScriptValue* ); 55 static bool Infinity(const char* token, size_t len, void* callBack, SkScriptValue* ); 57 void* callBack, SkScriptValue* ); 59 void* callBack, SkScriptValue* ); 60 static bool NaN(const char* token, size_t len, void* callBack, SkScriptValue* );
|
SkScriptRuntime.cpp | 68 SkScriptCallBack* callBack SK_INIT_TO_AVOID_WARNING; 88 callBack = fCallBackArray[index]; 93 SkScriptCallBackFunction* callBackFunction = (SkScriptCallBackFunction*) callBack; 103 SkScriptCallBackMember* callBackMember = (SkScriptCallBackMember*) callBack; 112 SkScriptCallBackProperty* callBackProperty = (SkScriptCallBackProperty*) callBack; 154 SkScriptCallBackConvert* callBackBox = (SkScriptCallBackConvert*) callBack; 160 SkScriptCallBackConvert* callBackUnbox = (SkScriptCallBackConvert*) callBack;
|
SkScript.cpp | 319 UserCallBack callBack; 320 callBack.fBoxCallBack = func; 321 commonCallBack(kBox, callBack, userStorage); 324 void SkScriptEngine::commonCallBack(CallBackType type, UserCallBack& callBack, void* userStorage) { 325 callBack.fCallBackType = type; 326 callBack.fUserStorage = userStorage; 327 *fUserCallBacks.prepend() = callBack; 483 UserCallBack callBack; 484 callBack.fFunctionCallBack = func; 485 commonCallBack(kFunction, callBack, userStorage) [all...] |
/external/skia/src/animator/ |
SkAnimatorScript.h | 42 void* callBack, SkScriptValue* ); 43 static bool EvalEnum(const char* token, size_t len, void* callBack, SkScriptValue* ); 44 static bool EvalID(const char* token, size_t len, void* callBack, SkScriptValue* ); 51 static bool EvalNamedColor(const char* token, size_t len, void* callBack, SkScriptValue* ); 53 void* callBack, SkScriptValue* ); 55 static bool Infinity(const char* token, size_t len, void* callBack, SkScriptValue* ); 57 void* callBack, SkScriptValue* ); 59 void* callBack, SkScriptValue* ); 60 static bool NaN(const char* token, size_t len, void* callBack, SkScriptValue* );
|
SkScriptRuntime.cpp | 68 SkScriptCallBack* callBack SK_INIT_TO_AVOID_WARNING; 88 callBack = fCallBackArray[index]; 93 SkScriptCallBackFunction* callBackFunction = (SkScriptCallBackFunction*) callBack; 103 SkScriptCallBackMember* callBackMember = (SkScriptCallBackMember*) callBack; 112 SkScriptCallBackProperty* callBackProperty = (SkScriptCallBackProperty*) callBack; 154 SkScriptCallBackConvert* callBackBox = (SkScriptCallBackConvert*) callBack; 160 SkScriptCallBackConvert* callBackUnbox = (SkScriptCallBackConvert*) callBack;
|
SkScript.cpp | 319 UserCallBack callBack; 320 callBack.fBoxCallBack = func; 321 commonCallBack(kBox, callBack, userStorage); 324 void SkScriptEngine::commonCallBack(CallBackType type, UserCallBack& callBack, void* userStorage) { 325 callBack.fCallBackType = type; 326 callBack.fUserStorage = userStorage; 327 *fUserCallBacks.prepend() = callBack; 483 UserCallBack callBack; 484 callBack.fFunctionCallBack = func; 485 commonCallBack(kFunction, callBack, userStorage) [all...] |
/frameworks/base/core/java/android/widget/ |
DoubleDigitManager.java | 30 private final CallBack mCallBack; 37 * @param callBack The callback to indicate what's going on with the user. 39 public DoubleDigitManager(long timeoutInMillis, CallBack callBack) { 41 mCallBack = callBack; 75 * The callback to indicate what is going on with the digits pressed. 77 static interface CallBack {
|
/frameworks/base/core/java/android/app/ |
TimePickerDialog.java | 40 * The callback interface used to indicate the user is done filling in 66 * @param callBack How parent is notified. 72 OnTimeSetListener callBack, 74 this(context, 0, callBack, hourOfDay, minute, is24HourView); 80 * @param callBack How parent is notified. 87 OnTimeSetListener callBack, 90 mCallback = callBack;
|
DatePickerDialog.java | 53 * The callback used to indicate the user is done filling in the date. 69 * @param callBack How the parent is notified that the date is set. 75 OnDateSetListener callBack, 79 this(context, 0, callBack, year, monthOfYear, dayOfMonth); 85 * @param callBack How the parent is notified that the date is set. 92 OnDateSetListener callBack, 98 mCallBack = callBack;
|
/packages/apps/Mms/src/com/android/mms/ui/ |
NumberPickerDialog.java | 37 * The callback interface used to indicate the user is done filling in 53 * @param callBack How parent is notified. 57 OnNumberSetListener callBack, 62 this(context, AlertDialog.THEME_HOLO_LIGHT, callBack, number, rangeMin, rangeMax, title); 68 * @param callBack How parent is notified. 73 OnNumberSetListener callBack, 79 mCallback = callBack;
|
/packages/apps/Contacts/src/com/android/contacts/datepicker/ |
DatePickerDialog.java | 67 * The callback used to indicate the user is done filling in the date. 83 * @param callBack How the parent is notified that the date is set. 89 OnDateSetListener callBack, 93 this(context, callBack, year, monthOfYear, dayOfMonth, false); 98 * @param callBack How the parent is notified that the date is set. 106 OnDateSetListener callBack, 114 callBack, year, monthOfYear, dayOfMonth, yearOptional); 120 * @param callBack How the parent is notified that the date is set. 128 OnDateSetListener callBack, 132 this(context, theme, callBack, year, monthOfYear, dayOfMonth, false) [all...] |
/external/mdnsresponder/mDNSShared/ |
dns_sd.h | 158 * regardless of the function or callback being used. For any given function or callback, 161 * and callback. In some cases, for a particular call, it may be that no flags are currently 174 /* MoreComing indicates to a callback that at least one more result is 192 * conjunction with "Add". An enumeration callback with the "Add" 201 * flag set, name conflicts will result in a callback. The NoAutorename flag 297 * but not necessarily more results for this particular callback function. 298 * The implication of this for client programmers is that when a callback 301 * that its UI needs to be updated. Then, later when a callback is eventually 304 * updating, not just the UI elements related to the particular callback [all...] |
dnssd_clientstub.c | 115 // client stub callback to process message from server and deliver results to client application 140 void *AppCallback; // Client callback function and context 820 // We can't touch the sdr after the callback as it can be deallocated in the callback [all...] |
/packages/services/Telephony/src/com/android/phone/ |
ChangeIccPinScreen.java | 205 Message callBack = Message.obtain(mHandler, 215 newPin1, callBack); 218 newPin1, callBack);
|
/cts/tests/src/android/app/cts/ |
DialogStubActivity.java | 389 public MockDatePickerDialog(Context context, OnDateSetListener callBack, int year, 391 super(context, callBack, year, monthOfYear, dayOfMonth); 394 public MockDatePickerDialog(Context context, int theme, OnDateSetListener callBack, 396 super(context, theme, callBack, year, monthOfYear, dayOfMonth);
|
/frameworks/opt/datetimepicker/src/com/android/datetimepicker/date/ |
DatePickerDialog.java | 112 * The callback used to indicate the user is done filling in the date. 127 * The callback used to notify other date picker components of a change in selected date. 140 * @param callBack How the parent is notified that the date is set. 145 public static DatePickerDialog newInstance(OnDateSetListener callBack, int year, 149 ret.initialize(callBack, year, monthOfYear, dayOfMonth); 153 public void initialize(OnDateSetListener callBack, int year, int monthOfYear, int dayOfMonth) { 154 mCallBack = callBack;
|
/packages/apps/InCallUI/src/com/android/incallui/ |
ContactInfoCache.java | 107 * Returns the data through callback. If callback is null, no response is made, however the 111 * @param callback The function to call back when the call is found. Can be null. 114 ContactInfoCacheCallback callback) { 116 Preconditions.checkNotNull(callback); 126 callback.onContactInfoComplete(callId, cacheEntry); 133 // If the entry already exists, add callback 135 callBacks.add(callback); 141 callBacks.add(callback); 180 // Load the image with a callback to update the image state [all...] |
/packages/apps/Contacts/src/com/android/contacts/editor/ |
EventFieldEditorView.java | 225 final OnDateSetListener callBack = new OnDateSetListener() { 249 final DatePickerDialog resultDialog = new DatePickerDialog(getContext(), callBack,
|