HomeSort by relevance Sort by last modified time
    Searched refs:callBack (Results 1 - 25 of 72) sorted by null

1 2 3

  /external/testng/src/main/java/org/testng/
IConfigurable.java 6 * the configuration method will then be performed upon invocation of the callBack()
13 public void run(IConfigureCallBack callBack, ITestResult testResult);
IHookable.java 6 * the test method will then be performed upon invocation of the callBack()
19 * icb.callback(testResult);
29 public void run(IHookCallBack callBack, ITestResult testResult);
  /external/testng/src/test/java/test/hook/
ConfigurableListener.java 14 public void run(IConfigureCallBack callBack, ITestResult testResult) {
16 Object[] parameters = callBack.getParameters();
20 callBack.runConfigurationMethod(testResult);
HookListener.java 11 public void run(IHookCallBack callBack, ITestResult testResult) {
13 callBack.runTestMethod(testResult);
ConfigurableSuccessTest.java 16 public void run(IConfigureCallBack callBack, ITestResult testResult) {
18 Object[] parameters = callBack.getParameters();
22 callBack.runConfigurationMethod(testResult);
HookSuccess862Test.java 14 public void run(IHookCallBack callBack, ITestResult testResult) {
16 for (int i = 0; i < callBack.getParameters().length; i++) {
21 callBack.getParameters()[0] = callBack.getParameters()[0] + named.value();
25 callBack.runTestMethod(testResult);
HookSuccess599Test.java 22 public void run(IHookCallBack callBack, ITestResult testResult) {
24 Object[] parameters = callBack.getParameters();
28 callBack.runTestMethod(testResult);
HookSuccessTest.java 22 public void run(IHookCallBack callBack, ITestResult testResult) {
24 Object[] parameters = callBack.getParameters();
28 callBack.runTestMethod(testResult);
ConfigurableFailureTest.java 15 public void run(IConfigureCallBack callBack, ITestResult testResult) {
17 // Not calling the callback
HookFailureTest.java 13 public void run(IHookCallBack callBack, ITestResult testResult) {
15 // Not invoking the callback: the method should not be run
  /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/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 {
  /packages/apps/Contacts/src/com/android/contacts/datepicker/
DatePickerDialog.java 64 * The callback used to indicate the user is done filling in the date.
80 * @param callBack How the parent is notified that the date is set.
86 OnDateSetListener callBack,
90 this(context, callBack, year, monthOfYear, dayOfMonth, false);
95 * @param callBack How the parent is notified that the date is set.
103 OnDateSetListener callBack,
109 this(context, /* themeId = */ -1, callBack, year, monthOfYear, dayOfMonth,
116 * @param callBack How the parent is notified that the date is set.
124 OnDateSetListener callBack,
128 this(context, theme, callBack, year, monthOfYear, dayOfMonth, false)
    [all...]
  /cts/tests/tests/widget/src/android/widget/cts/
DatePickerDialogTest.java 95 public MockDatePickerDialog(Context context, OnDateSetListener callBack,
97 super(context, callBack, year, monthOfYear, dayOfMonth);
  /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...]
  /external/avahi/avahi-compat-libdns_sd/
dns_sd.h 95 /* MoreComing indicates to a callback that at least one more result is
112 * conjuction with "Add". An enumeration callback with the "Add"
121 * flag set, name conflicts will result in a callback. The NoAutorename flag
349 * to their DNSServiceBrowseReply() callback function, and discarding those
376 * the socket, and pass it to the appropriate application callback. By using a run loop or
394 * Read a reply from the daemon, calling the appropriate application callback. This call will
404 * that take a callback parameter.
462 * DNSServiceDomainEnumReply Callback Parameters:
512 * callBack: The function to be called when a domain is found or the call asynchronously
515 * context: An application context pointer which is passed to the callback functio
    [all...]
unsupported.c 40 AVAHI_GCC_UNUSED DNSServiceRegisterRecordReply callBack,
  /external/webrtc/webrtc/modules/video_capture/
video_capture.h 99 // Register capture data callback
103 // Remove capture data callback
106 // Register capture callback.
107 virtual void RegisterCaptureCallback(VideoCaptureFeedBack& callBack) = 0;
109 // Remove capture callback.
video_capture_impl.h 64 virtual void RegisterCaptureCallback(VideoCaptureFeedBack& callBack);
121 TickTime _lastFrameRateCallbackTime; // last time the frame rate callback function was called.
  /frameworks/opt/telephony/src/java/com/android/internal/telephony/uicc/
UiccPkcs15.java 61 // convert to String then send to callback message.
81 public boolean loadFile(String fileId, Message callBack) {
83 if (fileId == null || callBack == null) return false;
85 mCallback = callBack;
145 public Pkcs15Selector(Message callBack) {
146 mCallback = callBack;

Completed in 502 milliseconds

1 2 3