/external/chromium_org/third_party/hwcplus/include/system/ |
D | window.h | 485 int (*perform)(struct ANativeWindow* window, member 601 return window->perform(window, NATIVE_WINDOW_SET_USAGE, usage); in native_window_set_usage() 634 return window->perform(window, NATIVE_WINDOW_SET_CROP, crop); in native_window_set_crop() 655 return window->perform(window, NATIVE_WINDOW_SET_POST_TRANSFORM_CROP, crop); in native_window_set_post_transform_crop() 680 return window->perform(window, NATIVE_WINDOW_SET_BUFFER_COUNT, bufferCount); in native_window_set_buffer_count() 696 return window->perform(window, NATIVE_WINDOW_SET_BUFFERS_GEOMETRY, in native_window_set_buffers_geometry() 717 return window->perform(window, NATIVE_WINDOW_SET_BUFFERS_DIMENSIONS, in native_window_set_buffers_dimensions() 742 return window->perform(window, NATIVE_WINDOW_SET_BUFFERS_USER_DIMENSIONS, in native_window_set_buffers_user_dimensions() 756 return window->perform(window, NATIVE_WINDOW_SET_BUFFERS_FORMAT, format); in native_window_set_buffers_format() 768 return window->perform(window, NATIVE_WINDOW_SET_BUFFERS_TRANSFORM, in native_window_set_buffers_transform() [all …]
|
/external/droiddriver/src/com/google/android/droiddriver/actions/ |
D | EventUiElementActor.java | 31 uiElement.perform(new TextAction(text)); in setText() 36 uiElement.perform(ClickAction.SINGLE); in click() 41 uiElement.perform(ClickAction.LONG); in longClick() 46 uiElement.perform(ClickAction.DOUBLE); in doubleClick() 51 uiElement.perform(SwipeAction.toScroll(direction)); in scroll()
|
D | ClickAction.java | 43 public boolean perform(InputInjector injector, UiElement element) { in perform() method in ClickAction.DoubleClick 44 SINGLE.perform(element); in perform() 45 SINGLE.perform(element); in perform() 56 public boolean perform(InputInjector injector, UiElement element) { in perform() method in ClickAction.LongClick 72 public boolean perform(InputInjector injector, UiElement element) { in perform() method in ClickAction.SingleClick
|
D | EventAction.java | 32 public boolean perform(UiElement element) { in perform() method in EventAction 33 return perform(element.getInjector(), element); in perform() 45 protected abstract boolean perform(InputInjector injector, UiElement element); in perform() method in EventAction
|
D | Action.java | 35 boolean perform(UiElement element); in perform() method
|
/external/droiddriver/src/com/google/android/droiddriver/actions/accessibility/ |
D | AccessibilityUiElementActor.java | 32 uiElement.perform(new TextAction(text)); in setText() 37 uiElement.perform(AccessibilityClickAction.SINGLE); in click() 42 uiElement.perform(AccessibilityClickAction.LONG); in longClick() 47 uiElement.perform(AccessibilityClickAction.DOUBLE); in doubleClick() 52 uiElement.perform(new AccessibilityScrollAction(direction)); in scroll()
|
D | AccessibilityClickAction.java | 43 protected boolean perform(AccessibilityNodeInfo node, UiElement element) { in perform() method in AccessibilityClickAction.DoubleClick 44 return SINGLE.perform(element) && SINGLE.perform(element); in perform() 54 protected boolean perform(AccessibilityNodeInfo node, UiElement element) { in perform() method in AccessibilityClickAction.LongClick 69 protected boolean perform(AccessibilityNodeInfo node, UiElement element) { in perform() method in AccessibilityClickAction.SingleClick
|
D | AccessibilityAction.java | 35 public boolean perform(UiElement element) { in perform() method in AccessibilityAction 36 return perform(((UiAutomationElement) element).getRawElement(), element); in perform() 47 protected abstract boolean perform(AccessibilityNodeInfo node, UiElement element); in perform() method in AccessibilityAction
|
/external/chromium_org/third_party/WebKit/Source/core/inspector/ |
D | DOMEditor.cpp | 57 virtual bool perform(ExceptionState& exceptionState) OVERRIDE in perform() function in WebCore::FINAL 100 virtual bool perform(ExceptionState& exceptionState) OVERRIDE in perform() function in WebCore::FINAL 104 if (!m_removeChildAction->perform(exceptionState)) in perform() 155 virtual bool perform(ExceptionState& exceptionState) OVERRIDE in perform() function in WebCore::FINAL 197 virtual bool perform(ExceptionState& exceptionState) OVERRIDE in perform() function in WebCore::FINAL 249 virtual bool perform(ExceptionState& exceptionState) OVERRIDE in perform() function in WebCore::FINAL 303 virtual bool perform(ExceptionState& exceptionState) OVERRIDE in perform() function in WebCore::FINAL 344 virtual bool perform(ExceptionState& exceptionState) OVERRIDE in perform() function in WebCore::FINAL 385 virtual bool perform(ExceptionState&) OVERRIDE in perform() function in WebCore::FINAL 419 …return m_history->perform(adoptRefWillBeNoop(new InsertBeforeAction(parentNode, node, anchorNode))… in insertBefore() [all …]
|
D | InspectorHistory.cpp | 46 virtual bool perform(ExceptionState&) OVERRIDE { return true; } in perform() function in WebCore::__anonc6459fd50111::FINAL 90 bool InspectorHistory::perform(PassRefPtrWillBeRawPtr<Action> action, ExceptionState& exceptionStat… in perform() function in WebCore::InspectorHistory 92 if (!action->perform(exceptionState)) in perform() 107 perform(adoptRefWillBeNoop(new UndoableStateMark()), IGNORE_EXCEPTION); in markUndoableState()
|
D | InspectorHistory.h | 58 virtual bool perform(ExceptionState&) = 0; 71 bool perform(PassRefPtrWillBeRawPtr<Action>, ExceptionState&);
|
/external/droiddriver/src/com/google/android/droiddriver/base/ |
D | BaseUiDevice.java | 57 perform(POWER_ON); in wakeUp() 64 perform(POWER_OFF); in sleep() 70 perform(SingleKeyAction.BACK); in pressBack() 74 public boolean perform(Action action) { in perform() method in BaseUiDevice 75 return getContext().getDriver().getRootElement().perform(action); in perform()
|
/external/openssl/apps/ |
D | s_time.c | 136 static int perform=0; variable 159 perform=0; in s_time_init() 233 perform=2; in parseArgs() 235 perform=1; in parseArgs() 308 if (perform == 0) perform=3; in parseArgs() 391 if (!(perform & 1)) goto next; in MAIN() 459 if (!(perform & 2)) goto end; in MAIN()
|
/external/chromium_org/third_party/openssl/openssl/apps/ |
D | s_time.c | 136 static int perform=0; variable 159 perform=0; in s_time_init() 233 perform=2; in parseArgs() 235 perform=1; in parseArgs() 308 if (perform == 0) perform=3; in parseArgs() 391 if (!(perform & 1)) goto next; in MAIN() 459 if (!(perform & 2)) goto end; in MAIN()
|
/external/chromium_org/third_party/WebKit/Source/core/dom/ |
D | MainThreadTaskRunner.cpp | 61 runner->perform(self->m_task.release()); in didReceiveTask() 81 void MainThreadTaskRunner::perform(PassOwnPtr<ExecutionContextTask> task) in perform() function in WebCore::MainThreadTaskRunner
|
D | MainThreadTaskRunner.h | 54 void perform(PassOwnPtr<ExecutionContextTask>);
|
/external/chromium_org/ppapi/api/private/ |
D | ppb_tcp_socket_private.idl | 116 * as |bytes_to_read|. May perform a partial read. Returns the number of bytes 120 * exceeds 1 megabyte, it will always perform a partial read. 129 * Writes data to the socket. May perform a partial write. Returns the number 132 * exceeds 1 megabyte, it will always perform a partial write.
|
/external/chromium_org/components/os_crypt/ |
D | README | 4 services to perform the encryption/decryption.
|
/external/droiddriver/src/com/google/android/droiddriver/ |
D | UiDevice.java | 47 boolean perform(Action action); in perform() method
|
/external/mdnsresponder/mDNSCore/ |
D | Implementer Notes.txt | 8 perform its next timed operation. When the workload is light, and 35 perform its next necessary operation (e.g. transmitting its next 64 (to allow mDNSCore to perform its necessary work) and then the timer
|
/external/chromium_org/chrome/common/extensions/docs/examples/ |
D | README.txt | 5 * howto/ - simple extensions showing how to perform a particular task
|
/external/openssl/crypto/conf/ |
D | README | 1 Configuration modules. These are a set of modules which can perform 70 that any application can call to perform various default configuration tasks.
|
/external/chromium_org/third_party/openssl/openssl/crypto/conf/ |
D | README | 1 Configuration modules. These are a set of modules which can perform 70 that any application can call to perform various default configuration tasks.
|
/external/chromium_org/third_party/openmax_dl/dl/api/arm/ |
D | armCOMM_s.h | 406 @ Macro to perform a data access operation 416 @ $i = Instruction to perform (eg "LDRB") 433 @ Macro to perform a data access operation 443 @ $i = Instruction to perform (eg "LDRB")
|
/external/chromium_org/third_party/angle/extensions/ |
D | ANGLE_pack_reverse_row_order.txt | 52 that perform ReadPixels may have to either render to an intermediate color 53 buffer before calling ReadPixels or perform a flip in software after 54 ReadPixels. In some systems the GL can perform the row reversal during
|