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

  /external/chromium_org/ui/android/java/src/org/chromium/ui/picker/
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);
ChromeDatePickerDialog.java 21 OnDateSetListener callBack,
25 super(context, 0, callBack, year, monthOfYear, dayOfMonth);
26 mCallBack = callBack;
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 25 * The callback used to indicate the user is done filling in the date.
38 * @param callBack How the parent is notified that the date is set.
43 OnValueSetListener callBack,
48 this(context, 0, callBack, year, positionInYear, minValue, maxValue);
54 * @param callBack How the parent is notified that the date is set.
60 OnValueSetListener callBack,
67 mCallBack = callBack;
DateTimePickerDialog.java 31 * The callback used to indicate the user is done filling in the date.
51 * @param callBack How the parent is notified that the date is set.
57 OnDateTimeSetListener callBack,
68 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...]
SkScriptTokenizer.cpp 464 for (SkScriptCallBack** callBack = fCallBackArray.begin(); callBack < fCallBackArray.end(); callBack++) {
465 if ((*callBack)->getType() != SkScriptCallBack::kUnbox)
467 return (*callBack)->getReturnType(0, &scriptValue);
812 for (SkScriptCallBack** callBack = fCallBackArray.begin(); callBack < fCallBackArray.end(); callBack++) {
813 if ((*callBack)->getType() != SkScriptCallBack::kFunction)
816 success = (*callBack)->getReference(functionName, functionNameLen, &callbackResult)
    [all...]
SkAnimateMaker.cpp 336 SkScriptEngine::_propertyCallBack callBack, void* userStorage) {
341 extra->fExtraCallBack = callBack;
SkScript.h 191 void commonCallBack(CallBackType type, UserCallBack& callBack, void* userStorage);
SkAnimatorScript.cpp 151 bool SkAnimatorScript::EvalEnum(const char* token, size_t len, void* callBack, SkScriptValue* value) {
152 const char* tokens = (const char*) callBack;
195 bool SkAnimatorScript::EvalNamedColor(const char* token, size_t len, void* callback, SkScriptValue* value) {
  /external/chromium_org/third_party/webrtc/modules/video_capture/include/mock/
mock_video_capture.h 32 MOCK_METHOD1(RegisterCaptureCallback, void(VideoCaptureFeedBack& callBack));
  /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...]
  /external/chromium_org/third_party/webrtc/modules/video_capture/include/
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.
  /external/chromium_org/third_party/webrtc/modules/video_capture/
video_capture_impl.h 68 virtual void RegisterCaptureCallback(VideoCaptureFeedBack& callBack);
125 TickTime _lastFrameRateCallbackTime; // last time the frame rate callback function was called.
video_capture_impl.cc 132 // Handle frame rate callback
202 void VideoCaptureImpl::RegisterCaptureCallback(VideoCaptureFeedBack& callBack) {
206 _captureCallBack = &callBack;
226 UpdateFrameCount(); // frame count used for local frame rate callback.
  /cts/tests/app/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);
  /external/chromium_org/third_party/WebKit/PerformanceTests/SunSpider/tests/parse-only/
concat-jquery-mootools-prototype.js 151 // Execute a callback for every element in the matched set.
154 each: function( callback, args ) {
155 return jQuery.each( this, callback, args );
504 map: function( callback ) {
506 return callback.call( elem, i, elem );
514 domManip: function( args, table, callback ) {
522 callback.call( root(this[i], first), this.length > 1 || i > 0 ?
671 each: function( object, callback, args ) {
677 if ( callback.apply( object[ name ], args ) === false )
681 if ( callback.apply( object[ i++ ], args ) === false
    [all...]
  /external/chromium_org/third_party/libaddressinput/src/java/
android.jar 

Completed in 1056 milliseconds