Searched refs:caret (Results 1 - 25 of 62) sorted by relevance

123

/external/chromium_org/ppapi/cpp/
H A Dtext_input_controller.cc36 void TextInputController::UpdateCaretPosition(const Rect& caret) { argument
39 instance_.pp_instance(), &caret.pp_rect());
51 uint32_t caret,
57 caret,
50 UpdateSurroundingText(const Var& text, uint32_t caret, uint32_t anchor) argument
H A Dtext_input_controller.h42 /// text input caret area.
44 /// @param[in] caret A rectangle indicating the caret area.
45 void UpdateCaretPosition(const Rect& caret);
57 /// @param[in] caret A integer indicating the byte index of caret location in
60 /// @param[in] caret A integer indicating the byte index of anchor location in
62 /// <code>caret</code>.
64 uint32_t caret,
/external/chromium_org/ppapi/c/
H A Dppb_text_input_controller.h39 * Input caret is not in an editable mode, no input method shall be used.
43 * Input caret is in a normal editable mode, any input method can be used.
47 * Input caret is in a password box, an input method may be used only if
81 * Informs the browser about the coordinates of the text input caret area.
86 const struct PP_Rect* caret);
94 * of text selection in the plugin. <code>caret</code> is the byte-index of
95 * the caret position within <code>text</code>. <code>anchor</code> is the
97 * it is the other edge of selection different from <code>caret</code>. If
98 * there are no selection, <code>anchor</code> is equal to <code>caret</code>.
103 * of suggestion of IME by taking the context into account (e.g., if the caret
[all...]
/external/chromium_org/ppapi/thunk/
H A Dppb_text_input_thunk.cc53 const PP_Rect* caret,
56 if (enter.succeeded() && caret && bounding_box)
57 enter.functions()->UpdateCaretPosition(instance, *caret, *bounding_box);
61 const PP_Rect* caret) {
63 if (enter.succeeded() && caret)
64 enter.functions()->UpdateCaretPosition(instance, *caret, PP_Rect());
74 uint32_t caret, uint32_t anchor) {
77 enter.functions()->UpdateSurroundingText(instance, text, caret, anchor);
81 uint32_t caret, uint32_t anchor) {
87 caret,
52 UpdateCaretPosition_0_2(PP_Instance instance, const PP_Rect* caret, const PP_Rect* bounding_box) argument
60 UpdateCaretPosition(PP_Instance instance, const PP_Rect* caret) argument
73 UpdateSurroundingText_0_2(PP_Instance instance, const char* text, uint32_t caret, uint32_t anchor) argument
80 UpdateSurroundingText_1_0(PP_Instance instance, PP_Var text, uint32_t caret, uint32_t anchor) argument
[all...]
H A Dppb_instance_api.h146 const PP_Rect& caret,
152 uint32_t caret,
/external/chromium_org/ppapi/c/dev/
H A Dppb_text_input_dev.h38 * Input caret is not in an editable mode, no input method shall be used.
42 * Input caret is in a normal editable mode, any input method can be used.
46 * Input caret is in a password box, an input method may be used only if
80 * Informs the browser about the coordinates of the text input caret and the
85 const struct PP_Rect* caret,
95 * of text selection in the plugin. <code>caret</code> is the byte-index of
96 * the caret position within <code>text</code>. <code>anchor</code> is the
98 * it is the other edge of selection different from <code>caret</code>. If
99 * there are no selection, <code>anchor</code> is equal to <code>caret</code>.
104 * of suggestion of IME by taking the context into account (e.g., if the caret
[all...]
/external/chromium_org/ppapi/cpp/dev/
H A Dtext_input_dev.h49 void UpdateCaretPosition(const Rect& caret, const Rect& bounding_box);
53 uint32_t caret, uint32_t anchor);
H A Dtext_input_dev.cc70 void TextInput_Dev::UpdateCaretPosition(const Rect& caret, argument
74 instance_.pp_instance(), &caret.pp_rect(), &bounding_box.pp_rect());
77 instance_.pp_instance(), &caret.pp_rect(), &bounding_box.pp_rect());
99 uint32_t caret,
103 instance_.pp_instance(), text.c_str(), caret, anchor);
98 UpdateSurroundingText(const std::string& text, uint32_t caret, uint32_t anchor) argument
/external/chromium_org/ppapi/api/dev/
H A Dppb_text_input_dev.idl22 * Input caret is not in an editable mode, no input method shall be used.
26 * Input caret is in a normal editable mode, any input method can be used.
30 * Input caret is in a password box, an input method may be used only if
58 * Informs the browser about the coordinates of the text input caret and the
63 [in] PP_Rect caret,
75 * of text selection in the plugin. <code>caret</code> is the byte-index of
76 * the caret position within <code>text</code>. <code>anchor</code> is the
78 * it is the other edge of selection different from <code>caret</code>. If
79 * there are no selection, <code>anchor</code> is equal to <code>caret</code>.
84 * of suggestion of IME by taking the context into account (e.g., if the caret
[all...]
/external/chromium_org/ppapi/api/
H A Dppb_text_input_controller.idl21 * Input caret is not in an editable mode, no input method shall be used.
25 * Input caret is in a normal editable mode, any input method can be used.
29 * Input caret is in a password box, an input method may be used only if
57 * Informs the browser about the coordinates of the text input caret area.
62 [in] PP_Rect caret);
72 * of text selection in the plugin. <code>caret</code> is the byte-index of
73 * the caret position within <code>text</code>. <code>anchor</code> is the
75 * it is the other edge of selection different from <code>caret</code>. If
76 * there are no selection, <code>anchor</code> is equal to <code>caret</code>.
81 * of suggestion of IME by taking the context into account (e.g., if the caret
[all...]
/external/chromium_org/third_party/WebKit/Source/core/editing/
H A DInsertLineBreakCommand.cpp74 VisiblePosition caret(selection.visibleStart());
77 if (caret.isNull())
80 Position pos(caret.deepEquivalent());
94 if (isEndOfParagraph(caret) && !lineBreakExistsAtVisiblePosition(caret)) {
156 // will either (a) select the line break we inserted, or it will (b) be a caret just
158 // So, this next call sets the endingSelection() to a caret just after the line break
H A DCaret.cpp137 // if caretNode is a block and caret is inside it then caret should be painted by that block
180 // Get the renderer that will be responsible for painting the caret
245 // flag will cause another caret layout to happen the first time
246 // that we try to paint the caret after this call. That one will work since
249 // And, we need to leave this layout here so the caret moves right
271 LayoutRect caret = intersection(drawingRect, clipRect); local
272 if (caret.isEmpty())
286 context->fillRect(caret, caretColor);
H A DInsertTextCommand.cpp156 // If the caret is just before a placeholder, downstream will normalize the caret to it.
160 VisiblePosition caret(startPosition);
161 if (isEndOfBlock(caret) && isStartOfParagraph(caret))
/external/chromium_org/third_party/polymer/components-chromium/paper-input/
H A Dpaper-input-extracted.js157 this.$.caret.classList.add('focused');
174 this.$.caret.classList.remove('focused');
216 // No caret animation if there is text in the input.
218 this.$.caret.classList.remove('focused');
253 // No caret animation if there is text in the input.
255 this.$.caret.classList.add('animating');
257 this.$.caret.classList.add('focused');
313 this.$.caret.classList.remove('animating');
/external/chromium_org/ui/gfx/
H A Drender_text_pango.cc180 size_t caret = selection.caret_pos(); local
182 if (caret < LayoutIndexToTextIndex(item->offset + item->length)) {
183 caret = IndexOfAdjacentGrapheme(caret, CURSOR_FORWARD);
184 return SelectionModel(caret, CURSOR_BACKWARD);
187 if (caret > LayoutIndexToTextIndex(item->offset)) {
188 caret = IndexOfAdjacentGrapheme(caret, CURSOR_BACKWARD);
189 return SelectionModel(caret, CURSOR_FORWARD);
493 const SelectionModel& caret) cons
509 size_t caret = IndexOfAdjacentGrapheme( local
516 size_t caret = IndexOfAdjacentGrapheme( local
[all...]
H A Drender_text_pango.h48 // Returns the run that contains the character attached to the caret in the
50 GSList* GetRunContainingCaret(const SelectionModel& caret) const;
53 // or last caret position inside (not at a boundary of) the run.
54 // The returned value represents a cursor/caret position without a selection.
H A Drender_text_harfbuzz.cc674 size_t caret = selection.caret_pos(); local
677 if (caret < LayoutIndexToTextIndex(run->range.end())) {
678 caret = IndexOfAdjacentGrapheme(caret, CURSOR_FORWARD);
679 return SelectionModel(caret, CURSOR_BACKWARD);
682 if (caret > LayoutIndexToTextIndex(run->range.start())) {
683 caret = IndexOfAdjacentGrapheme(caret, CURSOR_BACKWARD);
684 return SelectionModel(caret, CURSOR_FORWARD);
956 const SelectionModel& caret) cons
[all...]
H A Drender_text_win.cc608 size_t caret = selection.caret_pos(); local
612 if (caret < LayoutIndexToTextIndex(run->range.end())) {
613 caret = IndexOfAdjacentGrapheme(caret, CURSOR_FORWARD);
614 return SelectionModel(caret, CURSOR_BACKWARD);
617 if (caret > LayoutIndexToTextIndex(run->range.start())) {
618 caret = IndexOfAdjacentGrapheme(caret, CURSOR_BACKWARD);
619 return SelectionModel(caret, CURSOR_FORWARD);
1248 size_t RenderTextWin::GetRunContainingCaret(const SelectionModel& caret) cons
[all...]
H A Drender_text_win.h108 size_t GetRunContainingCaret(const SelectionModel& caret) const;
112 // or last caret position inside (not at a boundary of) the run.
113 // The returned value represents a cursor/caret position without a selection.
/external/clang/lib/Basic/
H A DOperatorPrecedence.cpp58 case tok::caret: return prec::ExclusiveOr;
/external/chromium_org/ppapi/proxy/
H A Dppb_instance_proxy.h110 const PP_Rect& caret,
116 uint32_t caret,
239 const PP_Rect& caret,
245 uint32_t caret,
/external/chromium_org/chrome/browser/resources/ntp4/
H A Dnav_dot.css58 -webkit-appearance: caret;
/external/chromium_org/ppapi/generators/
H A Didl_lexer.py195 caret = '\t^'.expandtabs(pos)
198 return "%s\n%s" % (self.lines[line - 1], caret)
/external/chromium_org/tools/idl_parser/
H A Didl_lexer.py206 caret = ' ' * pos + '^'
209 return "%s\n%s" % (self.lines[line - 1], caret)
/external/linux-tools-perf/perf-3.12.0/tools/perf/Documentation/
H A Dasciidoc.conf16 caret=&#94;

Completed in 4038 milliseconds

123