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

1 2 3 4 5 6 7

  /external/chromium_org/third_party/WebKit/Source/core/inspector/
InspectorHistory.h 55 virtual bool perform(ExceptionState&) = 0;
68 bool perform(PassOwnPtr<Action>, ExceptionState&);
InspectorHistory.cpp 46 virtual bool perform(ExceptionState&) { return true; } function in class:WebCore::__anon12603::UndoableStateMark
88 bool InspectorHistory::perform(PassOwnPtr<Action> action, ExceptionState& es) function in class:WebCore::InspectorHistory
90 if (!action->perform(es))
105 perform(adoptPtr(new UndoableStateMark()), IGNORE_EXCEPTION);
DOMEditor.cpp 59 virtual bool perform(ExceptionState& es) function in class:WebCore::DOMEditor::RemoveChildAction
94 virtual bool perform(ExceptionState& es) function in class:WebCore::DOMEditor::InsertBeforeAction
98 if (!m_removeChildAction->perform(es))
140 virtual bool perform(ExceptionState& es) function in class:WebCore::DOMEditor::RemoveAttributeAction
176 virtual bool perform(ExceptionState& es) function in class:WebCore::DOMEditor::SetAttributeAction
221 virtual bool perform(ExceptionState& es) function in class:WebCore::DOMEditor::SetOuterHTMLAction
264 virtual bool perform(ExceptionState& es) function in class:WebCore::DOMEditor::ReplaceWholeTextAction
299 virtual bool perform(ExceptionState& es) function in class:WebCore::DOMEditor::ReplaceChildNodeAction
332 virtual bool perform(ExceptionState&) function in class:WebCore::DOMEditor::SetNodeValueAction
362 return m_history->perform(adoptPtr(new InsertBeforeAction(parentNode, node, anchorNode)), es)
    [all...]
  /external/droiddriver/src/com/google/android/droiddriver/actions/
Action.java 33 * @param element the Ui element to perform the action on
38 boolean perform(InputInjector injector, UiElement element); method in interface:Action
ClickAction.java 44 public boolean perform(InputInjector injector, UiElement element) { method in class:ClickAction.DoubleClick
45 SINGLE.perform(injector, element);
46 SINGLE.perform(injector, element);
57 public boolean perform(InputInjector injector, UiElement element) { method in class:ClickAction.LongClick
73 public boolean perform(InputInjector injector, UiElement element) { method in class:ClickAction.SingleClick
PressKeyAction.java 46 public boolean perform(InputInjector injector, UiElement element) { method in class:PressKeyAction
TypeAction.java 52 public boolean perform(InputInjector injector, UiElement element) { method in class:TypeAction
  /system/core/include/system/
window.h 242 /* Valid operations for the (*perform)() hook.
455 * hook used to perform various operations on the surface.
456 * (*perform)() is a generic mechanism to add functionality to
462 * (*perform)() returns -ENOENT if the 'what' parameter is not supported
486 int (*perform)(struct ANativeWindow* window, member in struct:ANativeWindow
602 return window->perform(window, NATIVE_WINDOW_SET_USAGE, usage);
635 return window->perform(window, NATIVE_WINDOW_SET_CROP, crop);
656 return window->perform(window, NATIVE_WINDOW_SET_POST_TRANSFORM_CROP, crop);
681 return window->perform(window, NATIVE_WINDOW_SET_BUFFER_COUNT, bufferCount);
697 return window->perform(window, NATIVE_WINDOW_SET_BUFFERS_GEOMETRY
    [all...]
  /external/droiddriver/src/com/google/android/droiddriver/base/
AbstractUiElement.java 55 public boolean perform(Action action) { method in class:AbstractUiElement
56 Logs.call(this, "perform", action);
62 return action.perform(getInjector(), this);
94 perform(new TypeAction(text)); method
108 perform(ClickAction.SINGLE);
113 perform(ClickAction.LONG);
118 perform(ClickAction.DOUBLE);
123 perform(new SwipeAction(direction, false)); method
  /frameworks/base/native/android/
native_window.cpp 79 return window->perform(window, NATIVE_WINDOW_LOCK, outBuffer, inOutDirtyBounds);
83 return window->perform(window, NATIVE_WINDOW_UNLOCK_AND_POST);
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/build/
AaptQuickFix.java 222 private IndexedRegion perform(IDocument doc) { method in class:AaptQuickFix.CreateNamespaceFix
227 perform(model);
236 private IndexedRegion perform(IFile file) { method in class:AaptQuickFix.CreateNamespaceFix
243 perform(model);
255 private IndexedRegion perform(IStructuredModel model) { method in class:AaptQuickFix.CreateNamespaceFix
273 perform(document);
317 IndexedRegion indexedRegion = perform(mFile);
346 private void perform() { method in class:AaptQuickFix.CreateResourceProposal
381 perform(); method
419 perform(); method
    [all...]
  /external/chromium_org/third_party/WebKit/Source/devtools/front_end/
DOMStorage.js 86 this._storageHistory.perform(new WebInspector.DOMStorageSetItemAction(this, key, value));
94 this._storageHistory.perform(new WebInspector.DOMStorageRemoveItemAction(this, key));
121 perform: function(callback)
150 perform: function(callback)
206 perform: function(callback)
271 perform: function(action)
276 action.perform(actionCompleted.bind(this));
  /external/chromium_org/third_party/openssl/openssl/apps/
s_time.c 136 static int perform=0; variable
159 perform=0;
233 perform=2;
235 perform=1;
308 if (perform == 0) perform=3;
391 if (!(perform & 1)) goto next;
459 if (!(perform & 2)) goto end;
  /external/openssl/apps/
s_time.c 136 static int perform=0; variable
159 perform=0;
233 perform=2;
235 perform=1;
308 if (perform == 0) perform=3;
391 if (!(perform & 1)) goto next;
459 if (!(perform & 2)) goto end;
  /external/bison/build-aux/
do-release-commit-and-tag 36 Run this script from top_srcdir to perform the final pre-release NEWS
  /external/chromium_org/third_party/openssl/openssl/crypto/des/times/
usparc.cc 6 is able to perform when the code is 'inlined'. For 'speed', the DES
  /external/droiddriver/src/com/google/android/droiddriver/
UiElement.java 34 * UI elements are generally views. Users can get attributes and perform
146 boolean perform(Action action); method in interface:UiElement
  /external/openssl/crypto/des/times/
usparc.cc 6 is able to perform when the code is 'inlined'. For 'speed', the DES
  /frameworks/native/include/ui/
FramebufferNativeWindow.h 72 static int perform(ANativeWindow* window, int operation, ...);
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/lint/
LintFixGenerator.java 321 private void perform() { method in class:LintFixGenerator.SuppressProposal
345 perform(); method
357 perform(); method
402 private void perform() { method in class:LintFixGenerator.ClearMarkersProposal
421 perform(); method
433 perform(); method
483 private void perform() { method in class:LintFixGenerator.MoreInfoProposal
524 perform(); method
536 perform(); method
  /hardware/ti/omap3/omx/system/src/openmax_il/perf/tests/
perf 23 VFLAG=;DBG=false;DO=;DODO=;PERFORM=
24 debug_do() { perform=$PERFORM; if [ "$1" = "-y" ]; then shift; perform=; fi
25 [ "$1" = "eval" ] && echo $2 || echo $*; $perform $*
27 debug_on() { VFLAG=$1;DBG=$2;DO=debug_do;DODO=debug_do;PERFORM=$3
  /external/ganymed-ssh2/src/main/java/ch/ethz/ssh2/crypto/digest/
SHA1.java 69 perform(); method
80 perform(); method
91 perform(); method
102 perform(); method
118 perform(); method
129 perform(); method
146 perform(); method
165 perform(); method
182 perform(); method
212 perform(); method
218 perform(); method
232 perform(); method
243 private void perform() method in class:SHA1
    [all...]
  /external/mdnsresponder/mDNSShared/
dnsextd.conf 23 // network, you might allow anyone to perform updates. To do that, you just
32 // perform updates in your dynamic zone, like this:
  /hardware/qcom/display/msm8960/libgralloc/
gralloc.cpp 86 perform: gralloc_perform,
  /hardware/qcom/display/msm8974/libgralloc/
gralloc.cpp 86 perform: gralloc_perform,

Completed in 546 milliseconds

1 2 3 4 5 6 7