Searched refs:direction (Results 76 - 100 of 290) sorted by relevance

1234567891011>>

/external/icu/icu4c/source/i18n/unicode/
H A Dreldatefmt.h206 * Represents a direction for an absolute unit e.g "Next Tuesday"
409 * @param direction NEXT means a future relative date; LAST means a past
410 * relative date. If direction is anything else, this method sets
421 UDateDirection direction,
428 * @param direction NEXT, LAST, THIS, etc.
431 * appended. If the value of direction is documented as not being fully
439 UDateDirection direction,
/external/icu/icu4j/main/classes/core/src/com/ibm/icu/text/
H A DStringPrep.java536 int direction=UCharacterDirection.CHAR_DIRECTION_COUNT,
551 direction = bdp.getClass(ch);
553 firstCharDir = direction;
555 if(direction == UCharacterDirection.LEFT_TO_RIGHT){
559 if(direction == UCharacterDirection.RIGHT_TO_LEFT || direction == UCharacterDirection.RIGHT_TO_LEFT_ARABIC){
576 (direction == UCharacterDirection.RIGHT_TO_LEFT || direction == UCharacterDirection.RIGHT_TO_LEFT_ARABIC))
/external/pdfium/core/src/reflow/
H A Dreflowedtextpage.h46 virtual int GetOrderByDirection(int index, int direction) const;
64 int GetWordBreak(int index, int direction) const;
/external/fonttools/Lib/fontTools/pens/
H A DpointInsidePen.py42 # intersects the ray in one direction and decremented if it intersects in
43 # the other direction).
144 direction = 3*ay*t2 + 2*by*t + cy
145 if direction == 0.0:
146 direction = 6*ay*t + 2*by
147 if direction == 0.0:
148 direction = ay
149 goingUp = direction > 0.0
/external/fonttools/Tools/fontTools/pens/
H A DpointInsidePen.py42 # intersects the ray in one direction and decremented if it intersects in
43 # the other direction).
144 direction = 3*ay*t2 + 2*by*t + cy
145 if direction == 0.0:
146 direction = 6*ay*t + 2*by
147 if direction == 0.0:
148 direction = ay
149 goingUp = direction > 0.0
/external/skia/src/animator/
H A DSkPathParts.cpp204 SK_MEMBER(direction, PathDirection)
211 SkAddGeom::SkAddGeom() : direction(SkPath::kCCW_Direction) {
233 fPath->fPath.addRect(fRect, (SkPath::Direction) direction);
249 fPath->fPath.addOval(fRect, (SkPath::Direction) direction);
271 fPath->fPath.addCircle(x, y, radius, (SkPath::Direction) direction);
292 fPath->fPath.addRoundRect(fRect, rx, ry, (SkPath::Direction) direction);
/external/harfbuzz_ng/src/
H A Dhb-font.cc645 * @direction:
656 hb_direction_t direction,
659 return font->get_glyph_advance_for_direction (glyph, direction, x, y);
666 * @direction:
677 hb_direction_t direction,
680 return font->get_glyph_origin_for_direction (glyph, direction, x, y);
687 * @direction:
698 hb_direction_t direction,
701 return font->add_glyph_origin_for_direction (glyph, direction, x, y);
708 * @direction
654 hb_font_get_glyph_advance_for_direction(hb_font_t *font, hb_codepoint_t glyph, hb_direction_t direction, hb_position_t *x, hb_position_t *y) argument
675 hb_font_get_glyph_origin_for_direction(hb_font_t *font, hb_codepoint_t glyph, hb_direction_t direction, hb_position_t *x, hb_position_t *y) argument
696 hb_font_add_glyph_origin_for_direction(hb_font_t *font, hb_codepoint_t glyph, hb_direction_t direction, hb_position_t *x, hb_position_t *y) argument
717 hb_font_subtract_glyph_origin_for_direction(hb_font_t *font, hb_codepoint_t glyph, hb_direction_t direction, hb_position_t *x, hb_position_t *y) argument
739 hb_font_get_glyph_kerning_for_direction(hb_font_t *font, hb_codepoint_t first_glyph, hb_codepoint_t second_glyph, hb_direction_t direction, hb_position_t *x, hb_position_t *y) argument
761 hb_font_get_glyph_extents_for_origin(hb_font_t *font, hb_codepoint_t glyph, hb_direction_t direction, hb_glyph_extents_t *extents) argument
785 hb_font_get_glyph_contour_point_for_origin(hb_font_t *font, hb_codepoint_t glyph, unsigned int point_index, hb_direction_t direction, hb_position_t *x, hb_position_t *y) argument
[all...]
H A Dhb-ot-shape-fallback.cc220 if (buffer->props.direction == HB_DIRECTION_LTR) {
223 } else if (buffer->props.direction == HB_DIRECTION_RTL) {
323 if (HB_DIRECTION_IS_FORWARD (buffer->props.direction)) {
348 if (HB_DIRECTION_IS_HORIZONTAL (plan->props.direction))
349 horiz_dir = plan->props.direction;
376 if (HB_DIRECTION_IS_FORWARD (buffer->props.direction)) {
460 buffer->props.direction,
H A Dhb-graphite2.cc347 if (HB_DIRECTION_IS_BACKWARD(buffer->props.direction))
358 if (HB_DIRECTION_IS_BACKWARD (buffer->props.direction))
361 if (!HB_DIRECTION_IS_BACKWARD (buffer->props.direction))
366 if (!HB_DIRECTION_IS_BACKWARD (buffer->props.direction))
369 if (HB_DIRECTION_IS_BACKWARD (buffer->props.direction))
/external/v8/benchmarks/
H A Ddeltablue.js345 this.direction = Direction.NONE;
358 this.direction = (this.v2.mark != mark && Strength.stronger(this.strength, this.v2.walkStrength))
363 this.direction = (this.v1.mark != mark && Strength.stronger(this.strength, this.v1.walkStrength))
368 this.direction = Strength.stronger(this.strength, this.v1.walkStrength)
372 this.direction = Strength.stronger(this.strength, this.v2.walkStrength)
384 this.direction = Direction.NONE;
391 return this.direction != Direction.NONE;
405 return (this.direction == Direction.FORWARD) ? this.v1 : this.v2;
412 return (this.direction == Direction.FORWARD) ? this.v2 : this.v1;
431 this.direction
[all...]
/external/skia/src/effects/
H A DSkGpuBlurUtils.cpp52 Gr1DKernelEffect::Direction direction,
59 texture, direction, radius, sigma, useBounds, bounds));
93 Gr1DKernelEffect::Direction direction,
100 direction, radius, sigma, false, bounds);
108 if (direction == Gr1DKernelEffect::kX_Direction) {
132 direction, radius, sigma, true, bounds);
136 direction, radius, sigma, true, bounds);
138 direction, radius, sigma, true, bounds);
140 direction, radius, sigma, false, bounds);
46 convolve_gaussian_1d(GrContext* context, GrRenderTarget* rt, const GrClip& clip, const SkRect& srcRect, const SkRect& dstRect, GrTexture* texture, Gr1DKernelEffect::Direction direction, int radius, float sigma, bool useBounds, float bounds[2]) argument
87 convolve_gaussian(GrContext* context, GrRenderTarget* rt, const GrClip& clip, const SkRect& srcRect, const SkRect& dstRect, GrTexture* texture, Gr1DKernelEffect::Direction direction, int radius, float sigma, bool cropToSrcRect) argument
/external/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/bidi/
H A DTestInverse.java79 private void _testManyInverseBidi(Bidi bidi, int direction) { argument
84 (direction == Bidi.DIRECTION_LEFT_TO_RIGHT ? 'L' : 'R') +
98 _testInverseBidi(bidi, new String(text), direction);
104 private void _testInverseBidi(Bidi bidi, String src, int direction) { argument
107 if (direction == Bidi.DIRECTION_LEFT_TO_RIGHT) {
/external/jmonkeyengine/engine/src/test/jme3test/collision/
H A DTestMousePick.java79 Vector3f direction = cam.getWorldCoordinates(inputManager.getCursorPosition(), 0.3f);
80 direction.subtractLocal(origin).normalizeLocal();
82 Ray ray = new Ray(origin, direction);
/external/libvpx/libvpx/vp8/encoder/
H A Dlookahead.c196 int direction)
200 if (direction == PEEK_FORWARD)
211 else if (direction == PEEK_BACKWARD)
194 vp8_lookahead_peek(struct lookahead_ctx *ctx, unsigned int index, int direction) argument
/external/okhttp/website/static/
H A Djquery.smooth-scroll.min.js7 (function(l){function t(l){return l.replace(/(:|\.)/g,"\\$1")}var e="1.4.10",o={exclude:[],excludeWithin:[],offset:0,direction:"top",scrollElement:null,scrollTarget:null,beforeScroll:function(){},afterScroll:function(){},easing:"swing",speed:400,autoCoefficent:2},r=function(t){var e=[],o=!1,r=t.dir&&"left"==t.dir?"scrollLeft":"scrollTop";return this.each(function(){if(this!=document&&this!=window){var t=l(this);t[r]()>0?e.push(this):(t[r](1),o=t[r]()>0,o&&e.push(this),t[r](0))}}),e.length||this.each(function(){"BODY"===this.nodeName&&(e=[this])}),"first"===t.el&&e.length>1&&(e=[e[0]]),e};l.fn.extend({scrollable:function(l){var t=r.call(this,{dir:l});return this.pushStack(t)},firstScrollable:function(l){var t=r.call(this,{el:"first",dir:l});return this.pushStack(t)},smoothScroll:function(e){e=e||{};var o=l.extend({},l.fn.smoothScroll.defaults,e),r=l.smoothScroll.filterPath(location.pathname);return this.unbind("click.smoothscroll").bind("click.smoothscroll",function(e){var n=this,s=l(this),c=o.exclude,i=o.excludeWithin,a=0,f=0,h=!0,u={},d=location.hostname===n.hostname||!n.hostname,m=o.scrollTarget||(l.smoothScroll.filterPath(n.pathname)||r)===r,p=t(n.hash);if(o.scrollTarget||d&&m&&p){for(;h&&c.length>a;)s.is(t(c[a++]))&&(h=!1);for(;h&&i.length>f;)s.closest(i[f++]).length&&(h=!1)}else h=!1;h&&(e.preventDefault(),l.extend(u,o,{scrollTarget:o.scrollTarget||p,link:n}),l.smoothScroll(u))}),this}}),l.smoothScroll=function(t,e){var o,r,n,s,c=0,i="offset",a="scrollTop",f={},h={};"number"==typeof t?(o=l.fn.smoothScroll.defaults,n=t):(o=l.extend({},l.fn.smoothScroll.defaults,t||{}),o.scrollElement&&(i="position","static"==o.scrollElement.css("position")&&o.scrollElement.css("position","relative"))),o=l.extend({link:null},o),a="left"==o.direction?"scrollLeft":a,o.scrollElement?(r=o.scrollElement,c=r[a]()):r=l("html, body").firstScrollable(),o.beforeScroll.call(r,o),n="number"==typeof t?t:e||l(o.scrollTarget)[i]()&&l(o.scrollTarget)[i]()[o.direction]||0,f[a]=n+c+o.offset,s=o.speed,"auto"===s&&(s=f[a]||r.scrollTop(),s/=o.autoCoefficent),h={duratio (…)
/external/icu/icu4c/source/i18n/
H A Dcpdtrans.cpp66 UTransDirection direction,
74 init(id, direction, TRUE, status);
134 * @param direction either FORWARD or REVERSE
147 UTransDirection direction,
159 if (!TransliteratorIDParser::parseCompoundID(id, direction,
168 init(list, direction, fixReverseID, status);
180 * is, it should be in the FORWARD order; if direction is REVERSE then
182 * @param direction either FORWARD or REVERSE
189 UTransDirection direction,
214 int32_t j = (direction
65 CompoundTransliterator(const UnicodeString& id, UTransDirection direction, UnicodeFilter* adoptedFilter, UParseError& , UErrorCode& status) argument
146 init(const UnicodeString& id, UTransDirection direction, UBool fixReverseID, UErrorCode& status) argument
188 init(UVector& list, UTransDirection direction, UBool fixReverseID, UErrorCode& status) argument
[all...]
H A Dcpdtrans.h81 * direction with a NULL filter.
204 UTransDirection direction,
209 UTransDirection direction,
/external/ipsec-tools/src/racoon/missing/crypto/rijndael/
H A Drijndael-api-fst.c39 int rijndael_makeKey(keyInstance *key, BYTE direction, int keyLen, char *keyMaterial) { argument
48 if ((direction == DIR_ENCRYPT) || (direction == DIR_DECRYPT)) {
49 key->direction = direction;
72 if (direction == DIR_DECRYPT) {
100 key->direction == DIR_DECRYPT) {
214 key->direction == DIR_DECRYPT) {
277 (cipher->mode != MODE_CFB1 && key->direction == DIR_ENCRYPT)) {
376 key->direction
[all...]
/external/aac/libAACdec/src/
H A Drvlc_info.h94 #define FWD 0 /* bitstream decoding direction forward (RVL coded part) */
95 #define BWD 1 /* bitstream decoding direction backward (RVL coded part) */
137 UCHAR direction; member in struct:__anon51
/external/aac/libAACenc/src/
H A Daacenc_tns.h125 INT tnsFilterDirection[MAX_NUM_OF_FILTERS]; /* Filtering direction, 0=up, 1=down TABUL */
183 INT direction[TRANS_FAC][MAX_NUM_OF_FILTERS]; member in struct:__anon85
/external/droiddriver/src/io/appium/droiddriver/
H A DUiElement.java181 * Scrolls in the given direction.
183 * @param direction specifies where the view port will move instead of the finger
185 void scroll(PhysicalDirection direction); argument
/external/icu/icu4c/source/layoutex/layout/
H A DParagraphLayout.h38 * same font, script and direction, and will create a <code>LayoutEngine</code> object for each run.
186 void append(const LEFontInstance *font, UBiDiDirection direction, le_int32 glyphCount,
193 * script, and direction. The text is represented by an array of
223 * Get the direction of the visual run.
225 * @return the direction of the run. This will be UBIDI_LTR if the
347 inline VisualRun(const LEFontInstance *font, UBiDiDirection direction, le_int32 glyphCount,
465 * or <code>UBIDI_MIXED</code> if the text has mixed direction.
737 inline ParagraphLayout::VisualRun::VisualRun(const LEFontInstance *font, UBiDiDirection direction, le_int32 glyphCount, argument
739 : fFont(font), fDirection(direction), fGlyphCount(glyphCount),
/external/wpa_supplicant_8/wpa_supplicant/
H A Dwmm_ac.h69 * the respective tspec slot (according to the direction).
126 * direction - Traffic Stream's direction
128 enum wmm_ac_dir direction; member in struct:wmm_ac_ts_setup_params
/external/icu/icu4c/source/test/intltest/
H A Dreldatefmttest.cpp23 static const char *DirectionStr(UDateDirection direction);
29 UDateDirection direction; member in struct:WithQuantityExpected
35 UDateDirection direction; member in struct:WithoutQuantityExpected
530 UDateDirection direction,
534 UDateDirection direction,
833 fmt.format(expectedResult.value, expectedResult.direction, expectedResult.unit, actual, status);
842 DirectionStr(expectedResult.direction),
857 fmt.format(expectedResult.direction, expectedResult.unit, actual, status);
865 DirectionStr(expectedResult.direction),
876 UDateDirection direction,
874 VerifyIllegalArgument( const RelativeDateTimeFormatter& fmt, UDateDirection direction, UDateRelativeUnit unit) argument
886 VerifyIllegalArgument( const RelativeDateTimeFormatter& fmt, UDateDirection direction, UDateAbsoluteUnit unit) argument
928 DirectionStr( UDateDirection direction) argument
[all...]
/external/icu/icu4c/source/layout/
H A DContextualSubstSubtables.cpp53 le_int32 direction = 1; local
58 direction = -1;
73 match += direction;
84 le_int32 direction = 1; local
89 direction = -1;
112 match += direction;
121 le_int32 direction = 1; local
126 direction = -1;
143 glyph += direction;

Completed in 2233 milliseconds

1234567891011>>