Searched refs:direction (Results 426 - 450 of 883) sorted by relevance

<<11121314151617181920>>

/external/chromium_org/third_party/WebKit/Source/core/rendering/
H A DInlineIterator.h102 ALWAYS_INLINE WTF::Unicode::Direction direction() const;
154 observer->embed(embedCharFromDirection(style->direction(), unicodeBidi), FromStyleOrDOM);
426 ALWAYS_INLINE WTF::Unicode::Direction InlineIterator::direction() const function in class:blink::InlineIterator
429 return WTF::Unicode::direction(c);
496 inline BidiRun* InlineBidiResolver::addTrailingRun(BidiRunList<BidiRun>& runs, int start, int stop, BidiRun* run, BidiContext* context, TextDirection direction) const
499 if (direction == LTR)
H A DRenderSliderContainer.cpp104 TextDirection oldTextDirection = style()->direction();
/external/chromium_org/third_party/webrtc/base/
H A Dlogging.cc505 const char * direction = (input ? " << " : " >> "); local
510 LOG_V(level) << label << direction << "## "
536 LOG_V(level) << label << direction
590 LOG_V(level) << label << direction << "## " << consecutive_unprintable
605 LOG_V(level) << label << direction << substr;
607 LOG_V(level) << label << direction << "## omitted for privacy ##"; local
/external/libedit/src/
H A Dsearch.c597 cv_csearch(EditLine *el, int direction, Int ch, int count, int tflag) argument
613 el->el_search.chadir = direction;
619 cp += direction;
620 for (;;cp += direction) {
631 cp -= direction;
636 if (direction > 0)
/external/qemu/distrib/sdl-1.2.15/src/video/windib/
H A DSDL_dibevents.c73 WPARAM rotateKey(WPARAM key,int direction) argument
75 if(direction ==0 ) return key;
79 return Arrows_keymap[(2 + direction) % 4];
81 return Arrows_keymap[(1 + direction) % 4];
83 return Arrows_keymap[direction % 4];
85 return Arrows_keymap[(3 + direction) % 4];
/external/chromium_org/content/shell/renderer/test_runner/
H A Dweb_frame_test_proxy.h100 blink::WebTextDirection direction) {
101 base_proxy_->DidReceiveTitle(frame, title, direction);
102 Base::didReceiveTitle(frame, title, direction);
98 didReceiveTitle(blink::WebLocalFrame* frame, const blink::WebString& title, blink::WebTextDirection direction) argument
H A Dnotification_presenter.cc78 if (notification.direction() == WebTextDirectionRightToLeft)
/external/chromium_org/third_party/angle/samples/angle/sample_util/
H A Dgeometry_utils.cpp25 Vector3 direction(sinf(angleStep * i) * sinf(angleStep * j),
30 result->positions[vertexIdx] = direction * radius;
31 result->normals[vertexIdx] = direction;
/external/chromium_org/third_party/flot/
H A Djquery.flot.selection.min.js79 */(function(e){function t(t){function s(e){n.active&&(h(e),t.getPlaceholder().trigger("plotselecting",[a()]))}function o(t){if(t.which!=1)return;document.body.focus(),document.onselectstart!==undefined&&r.onselectstart==null&&(r.onselectstart=document.onselectstart,document.onselectstart=function(){return!1}),document.ondrag!==undefined&&r.ondrag==null&&(r.ondrag=document.ondrag,document.ondrag=function(){return!1}),c(n.first,t),n.active=!0,i=function(e){u(e)},e(document).one("mouseup",i)}function u(e){return i=null,document.onselectstart!==undefined&&(document.onselectstart=r.onselectstart),document.ondrag!==undefined&&(document.ondrag=r.ondrag),n.active=!1,h(e),m()?f():(t.getPlaceholder().trigger("plotunselected",[]),t.getPlaceholder().trigger("plotselecting",[null])),!1}function a(){if(!m())return null;if(!n.show)return null;var r={},i=n.first,s=n.second;return e.each(t.getAxes(),function(e,t){if(t.used){var n=t.c2p(i[t.direction]),o=t.c2p(s[t.direction]);r[e]={from:Math.min(n,o),to:Math.max(n,o)}}}),r}function f(){var e=a();t.getPlaceholder().trigger("plotselected",[e]),e.xaxis&&e.yaxis&&t.getPlaceholder().trigger("selected",[{x1:e.xaxis.from,y1:e.yaxis.from,x2:e.xaxis.to,y2:e.yaxis.to}])}function l(e,t,n){return t<e?e:t>n?n:t}function c(e,r){var i=t.getOptions(),s=t.getPlaceholder().offset(),o=t.getPlotOffset();e.x=l(0,r.pageX-s.left-o.left,t.width()),e.y=l(0,r.pageY-s.top-o.top,t.height()),i.selection.mode=="y"&&(e.x=e==n.first?0:t.width()),i.selection.mode=="x"&&(e.y=e==n.first?0:t.height())}function h(e){if(e.pageX==null)return;c(n.second,e),m()?(n.show=!0,t.triggerRedrawOverlay()):p(!0)}function p(e){n.show&&(n.show=!1,t.triggerRedrawOverlay(),e||t.getPlaceholder().trigger("plotunselected",[]))}function d(e,n){var r,i,s,o,u=t.getAxes();for(var a in u){r=u[a];if(r.direction==n){o=n+r.n+"axis",!e[o]&&r.n==1&&(o=n+"axis");if(e[o]){i=e[o].from,s=e[o].to;break}}}e[o]||(r=n== (…)
/external/chromium_org/ui/gfx/
H A Drender_text_harfbuzz.cc432 // can be a forward or reverse iterator type depending on the text direction.
659 VisualCursorDirection direction) {
665 SelectionModel edge = EdgeSelectionModel(direction);
668 int visual_index = (direction == CURSOR_RIGHT) ? 0 : runs_.size() - 1;
672 // grapheme in the appropriate direction.
675 bool forward_motion = run->is_rtl == (direction == CURSOR_LEFT);
689 visual_index += (direction == CURSOR_LEFT) ? -1 : 1;
691 return EdgeSelectionModel(direction);
694 bool forward_motion = run->is_rtl == (direction == CURSOR_LEFT);
701 VisualCursorDirection direction) {
657 AdjacentCharSelectionModel( const SelectionModel& selection, VisualCursorDirection direction) argument
699 AdjacentWordSelectionModel( const SelectionModel& selection, VisualCursorDirection direction) argument
[all...]
/external/harfbuzz_ng/util/
H A Doptions.hh178 direction = language = script = NULL;
199 hb_buffer_set_direction (buffer, hb_direction_from_string (direction, -1));
256 const char *direction; member in struct:shape_options_t
/external/ceres-solver/internal/ceres/
H A Dline_search.h125 // conditions) of the gradient along the search direction
158 // optimization problem along a specific search direction.
166 // f(x) = p(position + x * direction)
234 void Init(const Vector& position, const Vector& direction);
/external/chromium_org/ash/wm/overview/
H A Dwindow_selector.h117 // Helper function that moves the selection widget to |direction| on the
119 void Move(Direction direction, bool animate);
/external/chromium_org/chrome/browser/sync_file_system/drive_backend/
H A Dsync_worker_interface.h53 SyncDirection direction) = 0;
/external/chromium_org/chrome/renderer/resources/extensions/
H A Dsearchbox_api.js106 item.direction = null;
H A Dsync_file_system_custom_bindings.js104 fileInfo.direction = args[3];
/external/chromium_org/content/child/indexed_db/
H A Dwebidbdatabase_impl.h74 blink::WebIDBCursorDirection direction,
/external/chromium_org/mojo/services/public/cpp/view_manager/lib/
H A Dview_manager_client_impl.cc166 OrderDirection direction) {
168 service_->ReorderView(view_id, relative_view_id, direction,
321 OrderDirection direction) {
325 ViewPrivate(view).LocalReorder(relative_view, direction);
163 Reorder( Id view_id, Id relative_view_id, OrderDirection direction) argument
319 OnViewReordered(Id view_id, Id relative_view_id, OrderDirection direction) argument
/external/chromium_org/third_party/WebKit/Source/core/rendering/svg/
H A DSVGTextMetrics.cpp66 return constructTextRun(text, position, length, text->style()->direction());
/external/chromium_org/third_party/WebKit/Source/devtools/front_end/
H A DsourcesView.css103 flex-direction: column;
158 flex-direction: column;
/external/chromium_org/third_party/bintrees/bintrees/
H A Dtreemixin.py231 direction = 1 if reverse else 0
232 other = 1 - direction
235 if node.has_child(direction) and go_down:
237 node.down(direction)
/external/chromium_org/ui/accessibility/extensions/alt/
H A Dhide-images.css54 -webkit-animation-direction: forwards;
64 -webkit-animation-direction: forwards;
/external/chromium_org/ui/keyboard/resources/elements/
H A Dkb-key-base.js178 if (!(detail.direction & SwipeDirection.UP) || !this.hintTextValue)
/external/chromium_org/ui/native_theme/
H A Dnative_theme_aura.h39 Part direction,
/external/chromium_org/ui/views/controls/
H A Dprefix_selector.h51 base::i18n::TextDirection direction) OVERRIDE;

Completed in 668 milliseconds

<<11121314151617181920>>