HomeSort by relevance Sort by last modified time
    Searched refs:caret (Results 1 - 25 of 70) sorted by null

1 2 3

  /external/chromium_org/ppapi/cpp/
text_input_controller.h 42 /// 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,
text_input_controller.cc 36 void TextInputController::UpdateCaretPosition(const Rect& caret) {
39 instance_.pp_instance(), &caret.pp_rect());
51 uint32_t caret,
57 caret,
  /external/chromium_org/ppapi/c/
ppb_text_input_controller.h 39 * 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/cpp/dev/
text_input_dev.h 49 void UpdateCaretPosition(const Rect& caret, const Rect& bounding_box);
53 uint32_t caret, uint32_t anchor);
text_input_dev.cc 70 void TextInput_Dev::UpdateCaretPosition(const Rect& caret,
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);
  /external/chromium_org/ppapi/thunk/
ppb_text_input_thunk.cc 53 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,
    [all...]
ppb_instance_api.h 126 const PP_Rect& caret,
132 uint32_t caret,
  /external/chromium_org/ppapi/c/dev/
ppb_text_input_dev.h 38 * 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/api/dev/
ppb_text_input_dev.idl 22 * 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/
ppb_text_input_controller.idl 21 * 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/
InsertLineBreakCommand.cpp 58 // Insert the BR after the caret position. In the case the
70 // Insert the BR after the caret position. In the case the
97 VisiblePosition caret(selection.visibleStart());
100 if (caret.isNull())
103 Position pos(caret.deepEquivalent());
117 if (isEndOfParagraph(caret) && !lineBreakExistsAtVisiblePosition(caret)) {
179 // will either (a) select the line break we inserted, or it will (b) be a caret just
181 // So, this next call sets the endingSelection() to a caret just after the line break
Caret.cpp 27 #include "core/editing/Caret.h"
135 // if caretNode is a block and caret is inside it then caret should be painted by that block
156 // Get the renderer that will be responsible for painting the caret
224 // flag will cause another caret layout to happen the first time
225 // that we try to paint the caret after this call. That one will work since
228 // And, we need to leave this layout here so the caret moves right
251 LayoutRect caret = intersection(drawingRect, clipRect); local
252 if (caret.isEmpty())
266 context->fillRect(caret, caretColor)
    [all...]
InsertTextCommand.cpp 159 // If the caret is just before a placeholder, downstream will normalize the caret to it.
163 VisiblePosition caret(startPosition);
164 if (isEndOfBlock(caret) && isStartOfParagraph(caret))
  /external/chromium_org/ui/gfx/
render_text_linux.cc 165 size_t caret = selection.caret_pos(); local
167 if (caret < LayoutIndexToTextIndex(item->offset + item->length)) {
168 caret = IndexOfAdjacentGrapheme(caret, CURSOR_FORWARD);
169 return SelectionModel(caret, CURSOR_BACKWARD);
172 if (caret > LayoutIndexToTextIndex(item->offset)) {
173 caret = IndexOfAdjacentGrapheme(caret, CURSOR_BACKWARD);
174 return SelectionModel(caret, CURSOR_FORWARD);
475 const SelectionModel& caret) const
491 size_t caret = IndexOfAdjacentGrapheme( local
498 size_t caret = IndexOfAdjacentGrapheme( local
    [all...]
render_text_linux.h 48 // 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.
render_text_win.cc 293 size_t caret = selection.caret_pos(); local
297 if (caret < LayoutIndexToTextIndex(run->range.end())) {
298 caret = IndexOfAdjacentGrapheme(caret, CURSOR_FORWARD);
299 return SelectionModel(caret, CURSOR_BACKWARD);
302 if (caret > LayoutIndexToTextIndex(run->range.start())) {
303 caret = IndexOfAdjacentGrapheme(caret, CURSOR_BACKWARD);
304 return SelectionModel(caret, CURSOR_FORWARD);
    [all...]
render_text_win.h 104 size_t GetRunContainingCaret(const SelectionModel& caret) const;
108 // or last caret position inside (not at a boundary of) the run.
109 // The returned value represents a cursor/caret position without a selection.
  /external/clang/lib/Basic/
OperatorPrecedence.cpp 58 case tok::caret: return prec::ExclusiveOr;
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/build/
ConvertSwitchQuickFixProcessor.java 90 int caret = context.getSelectionOffset(); local
141 // See if the caret is on the same line as the error
142 if (caret <= errorStart) {
145 if (i <= caret) {
157 if (i >= caret) {
  /external/chromium_org/ppapi/proxy/
ppb_instance_proxy.h 96 const PP_Rect& caret,
102 uint32_t caret,
197 const PP_Rect& caret,
203 uint32_t caret,
  /external/chromium_org/chrome/browser/resources/ntp4/
nav_dot.css 59 -webkit-appearance: caret;
  /external/chromium_org/ppapi/generators/
idl_lexer.py 192 caret = '\t^'.expandtabs(pos)
195 return "%s\n%s" % (self.lines[line - 1], caret)
  /external/chromium_org/tools/idl_parser/
idl_lexer.py 192 caret = ' ' * pos + '^'
195 return "%s\n%s" % (self.lines[line - 1], caret)
  /external/linux-tools-perf/Documentation/
asciidoc.conf 16 caret=&#94;
  /external/chromium/chrome/browser/autocomplete/
autocomplete_edit_view_views.h 155 // Selects the text given by |caret| and |end|.
156 void SelectRange(size_t caret, size_t end);

Completed in 594 milliseconds

1 2 3