Searched defs:underline (Results 1 - 25 of 31) sorted by relevance

12

/external/chromium_org/third_party/WebKit/Source/core/editing/
H A DCompositionUnderlineRangeFilter.cpp23 const CompositionUnderline& underline = m_underlines[index]; local
25 if (underline.endOffset <= m_indexLo) {
26 // |underline| lies before the query range: keep on looking.
28 } else if (underline.startOffset <= m_indexHi) {
29 // |underline| intersects with the query range: valid, so return.
32 // |underline| is completely after the query range: bail.
H A DInputMethodController.cpp198 CompositionUnderline underline = m_customCompositionUnderlines[i]; local
199 underline.startOffset -= baseOffset;
200 underline.endOffset -= baseOffset;
201 underlines.append(underline);
H A DEditorCommand.cpp1106 RefPtrWillBeRawPtr<CSSPrimitiveValue> underline = CSSPrimitiveValue::createIdentifier(CSSValueUnderline); local
1107 return executeToggleStyleInList(frame, source, EditActionUnderline, CSSPropertyWebkitTextDecorationsInEffect, underline.get());
1345 return stateStyle(frame, CSSPropertyWebkitTextDecorationsInEffect, "underline");
/external/chromium_org/third_party/ots/src/
H A Dpost.h19 int16_t underline; member in struct:ots::OpenTypePOST
/external/chromium_org/ui/gfx/
H A Drender_text_harfbuzz.h56 bool underline; member in struct:gfx::internal::TextRunHarfBuzz
H A Drender_text_mac.h63 bool underline; member in struct:gfx::RenderTextMac::TextRun
H A Drender_text_win.h35 bool underline; member in struct:gfx::internal::TextRun
H A Drender_text_mac.cc175 run.underline, run.strike, run.diagonal_strike);
188 underline(false),
330 const CFNumberRef underline = local
334 if (underline && CFNumberGetValue(underline, kCFNumberSInt32Type, &value))
335 run->underline = (value == kCTUnderlineStyleSingle);
H A Drender_text.cc47 // Fraction of the text size to lower an underline below the baseline.
162 // Value of |underline_thickness_| that indicates that underline metrics have
278 void SkiaTextRenderer::DrawDecorations(int x, int y, int width, bool underline, argument
280 if (underline)
959 // Save the underline and color breaks to undo the temporary styles later.
964 // Apply an underline to the composition range in |underlines|.
977 // Restore the underline and color breaks to undo the temporary styles.
/external/chromium_org/content/shell/renderer/test_runner/
H A Dtext_input_controller.cc179 // Split underline into up to 3 elements (before, selection, and after).
181 blink::WebCompositionUnderline underline; local
183 underline.endOffset = length;
185 underline.endOffset = start;
186 underlines.push_back(underline);
187 underline.startOffset = start;
188 underline.endOffset = start + length;
190 underline.thick = true;
191 underlines.push_back(underline);
193 underline
[all...]
/external/chromium_org/third_party/WebKit/Source/core/html/ime/
H A DInputMethodContext.cpp108 CompositionUnderline underline; local
110 return underline;
114 return underline;
122 // When no underline information is available while composition exists,
124 underline.endOffset = controller.compositionEnd() - controller.compositionStart();
125 return underline;
/external/chromium_org/third_party/skia/src/animator/
H A DSkDrawPaint.h65 SkBool underline; member in class:SkDrawPaint
/external/chromium_org/ui/views/controls/
H A Dlink.cc181 void Link::SetUnderline(bool underline) { argument
182 if (underline_ == underline)
184 underline_ = underline;
/external/skia/src/animator/
H A DSkDrawPaint.h65 SkBool underline; member in class:SkDrawPaint
/external/chromium_org/third_party/freetype/include/freetype/
H A Dftwinfnt.h196 FT_Byte underline; member in struct:FT_WinFNT_HeaderRec_
/external/freetype/include/
H A Dftwinfnt.h197 FT_Byte underline; member in struct:FT_WinFNT_HeaderRec_
/external/pdfium/core/include/thirdparties/freetype/freetype/
H A Dftwinfnt.h196 FT_Byte underline; member in struct:FT_WinFNT_HeaderRec_
/external/pdfium/core/src/fxge/fx_freetype/fxft2.5.01/include/freetype/
H A Dftwinfnt.h196 FT_Byte underline; member in struct:FT_WinFNT_HeaderRec_
/external/chromium_org/chrome/browser/chromeos/input_method/
H A Dinput_method_engine.cc271 CompositionText::UnderlineAttribute underline; local
275 underline.type = CompositionText::COMPOSITION_TEXT_UNDERLINE_SINGLE;
278 underline.type = CompositionText::COMPOSITION_TEXT_UNDERLINE_DOUBLE;
284 underline.start_index = segment->start;
285 underline.end_index = segment->end;
286 composition_text_->mutable_underline_attributes()->push_back(underline);
/external/chromium_org/ui/base/ime/
H A Dinput_method_chromeos_unittest.cc640 // If there is no underline, |underlines| contains one underline and it is
641 // whole text underline.
651 // Set up chromeos composition text with one underline attribute.
654 chromeos::CompositionText::UnderlineAttribute underline; local
655 underline.type = chromeos::CompositionText::COMPOSITION_TEXT_UNDERLINE_SINGLE;
656 underline.start_index = 1UL;
657 underline.end_index = 4UL;
659 underline);
669 EXPECT_EQ(GetOffsetInUTF16(kSampleText, underline
686 chromeos::CompositionText::UnderlineAttribute underline; local
718 chromeos::CompositionText::UnderlineAttribute underline; local
[all...]
/external/chromium_org/ui/base/ime/win/
H A Dimm32_manager.cc81 ui::CompositionUnderline underline; local
82 underline.start_offset = clause_data[i];
83 underline.end_offset = clause_data[i+1];
84 underline.color = SK_ColorBLACK;
85 underline.thick = false;
86 underline.background_color = SK_ColorTRANSPARENT;
88 // Use thick underline for the target clause.
89 if (underline.start_offset >= static_cast<uint32>(target_start) &&
90 underline.end_offset <= static_cast<uint32>(target_end)) {
91 underline
344 CompositionUnderline underline; local
[all...]
/external/lldb/examples/python/
H A Dgdbremote.py65 def underline(self, on = True): member in class:TerminalColors
66 '''Enable or disable underline depending on the "on" paramter.'''
/external/chromium_org/ui/views/controls/textfield/
H A Dtextfield_model.cc256 const ui::CompositionUnderline& underline = composition.underlines[i]; local
257 if (underline.thick)
258 return gfx::Range(underline.start_offset, underline.end_offset);
574 // a thick underline. In a composition returned from an IME, the segment
575 // emphasized by a thick underline usually represents the target clause.
/external/chromium_org/win8/metro_driver/ime/
H A Dtext_store.cc802 metro_viewer::UnderlineInfo underline; local
803 underline.start_offset = start_pos;
804 underline.end_offset = start_pos + length;
805 underline.thick = !!display_attribute.fBoldLine;
806 undelines->push_back(underline);
/external/chromium_org/third_party/WebKit/Source/core/rendering/
H A DInlineTextBox.cpp655 // 2. Now paint the foreground, including text and decorations like underline/overline (in quirks mode only).
865 unsigned InlineTextBox::underlinePaintStart(const CompositionUnderline& underline) argument
867 return std::max(static_cast<unsigned>(m_start), underline.startOffset);
870 unsigned InlineTextBox::underlinePaintEnd(const CompositionUnderline& underline) argument
872 unsigned paintEnd = std::min(end() + 1, underline.endOffset); // end() points at the last char, not past it.
921 // Compute the gap between the font and the underline. Use at least one
922 // pixel gap, if underline is thick then use a bigger gap.
925 // Underline position of zero means draw underline on Baseline Position,
927 // Positive underline Position means underline shoul
1080 shouldSetDecorationAntialias(TextDecorationStyle underline, TextDecorationStyle overline, TextDecorationStyle linethrough) argument
1124 RenderObject::AppliedTextDecoration underline, overline, linethrough; local
1385 paintCompositionUnderline(GraphicsContext* ctx, const FloatPoint& boxOrigin, const CompositionUnderline& underline) argument
[all...]

Completed in 688 milliseconds

12