HomeSort by relevance Sort by last modified time
    Searched refs:direction (Results 101 - 125 of 1223) sorted by null

1 2 3 45 6 7 8 91011>>

  /external/chromium_org/chrome/browser/resources/extensions/
pack_extension_overlay.css 21 -webkit-box-direction: reverse;
  /external/chromium_org/chrome/installer/test/
alternate_version_generator.h 19 enum Direction {
32 Direction direction,
37 // |target_file|, modifying the version of the copy according to |direction|.
42 Direction direction);
  /external/chromium_org/third_party/WebKit/Source/core/svg/
SVGFESpotLightElement.cpp 44 FloatPoint3D direction(pointsAtXCurrentValue(), pointsAtYCurrentValue(), pointsAtZCurrentValue());
46 return SpotLightSource::create(pos, direction, specularExponentCurrentValue(), limitingConeAngleCurrentValue());
  /external/droiddriver/src/com/google/android/droiddriver/actions/
SwipeAction.java 33 private final ScrollDirection direction; field in class:SwipeAction
39 public SwipeAction(ScrollDirection direction, boolean drag) {
40 this(direction, drag, 0L);
43 public SwipeAction(ScrollDirection direction, boolean drag, long timeoutMillis) {
45 this.direction = direction;
61 switch (direction) {
87 throw new ActionException("Unknown scroll direction: " + direction);
  /external/chromium_org/third_party/bintrees/bintrees/
bintree.py 100 direction = 0
104 parent[direction] = self._new_node(key, value)
111 direction = 0 if key <= node.key else 1
112 node = node[direction]
121 direction = 0
128 direction = 1
132 direction = 0
134 parent[direction] = replacement.right
144 parent[direction] = node[down_dir]
149 direction = 0 if key < node.key else
    [all...]
  /external/chromium-trace/trace-viewer/src/cc/
layer_viewer.css 7 -webkit-flex-direction: column;
16 -webkit-flex-direction: column;
  /external/chromium_org/chrome/browser/sync_file_system/
sync_event_observer.h 37 SyncDirection direction) = 0;
  /external/chromium_org/content/public/common/
show_desktop_notification_params.h 34 WebKit::WebTextDirection direction; member in struct:content::ShowDesktopNotificationHostMsgParams
  /external/chromium_org/third_party/WebKit/Source/core/page/
FocusController.cpp 241 Node* FocusController::findFocusableNodeDecendingDownIntoFrameDocument(FocusDirection direction, Node* node)
250 Node* foundNode = findFocusableNode(direction, FocusNavigationScope::focusNavigationScopeOwnedByIFrame(owner), 0);
259 bool FocusController::setInitialFocus(FocusDirection direction)
261 bool didAdvanceFocus = advanceFocus(direction, true);
272 bool FocusController::advanceFocus(FocusDirection direction, bool initialFocus)
274 switch (direction) {
277 return advanceFocusInDocumentOrder(direction, initialFocus);
282 return advanceFocusDirectionally(direction);
290 bool FocusController::advanceFocusInDocumentOrder(FocusDirection direction, bool initialFocus)
305 RefPtr<Node> node = findFocusableNodeAcrossFocusScope(direction, FocusNavigationScope::focusNavigationScopeOf(currentNode ? currentNode : document), currentNode)
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/rendering/style/
StyleMarqueeData.h 52 EMarqueeDirection direction : 3; // not unsigned because EMarqueeDirection has negative values
  /external/chromium_org/third_party/libjingle/source/talk/media/base/
voiceprocessor.h 51 MediaProcessorDirection direction,
  /external/chromium_org/ui/base/accessibility/
accessible_text_utils.h 32 // A direction when searching for the next boundary.
42 // (depending on |direction|) from the given |start_offset| until the
49 TextBoundaryDirection direction);
  /external/chromium_org/ui/views/controls/
slide_out_view.h 38 void SlideOutAndClose(SlideDirection direction);
  /external/iptables/include/linux/netfilter/
xt_connbytes.h 24 __u8 direction; /* ipt_connbytes_direction */ member in struct:xt_connbytes_info
  /frameworks/base/core/java/android/text/method/
TransformationMethod.java 43 boolean focused, int direction,
  /frameworks/support/v4/java/android/support/v4/widget/
ListViewAutoScrollHelper.java 53 public boolean canTargetScrollHorizontally(int direction) {
59 public boolean canTargetScrollVertically(int direction) {
66 if (direction > 0) {
74 } else if (direction < 0) {
83 // The behavior for direction 0 is undefined and we can return
  /packages/apps/Launcher2/src/com/android/launcher2/
HandleView.java 54 public View focusSearch(int direction) {
55 View newFocus = super.focusSearch(direction);
58 workspace.dispatchUnhandledMove(null, direction);
59 return (mOrientation == ORIENTATION_HORIZONTAL && direction == FOCUS_DOWN) ?
  /external/jmonkeyengine/engine/src/core/com/jme3/light/
SpotLight.java 43 * A spot light emmit a cone of light from a position and in a direction.
46 * In addition to a position and a direction, spot lights also have a range which
58 protected Vector3f direction = new Vector3f(0,-1,0); field in class:SpotLight
93 return direction;
96 public void setDirection(Vector3f direction) {
97 this.direction.set(direction);
155 * This angle is the angle between the spot direction axis and the inner border of the cone of influence.
173 * This angle is the angle between the spot direction axis and the outer border of the cone of influence.
196 oc.write(direction, "direction", new Vector3f())
    [all...]
  /packages/apps/Gallery2/src/com/android/gallery3d/ui/
EdgeView.java 102 // offset is in pixels. direction is one of {TOP, LEFT, BOTTOM, RIGHT}.
103 public void onPull(int offset, int direction) {
104 int fullLength = ((direction & 1) == 0) ? getWidth() : getHeight();
105 mEffect[direction].onPull((float)offset / fullLength);
106 if (!mEffect[direction].isFinished()) {
125 // per second. direction is one of {TOP, LEFT, BOTTOM, RIGHT}.
126 public void onAbsorb(int velocity, int direction) {
127 mEffect[direction].onAbsorb(velocity);
128 if (!mEffect[direction].isFinished()) {
  /external/chromium_org/chrome/common/extensions/docs/examples/api/fontSettings/css/
chrome_shared.css 63 direction: ltr;
72 direction: ltr;
86 direction: rtl;
90 direction: ltr;
99 direction: rtl;
  /external/chromium_org/ui/webui/resources/css/
chrome_shared.css 69 direction: ltr;
78 direction: ltr;
92 direction: rtl;
96 direction: ltr;
105 direction: rtl;
  /external/jmonkeyengine/engine/src/terrain/com/jme3/terrain/geomipmap/picking/
BresenhamYUpGridTracer.java 53 protected Direction stepDirection = Direction.None;
56 public static enum Direction {
75 // simplify access to direction
76 Vector3f direction = this.walkRay.getDirection(); local
84 Vector3f ooDirection = new Vector3f(1.0f / direction.x, 1,1.0f / direction.z);
86 // Check which direction on the X world axis we are moving.
87 if (direction.x > TOLERANCE) {
91 } else if (direction.x < -TOLERANCE)
    [all...]
  /external/jmonkeyengine/engine/src/test/jme3test/input/
TestCameraNode.java 56 Vector3f direction = new Vector3f(); field in class:TestCameraNode
86 //Setting the direction to Spatial to camera, this means the camera will copy the movements of the Node
114 //computing the normalized direction of the cam to move the teaNode
115 direction.set(cam.getDirection()).normalizeLocal();
117 direction.multLocal(5 * tpf);
118 teaNode.move(direction);
121 direction.multLocal(-5 * tpf);
122 teaNode.move(direction);
125 direction.crossLocal(Vector3f.UNIT_Y).multLocal(5 * tpf);
126 teaNode.move(direction);
    [all...]
  /external/droiddriver/src/com/google/android/droiddriver/scroll/
SentinelScroller.java 27 import com.google.android.droiddriver.scroll.Direction.Axis;
70 ScrollDirection direction) {
71 Logs.call(this, "scrollTo", driver, parentFinder, childFinder, direction);
82 if (i < maxScrolls && !sentinelStrategy.scroll(driver, parentFinder, direction)) {
102 for (ScrollDirection direction : axis.getDirections()) {
104 return scrollTo(driver, parentFinder, childFinder, direction);
106 // try another direction
  /external/chromium_org/third_party/WebKit/Source/core/css/
CSSProperty.cpp 57 static CSSPropertyID resolveToPhysicalProperty(TextDirection direction, WritingMode writingMode, LogicalBoxSide logicalSide, const StylePropertyShorthand& shorthand)
59 if (direction == LTR) {
178 CSSPropertyID CSSProperty::resolveDirectionAwareProperty(CSSPropertyID propertyID, TextDirection direction, WritingMode writingMode)
182 return resolveToPhysicalProperty(direction, writingMode, EndSide, marginShorthand());
184 return resolveToPhysicalProperty(direction, writingMode, StartSide, marginShorthand());
186 return resolveToPhysicalProperty(direction, writingMode, BeforeSide, marginShorthand());
188 return resolveToPhysicalProperty(direction, writingMode, AfterSide, marginShorthand());
190 return resolveToPhysicalProperty(direction, writingMode, EndSide, paddingShorthand());
192 return resolveToPhysicalProperty(direction, writingMode, StartSide, paddingShorthand());
194 return resolveToPhysicalProperty(direction, writingMode, BeforeSide, paddingShorthand())
    [all...]

Completed in 3116 milliseconds

1 2 3 45 6 7 8 91011>>