HomeSort by relevance Sort by last modified time
    Searched full:direction (Results 51 - 75 of 3958) sorted by null

1 23 4 5 6 7 8 91011>>

  /external/chromium_org/tools/telemetry/telemetry/page/actions/
scroll.py 53 direction = 'down'
59 if hasattr(self, 'direction'):
60 direction = self.direction
61 if direction not in ['down', 'up', 'left', 'right']:
63 'Invalid scroll direction: %s' % direction)
72 direction: '%s',
77 direction,
85 direction: '%s'
    [all...]
  /external/eigen/Eigen/src/Geometry/
ParametrizedLine.h 23 * direction vector \f$ \mathbf{d} \f$ such that the line corresponds to
48 : m_origin(other.origin()), m_direction(other.direction())
55 /** Initializes a parametrized line of direction \a direction and origin \a origin.
56 * \warning the vector direction is assumed to be normalized.
58 ParametrizedLine(const VectorType& origin, const VectorType& direction)
59 : m_origin(origin), m_direction(direction) {}
76 const VectorType& direction() const { return m_direction; } function in class:Eigen::ParametrizedLine
77 VectorType& direction() { return m_direction; } function in class:Eigen::ParametrizedLine
85 return (diff - direction().dot(diff) * direction()).squaredNorm()
    [all...]
Homogeneous.h 32 template<typename MatrixType,int Direction>
33 struct traits<Homogeneous<MatrixType,Direction> >
44 RowsAtCompileTime = Direction==Vertical ? RowsPlusOne : MatrixType::RowsAtCompileTime,
45 ColsAtCompileTime = Direction==Horizontal ? ColsPlusOne : MatrixType::ColsAtCompileTime,
66 enum { Direction = _Direction };
75 inline Index rows() const { return m_matrix.rows() + (int(Direction)==Vertical ? 1 : 0); }
76 inline Index cols() const { return m_matrix.cols() + (int(Direction)==Horizontal ? 1 : 0); }
80 if( (int(Direction)==Vertical && row==m_matrix.rows())
81 || (int(Direction)==Horizontal && col==m_matrix.cols()))
90 eigen_assert(int(Direction)==Horizontal)
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/page/
FocusController.cpp 282 Node* FocusController::findFocusableNodeDecendingDownIntoFrameDocument(FocusDirection direction, Node* node)
291 Node* foundNode = findFocusableNode(direction, FocusNavigationScope::ownedByIFrame(owner), 0);
300 bool FocusController::setInitialFocus(FocusDirection direction)
302 bool didAdvanceFocus = advanceFocus(direction, true);
313 bool FocusController::advanceFocus(FocusDirection direction, bool initialFocus)
315 switch (direction) {
318 return advanceFocusInDocumentOrder(direction, initialFocus);
323 return advanceFocusDirectionally(direction);
331 bool FocusController::advanceFocusInDocumentOrder(FocusDirection direction, bool initialFocus)
346 RefPtr<Node> node = findFocusableNodeAcrossFocusScope(direction, FocusNavigationScope::focusNavigationScopeOf(currentNode ? currentNode : document), currentNode)
    [all...]
  /external/chromium_org/content/public/common/
show_desktop_notification_params.cc 10 : direction(blink::WebTextDirectionDefault),
  /external/iptables/include/linux/netfilter/
xt_connbytes.h 24 __u8 direction; /* ipt_connbytes_direction */ member in struct:xt_connbytes_info
  /external/skia/gm/
arcofzorro.cpp 41 int direction = 0; variable
53 switch (direction) {
57 direction = 1;
64 direction = 2;
  /frameworks/support/v4/ics/android/support/v4/view/
ViewCompatICS.java 29 public static boolean canScrollHorizontally(View v, int direction) {
30 return v.canScrollHorizontally(direction);
33 public static boolean canScrollVertically(View v, int direction) {
34 return v.canScrollVertically(direction);
  /external/chromium_org/ash/wm/
window_cycle_controller.h 29 enum Direction {
40 // Cycles between windows in the given |direction|. If |is_alt_down| then
43 void HandleCycleWindow(Direction direction, bool is_alt_down);
63 // Cycles to the next or previous window based on |direction|.
64 void Step(Direction direction);
  /external/smack/src/org/jivesoftware/smackx/carbons/
Carbon.java 44 private Direction dir;
47 public Carbon(Direction dir, Forwarded fwd) {
53 * get the direction (sent or received) of the carbon.
55 * @return the {@link Direction} of the carbon.
57 public Direction getDirection() {
93 * An enum to display the direction of a {@link Carbon} message.
95 public static enum Direction {
103 Direction dir = Direction.valueOf(parser.getName());
112 else if (eventType == XmlPullParser.END_TAG && dir == Direction.valueOf(parser.getName())
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/rendering/style/
StyleMarqueeData.cpp 34 , direction(RenderStyle::initialMarqueeDirection())
44 , direction(o.direction)
50 return increment == o.increment && speed == o.speed && direction == o.direction &&
  /external/chromium_org/ui/base/accessibility/
accessible_text_utils.cc 16 TextBoundaryDirection direction) {
21 if (direction == FORWARDS_DIRECTION && start_offset < text_size)
26 if (direction == FORWARDS_DIRECTION) {
50 if (direction == FORWARDS_DIRECTION) {
84 if (direction == FORWARDS_DIRECTION) {
  /frameworks/base/core/java/android/text/
TextDirectionHeuristic.java 20 * Interface for objects that use a heuristic for guessing at the paragraph direction by examining text.
24 * Guess if a chars array is in the RTL direction or not.
30 * @return true if all chars in the range are to be considered in a RTL direction,
36 * Guess if a {@code CharSequence} is in the RTL direction or not.
42 * @return true if all chars in the range are to be considered in a RTL direction,
  /frameworks/support/v4/java/android/support/v4/text/
TextDirectionHeuristicCompat.java 20 * Interface for objects that use a heuristic for guessing at the paragraph direction by examining text.
24 * Guess if a chars array is in the RTL direction or not.
30 * @return true if all chars in the range are to be considered in a RTL direction,
36 * Guess if a {@code CharSequence} is in the RTL direction or not.
42 * @return true if all chars in the range are to be considered in a RTL direction,
TextDirectionHeuristicsCompat.java 31 * Always decides that the direction is left to right.
37 * Always decides that the direction is right to left.
43 * Determines the direction based on the first strong directional character, including bidi
51 * Determines the direction based on the first strong directional character, including bidi
60 * direction is right to left, falling back to left to right if it finds none.
66 * Force the paragraph direction to the Locale direction. Falls back to left to right.
107 * Computes the text direction based on an algorithm. Subclasses implement
109 * direction from the text alone.
119 * Return true if the default text direction is rtl
    [all...]
  /external/chromium_org/chrome/common/extensions/docs/examples/extensions/plugin_settings/domui/js/cr/ui/
array_data_model.js 81 this.sortStatus_.field, this.sortStatus_.direction);
154 this.sortStatus.direction);
171 setTimeout(this.sort.bind(this, status.field, status.direction), 0);
210 this.sortStatus.direction);
216 setTimeout(this.sort.bind(this, status.field, status.direction), 0);
221 * Creates sort status with given field and direction.
223 * @param {string} direction Sort direction.
226 createSortStatus: function(field, direction) {
229 direction: directio
    [all...]
  /external/eigen/Eigen/src/Eigen2Support/Geometry/
ParametrizedLine.h 22 * direction vector \f$ \mathbf{d} \f$ such that the line corresponds to
45 /** Initializes a parametrized line of direction \a direction and origin \a origin.
46 * \warning the vector direction is assumed to be normalized.
48 ParametrizedLine(const VectorType& origin, const VectorType& direction)
49 : m_origin(origin), m_direction(direction) {}
65 const VectorType& direction() const { return m_direction; } function in class:Eigen::ParametrizedLine
66 VectorType& direction() { return m_direction; } function in class:Eigen::ParametrizedLine
74 return (diff - diff.eigen2_dot(direction())* direction()).squaredNorm()
    [all...]
  /external/clang/test/Index/
overriding-method-comments.mm 22 // CHECK: FullCommentAsXML=[<Function isInstanceMethod="1" file="{{[^"]+}}overriding-method-comments.mm" line="[[@LINE-3]]" column="1"><Name>METH:</Name><USR>c:objc(cs)Root(im)METH:</USR><Declaration>- (void)METH:(id)AAA;</Declaration><Parameters><Parameter><Name>AAA</Name><Index>0</Index><Direction isExplicit="1">in</Direction><Discussion><Para> ZZZ </Para></Discussion></Parameter></Parameters></Function>]
31 // CHECK: FullCommentAsXML=[<Function isInstanceMethod="1" file="{{[^"]+}}overriding-method-comments.mm" line="[[@LINE-3]]" column="1"><Name>METH:</Name><USR>c:objc(cs)Root(im)METH:</USR><Declaration>- (void)METH:(id)BBB;</Declaration><Parameters><Parameter><Name>BBB</Name><Index>0</Index><Direction isExplicit="1">in</Direction><Discussion><Para> ZZZ </Para></Discussion></Parameter></Parameters></Function>]
37 // CHECK: FullCommentAsXML=[<Function isInstanceMethod="1" file="{{[^"]+}}overriding-method-comments.mm" line="[[@LINE-3]]" column="1"><Name>METH:</Name><USR>c:objc(cs)Root(im)METH:</USR><Declaration>- (void)METH:(id)III;</Declaration><Parameters><Parameter><Name>III</Name><Index>0</Index><Direction isExplicit="1">in</Direction><Discussion><Para> ZZZ </Para></Discussion></Parameter></Parameters></Function>]
51 // CHECK: FullCommentAsXML=[<Function isInstanceMethod="1" file="{{[^"]+}}overriding-method-comments.mm" line="[[@LINE-3]]" column="1"><Name>EXT_METH:::</Name><USR>c:objc(cs)Redec(im)EXT_METH:::</USR><Declaration>- (void)EXT_METH:(id)AAA:(double)BBB:(int)CCC;</Declaration><Parameters><Parameter><Name>AAA</Name><Index>0</Index><Direction isExplicit="1">in</Direction><Discussion><Para> input value </Para></Discussion></Parameter><Parameter><Name>BBB</Name><Index>1</Index><Direction isExplicit="1">in</Direction><Discussion><Para> 2nd input value is double </Para></Discussion></Parameter><Parameter><Name>CCC< (…)
    [all...]
  /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/android_webview/java/src/org/chromium/android_webview/
AwWebContentsDelegateAdapter.java 43 int direction; local
46 direction = View.FOCUS_DOWN;
49 direction = View.FOCUS_UP;
52 direction = View.FOCUS_LEFT;
55 direction = View.FOCUS_RIGHT;
58 direction = 0;
61 if (direction != 0 && tryToMoveFocus(direction)) return;
68 int direction = local
71 if (tryToMoveFocus(direction)) return true
    [all...]
  /external/chromium_org/third_party/skia/src/gpu/effects/
GrConvolutionEffect.cpp 36 Gr1DKernelEffect::Direction direction() const { return fDirection; } function in class:GrGLConvolutionEffect
40 Gr1DKernelEffect::Direction fDirection;
54 fDirection = c.direction();
92 const char* component = this->direction() == Gr1DKernelEffect::kY_Direction ? "y" : "x";
113 switch (conv.direction()) {
121 GrCrash("Unknown filter direction.");
126 if (Gr1DKernelEffect::kY_Direction == conv.direction() &&
143 key |= GrConvolutionEffect::kY_Direction == conv.direction() ? 0x1 : 0x0;
151 Direction direction
    [all...]
  /external/skia/src/gpu/effects/
GrConvolutionEffect.cpp 36 Gr1DKernelEffect::Direction direction() const { return fDirection; } function in class:GrGLConvolutionEffect
40 Gr1DKernelEffect::Direction fDirection;
54 fDirection = c.direction();
92 const char* component = this->direction() == Gr1DKernelEffect::kY_Direction ? "y" : "x";
113 switch (conv.direction()) {
121 GrCrash("Unknown filter direction.");
126 if (Gr1DKernelEffect::kY_Direction == conv.direction() &&
143 key |= GrConvolutionEffect::kY_Direction == conv.direction() ? 0x1 : 0x0;
151 Direction direction
    [all...]
  /external/chromium_org/third_party/WebKit/Source/platform/
LengthBox.cpp 78 Length LengthBox::start(WritingMode writingMode, TextDirection direction) const
81 return isLeftToRightDirection(direction) ? m_left : m_right;
82 return isLeftToRightDirection(direction) ? m_top : m_bottom;
85 Length LengthBox::end(WritingMode writingMode, TextDirection direction) const
88 return isLeftToRightDirection(direction) ? m_right : m_left;
89 return isLeftToRightDirection(direction) ? m_bottom : m_top;
  /external/chromium_org/ui/webui/resources/js/cr/ui/
array_data_model.js 90 this.sortStatus_.field, this.sortStatus_.direction);
176 this.sortStatus.direction);
195 this.delayedSort_(status.field, status.direction);
234 this.sortStatus.direction);
240 this.delayedSort_(status.field, status.direction);
245 * Creates sort status with given field and direction.
247 * @param {string} direction Sort direction.
250 createSortStatus: function(field, direction) {
253 direction: directio
    [all...]
  /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...]

Completed in 362 milliseconds

1 23 4 5 6 7 8 91011>>