Searched refs:direction (Results 401 - 425 of 883) sorted by relevance

<<11121314151617181920>>

/external/chromium_org/tools/perf/page_sets/
H A Dpolymer.py63 direction='left', distance=300, speed_in_pixels_per_second=5000,
144 direction='down',
150 direction='up',
H A Dkey_silk_cases.py285 direction='left', distance=200, speed_in_pixels_per_second=5000,
315 selector='#messages', direction='down', speed_in_pixels_per_second=200)
320 selector='#messages', direction='up', speed_in_pixels_per_second=200)
325 selector='#messages', direction='down', speed_in_pixels_per_second=200)
385 direction='left', distance=200,
502 direction='down',
554 direction='left', distance=100,
/external/chromium_org/ui/file_manager/file_manager/audio_player/elements/
H A Dcontrol_panel.css10 flex-direction: column;
29 flex-direction: row;
84 flex-direction: row;
241 flex-direction: row;
261 flex-direction: row;
397 flex-direction: row;
/external/eigen/demos/opengl/
H A Dcamera.cpp89 Vector3f Camera::direction(void) const function in class:Camera
170 mTarget = position() + dist * direction();
179 setPosition(position() + direction() * d);
/external/harfbuzz_ng/src/
H A Dhb-common.cc146 * @direction:
155 hb_direction_to_string (hb_direction_t direction) argument
157 if (likely ((unsigned int) (direction - HB_DIRECTION_LTR)
159 return direction_strings[direction - HB_DIRECTION_LTR];
H A Dhb-ot-layout-gpos-table.hh98 hb_direction_t direction,
105 hb_bool_t horizontal = HB_DIRECTION_IS_HORIZONTAL (direction);
453 valueFormat.apply_value (c->font, c->direction, this,
501 valueFormat.apply_value (c->font, c->direction, this,
612 valueFormats[0].apply_value (c->font, c->direction, this,
614 valueFormats[1].apply_value (c->font, c->direction, this,
761 valueFormat1.apply_value (c->font, c->direction, this,
763 valueFormat2.apply_value (c->font, c->direction, this,
916 /* Main-direction adjustment */
917 switch (c->direction) {
97 apply_value(hb_font_t *font, hb_direction_t direction, const void *base, const Value *values, hb_glyph_position_t &glyph_pos) const argument
1538 fix_cursive_minor_offset(hb_glyph_position_t *pos, unsigned int i, hb_direction_t direction) argument
1557 fix_mark_attachment(hb_glyph_position_t *pos, unsigned int i, hb_direction_t direction) argument
1594 hb_direction_t direction = buffer->props.direction; local
[all...]
H A Dhb-buffer.cc43 return a->direction == b->direction &&
54 return (unsigned int) p->direction ^
584 /* If direction is set to INVALID, guess from script */
585 if (props.direction == HB_DIRECTION_INVALID) {
586 props.direction = hb_script_get_horizontal_direction (props.script);
877 * @direction:
885 hb_direction_t direction)
891 buffer->props.direction = direction;
[all...]
/external/wpa_supplicant_8/wpa_supplicant/dbus/
H A Ddbus_new_introspect.c53 const char *direction)
58 if (direction)
59 wpabuf_printf(xml, " direction=\"%s\"", direction);
194 "<arg name=\"data\" type=\"s\" direction=\"out\"/>"
52 add_arg(struct wpabuf *xml, const char *name, const char *type, const char *direction) argument
/external/chromium_org/third_party/WebKit/Source/core/animation/
H A DCompositorAnimationsTest.cpp145 timing.direction = Timing::PlaybackDirectionNormal;
402 m_timing.direction = Timing::PlaybackDirectionNormal;
404 EXPECT_EQ(m_compositorTiming.direction, Timing::PlaybackDirectionNormal);
406 m_timing.direction = Timing::PlaybackDirectionAlternate;
408 EXPECT_EQ(m_compositorTiming.direction, Timing::PlaybackDirectionAlternate);
410 m_timing.direction = Timing::PlaybackDirectionAlternateReverse;
412 EXPECT_EQ(m_compositorTiming.direction, Timing::PlaybackDirectionAlternateReverse);
414 m_timing.direction = Timing::PlaybackDirectionReverse;
416 EXPECT_EQ(m_compositorTiming.direction, Timing::PlaybackDirectionReverse);
421 m_timing.direction
[all...]
/external/chromium_org/third_party/WebKit/Source/core/editing/
H A DFrameSelection.cpp496 if (startBox && endBox && startBox->direction() == endBox->direction())
497 return startBox->direction();
509 void FrameSelection::willBeModified(EAlteration alter, SelectionDirection direction) argument
528 switch (direction) {
614 // it extends forward logically if the enclosing block is LTR direction,
615 // but it extends backward logically if the enclosing block is RTL direction.
778 // it extends backward logically if the enclosing block is LTR direction,
779 // but it extends forward logically if the enclosing block is RTL direction.
938 bool FrameSelection::modify(EAlteration alter, SelectionDirection direction, TextGranularit argument
1049 modify(EAlteration alter, unsigned verticalDistance, VerticalDirection direction, EUserTriggered userTriggered, CursorAlignOnScroll align) argument
[all...]
H A DEditingStyle.cpp429 static int textAlignResolvingStartAndEnd(int textAlign, int direction) argument
444 return direction != CSSValueRtl ? CSSValueLeft : CSSValueRight;
446 return direction == CSSValueRtl ? CSSValueRight : CSSValueLeft;
553 RefPtrWillBeRawPtr<CSSValue> direction = m_mutableStyle->getPropertyCSSValue(CSSPropertyDirection); local
554 if (!direction || !direction->isPrimitiveValue())
557 writingDirection = toCSSPrimitiveValue(direction.get())->getValueID() == CSSValueLtr ? LeftToRightWritingDirection : RightToLeftWritingDirection;
864 // HTMLAttributeEquivalent::addToStyle doesn't support unicode-bidi and direction properties
874 // unicode-bidi and direction are pushed down separately so don't push down with other styles.
958 RefPtrWillBeRawPtr<CSSValue> direction local
1345 WritingDirection direction; local
1376 RefPtrWillBeRawPtr<CSSValue> direction = style->getPropertyCSSValue(CSSPropertyDirection); local
[all...]
/external/aac/libSBRdec/src/
H A Dsbrdec_freq_sca.cpp437 int direction = 1; local
458 if (direction == 0)
462 direction = 1;
466 if (direction == 1)
468 direction = 0;
/external/chromium_org/third_party/WebKit/Source/modules/indexeddb/
H A DIDBCursor.cpp52 IDBCursor* IDBCursor::create(PassOwnPtr<WebIDBCursor> backend, WebIDBCursorDirection direction, IDBRequest* request, IDBAny* source, IDBTransaction* transaction) argument
54 return new IDBCursor(backend, direction, request, source, transaction);
57 IDBCursor::IDBCursor(PassOwnPtr<WebIDBCursor> backend, WebIDBCursorDirection direction, IDBRequest* request, IDBAny* source, IDBTransaction* transaction) argument
60 , m_direction(direction)
378 exceptionState.throwTypeError("The direction provided ('" + directionString + "') is not one of 'next', 'nextunique', 'prev', or 'prevunique'.");
382 const String& IDBCursor::direction() const function in class:blink::IDBCursor
/external/chromium_org/third_party/harfbuzz-ng/src/
H A Dhb-ot-layout-gpos-table.hh98 hb_direction_t direction,
105 hb_bool_t horizontal = HB_DIRECTION_IS_HORIZONTAL (direction);
453 valueFormat.apply_value (c->font, c->direction, this,
501 valueFormat.apply_value (c->font, c->direction, this,
612 valueFormats[0].apply_value (c->font, c->direction, this,
614 valueFormats[1].apply_value (c->font, c->direction, this,
761 valueFormat1.apply_value (c->font, c->direction, this,
763 valueFormat2.apply_value (c->font, c->direction, this,
916 /* Main-direction adjustment */
917 switch (c->direction) {
97 apply_value(hb_font_t *font, hb_direction_t direction, const void *base, const Value *values, hb_glyph_position_t &glyph_pos) const argument
1538 fix_cursive_minor_offset(hb_glyph_position_t *pos, unsigned int i, hb_direction_t direction) argument
1557 fix_mark_attachment(hb_glyph_position_t *pos, unsigned int i, hb_direction_t direction) argument
1596 hb_direction_t direction = buffer->props.direction; local
[all...]
H A Dhb-buffer.cc43 return a->direction == b->direction &&
54 return (unsigned int) p->direction ^
584 /* If direction is set to INVALID, guess from script */
585 if (props.direction == HB_DIRECTION_INVALID) {
586 props.direction = hb_script_get_horizontal_direction (props.script);
877 * @direction:
885 hb_direction_t direction)
891 buffer->props.direction = direction;
[all...]
/external/icu/icu4c/source/i18n/
H A Dreldatefmt.cpp579 double quantity, UDateDirection direction, UDateRelativeUnit unit,
584 if (direction != UDAT_DIRECTION_LAST && direction != UDAT_DIRECTION_NEXT) {
588 int32_t bFuture = direction == UDAT_DIRECTION_NEXT ? 1 : 0;
600 UDateDirection direction, UDateAbsoluteUnit unit,
605 if (unit == UDAT_ABSOLUTE_NOW && direction != UDAT_DIRECTION_PLAIN) {
609 return appendTo.append(cache->absoluteUnits[unit][direction]);
578 format( double quantity, UDateDirection direction, UDateRelativeUnit unit, UnicodeString& appendTo, UErrorCode& status) const argument
599 format( UDateDirection direction, UDateAbsoluteUnit unit, UnicodeString& appendTo, UErrorCode& status) const argument
H A Drbt_pars.cpp904 direction = theDirection;
976 if (direction == UTRANS_FORWARD)
986 TransliteratorIDParser::parseSingleID(rule, p, direction, status);
990 if (direction == UTRANS_FORWARD) {
1000 UnicodeSet* f = TransliteratorIDParser::parseGlobalFilter(rule, p, direction, withParens, NULL);
1003 && (direction == UTRANS_FORWARD) == (withParens == 0))
1032 if (direction == UTRANS_FORWARD)
1073 if (direction == UTRANS_FORWARD)
1079 if (direction == UTRANS_FORWARD)
1126 if ((direction
[all...]
/external/chromium_org/third_party/icu/source/common/
H A Dubidi.c104 * consider if the paragraph direction should be considered in
597 /* Resolve direction of still unresolved open FSI sequences */
614 /* For inverse bidi, default para direction is RTL if there is
622 /* The following is needed to resolve the text direction for default level
788 UBiDiDirection direction; local
835 direction=pLastIsoRun->level&1;
847 direction context and both parentheses receive level 2.
856 if((direction==0 && pOpening->flags&FOUND_L) ||
857 (direction==1 && pOpening->flags&FOUND_R)) { /* N0b */
858 newProp=direction;
1002 UBiDiDirection direction; local
2435 UBiDiDirection direction; local
[all...]
/external/chromium_org/ui/file_manager/file_manager/foreground/css/
H A Dfile_manager.css51 flex-direction: column;
120 flex-direction: row;
136 flex-direction: column;
145 flex-direction: column;
175 flex-direction: column;
325 flex-direction: row;
472 flex-direction: row;
500 flex-direction: row;
559 flex-direction: column;
565 flex-direction
[all...]
/external/icu/icu4c/source/common/
H A Dubidi.c102 * consider if the paragraph direction should be considered in
603 /* Resolve direction of still unresolved open FSI sequences */
622 /* For inverse bidi, default para direction is RTL if there is
630 /* The following is needed to resolve the text direction for default level
798 UBiDiDirection direction; local
802 direction=pLastIsoRun->level&1;
814 direction context and both parentheses receive level 2.
823 if((direction==0 && pOpening->flags&FOUND_L) ||
824 (direction==1 && pOpening->flags&FOUND_R)) { /* N0b */
825 newProp=direction;
1077 UBiDiDirection direction; local
2529 UBiDiDirection direction; local
[all...]
/external/chromium_org/native_client_sdk/src/gonacl_appengine/static/styles/
H A Dstyle.css23 flex-direction: row;
121 flex-direction: column;
179 flex-direction: column;
208 flex-direction: row;
223 flex-direction: column;
/external/chromium_org/third_party/icu/source/i18n/
H A Drbt_pars.cpp904 direction = theDirection;
976 if (direction == UTRANS_FORWARD)
986 TransliteratorIDParser::parseSingleID(rule, p, direction, status);
990 if (direction == UTRANS_FORWARD) {
1000 UnicodeSet* f = TransliteratorIDParser::parseGlobalFilter(rule, p, direction, withParens, NULL);
1003 && (direction == UTRANS_FORWARD) == (withParens == 0))
1032 if (direction == UTRANS_FORWARD)
1073 if (direction == UTRANS_FORWARD)
1079 if (direction == UTRANS_FORWARD)
1126 if ((direction
[all...]
/external/opencv/cvaux/src/
H A Dcvlee.cpp111 CvDirection* direction; member in struct:CvVoronoiSiteInt
123 CvDirection* direction; member in struct:CvVoronoiEdgeInt
505 direction around the top vertex of given hole.
520 direction around the top vertex of given hole.
597 Description : Compute the direction of bisector of two segments
599 pDirection1: in, direction of first segment
600 pDirection2: in, direction of second segment
2541 Edge.direction = _cvSeqPush(DirectionSeq,&EdgeDirection);
2542 pSite->direction = _cvSeqPush(DirectionSeq,&SiteDirection);
2555 pEdge2->direction
[all...]
/external/skia/src/effects/
H A DSkLightingImageFilter.cpp557 SkDistantLight(const SkPoint3& direction, SkColor color) argument
558 : INHERITED(color), fDirection(direction) {
566 const SkPoint3& direction() const { return fDirection; } function in class:SkDistantLight
592 SkDistantLight(const SkPoint3& direction, const SkPoint3& color) argument
593 : INHERITED(color), fDirection(direction) {
596 return new SkDistantLight(direction(), color());
615 SkPoint3 direction(fLocation.fX - SkIntToScalar(x),
618 direction.normalize();
619 return direction;
703 SkPoint3 direction(fLocatio
842 CreateDistantLitDiffuse( const SkPoint3& direction, SkColor lightColor, SkScalar surfaceScale, SkScalar kd, SkImageFilter* input, const CropRect* cropRect) argument
869 CreateDistantLitSpecular( const SkPoint3& direction, SkColor lightColor, SkScalar surfaceScale, SkScalar ks, SkScalar shininess, SkImageFilter* input, const CropRect* cropRect) argument
[all...]
/external/chromium_org/third_party/WebKit/Source/core/html/
H A DHTMLMarqueeElement.js112 reflectAttribute(HTMLMarqueeElementPrototype, 'direction', 'direction');
127 ':host([direction="up"]), :host([direction="down"]) { height: 200px; }';
174 case 'direction':
264 switch (this.direction) {
289 switch (this.direction) {
321 switch (this.direction) {

Completed in 786 milliseconds

<<11121314151617181920>>