/external/chromium_org/chrome/browser/resources/print_preview/previewarea/ |
margin_control.html | 3 <input class="margin-control-textbox" type="text">
|
margin_control.css | 53 #preview-area .margin-control-textbox { 68 #preview-area .margin-control-textbox.invalid { 72 #preview-area .margin-control-top .margin-control-textbox { 77 #preview-area .margin-control-right .margin-control-textbox { 82 #preview-area .margin-control-bottom .margin-control-textbox { 87 #preview-area .margin-control-left .margin-control-textbox {
|
margin_control.js | 12 * textbox will be placed. 20 * Determines where the margin textbox will be placed. 69 * Processing timeout for the textbox. 76 * Value of the textbox when the timeout was started. 83 * Textbox used to display and receive the value of the margin. 97 * Whether this margin control's textbox has keyboard focus. 119 // Dispatched when the text in the margin control's textbox changes. 133 TEXTBOX: 'margin-control-textbox', 171 * Timeout after a text change after which the text in the textbox is saved t [all...] |
/external/chromium_org/chrome/common/extensions/docs/examples/extensions/buildbot/ |
options.js | 21 var textbox = document.getElementById('try-job-username'); 23 textbox.value = tryJobUsername; 24 textbox.addEventListener( 26 function() {prefs.setTryJobUsername(textbox.value);});
|
/external/jmonkeyengine/engine/src/core/com/jme3/font/ |
StringBlock.java | 48 private Rectangle textBox;
63 * @param textBox the rectangle that constrains the text
69 StringBlock(String text, Rectangle textBox, BitmapFont.Align alignment, float size, ColorRGBA color,
72 this.textBox = textBox;
81 this.textBox = null;
93 if (textBox != null)
94 clone.textBox = textBox.clone();
110 return textBox;
[all...] |
BitmapText.java | 172 Rectangle textBox = block.getTextBox();
173 if (textBox != null) {
174 return Math.max(height, textBox.height);
186 Rectangle textBox = block.getTextBox();
187 if (textBox != null) {
188 return Math.max(letters.getTotalWidth(), textBox.width);
|
/external/chromium_org/third_party/WebKit/Source/core/rendering/svg/ |
SVGTextLayoutEngine.cpp | 114 void SVGTextLayoutEngine::recordTextFragment(SVGInlineTextBox* textBox, Vector<SVGTextMetrics>& textMetricsValues) 141 textBox->textFragments().append(m_currentTextFragment); 233 void SVGTextLayoutEngine::layoutInlineTextBox(SVGInlineTextBox* textBox) 235 ASSERT(textBox); 237 RenderSVGInlineText* text = toRenderSVGInlineText(textBox->textRenderer()); 246 textBox->clearTextFragments(); 248 layoutTextOnLineOrPath(textBox, text, style); 251 m_pathLayoutBoxes.append(textBox); 255 m_lineLayoutBoxes.append(textBox); 265 SVGInlineTextBox* textBox = boxes.at(boxPosition) [all...] |
SVGTextChunkBuilder.cpp | 34 void SVGTextChunkBuilder::transformationForTextBox(SVGInlineTextBox* textBox, AffineTransform& transform) const 37 if (!m_textBoxTransformations.contains(textBox)) { 42 transform = m_textBoxTransformations.get(textBox); 55 SVGInlineTextBox* textBox = lineLayoutBoxes[boxPosition]; 56 if (!textBox->startsNewTextChunk()) 91 SVGInlineTextBox* textBox = lineLayoutBoxes[boxStart]; 92 ASSERT(textBox); 94 RenderSVGInlineText* textRenderer = toRenderSVGInlineText(textBox->textRenderer()); 188 SVGInlineTextBox* textBox = boxes[boxPosition]; 189 Vector<SVGTextFragment>& fragments = textBox->textFragments() [all...] |
SVGInlineFlowBox.cpp | 108 SVGInlineTextBox* textBox = toSVGInlineTextBox(box); 110 int markerStartPosition = max<int>(marker->startOffset() - textBox->start(), 0); 111 int markerEndPosition = min<int>(marker->endOffset() - textBox->start(), textBox->len()); 119 const Vector<SVGTextFragment>& fragments = textBox->textFragments(); 126 if (!textBox->mapStartEndPositionsIntoFragmentCoordinates(fragment, fragmentStartPosition, fragmentEndPosition)) 129 FloatRect fragmentRect = textBox->selectionRectForTextFragment(fragment, fragmentStartPosition, fragmentEndPosition, style);
|
RenderSVGInlineText.cpp | 112 InlineTextBox* textBox = toInlineTextBox(box); 113 if (static_cast<unsigned>(caretOffset) < textBox->start() || static_cast<unsigned>(caretOffset) > textBox->start() + textBox->len()) 117 if (static_cast<unsigned>(caretOffset) < textBox->start() + textBox->len()) { 118 LayoutRect rect = textBox->localSelectionRect(caretOffset, caretOffset + 1); 123 LayoutRect rect = textBox->localSelectionRect(caretOffset - 1, caretOffset); 181 SVGInlineTextBox* textBox = toSVGInlineTextBox(box); 182 Vector<SVGTextFragment>& fragments = textBox->textFragments() [all...] |
SVGTextChunk.cpp | 41 SVGInlineTextBox* textBox = m_boxes.at(boxPosition); 42 Vector<SVGTextFragment>& fragments = textBox->textFragments();
|
SVGRootInlineBox.cpp | 142 SVGInlineTextBox* textBox = toSVGInlineTextBox(child); 143 boxRect = textBox->calculateBoundaries(); 144 textBox->setX(boxRect.x()); 145 textBox->setY(boxRect.y()); 146 textBox->setLogicalWidth(boxRect.width()); 147 textBox->setLogicalHeight(boxRect.height());
|
SVGTextQuery.cpp | 40 , textBox(0) 47 const SVGInlineTextBox* textBox; 114 queryData->textBox = m_textBoxes.at(textBoxPosition); 115 queryData->textRenderer = toRenderSVGInlineText(queryData->textBox->textRenderer()); 121 const Vector<SVGTextFragment>& fragments = queryData->textBox->textFragments(); 149 if (!queryData->textBox->mapStartEndPositionsIntoFragmentCoordinates(fragment, startPosition, endPosition)) 160 unsigned boxStart = queryData->textBox->start(); 161 unsigned boxLength = queryData->textBox->len();
|
SVGRenderTreeAsText.cpp | 377 static inline void writeSVGInlineTextBox(TextStream& ts, SVGInlineTextBox* textBox, int indent) 379 Vector<SVGTextFragment>& fragments = textBox->textFragments(); 383 RenderSVGInlineText* textRenderer = toRenderSVGInlineText(textBox->textRenderer()); 387 String text = textBox->textRenderer()->text(); 413 startOffset -= textBox->start(); 414 endOffset -= textBox->start(); 424 if (!textBox->isLeftToRightDirection() || textBox->dirOverride()) { 425 ts << (textBox->isLeftToRightDirection() ? " LTR" : " RTL"); 426 if (textBox->dirOverride() [all...] |
/external/chromium_org/third_party/skia/src/animator/ |
SkDrawTextBox.h | 17 DECLARE_DRAW_MEMBER_INFO(TextBox);
|
/external/skia/src/animator/ |
SkDrawTextBox.h | 17 DECLARE_DRAW_MEMBER_INFO(TextBox);
|
/external/chromium/chrome/browser/extensions/ |
extension_accessibility_api_constants.cc | 41 const char kTypeTextBox[] = "textbox";
|
/external/chromium_org/chrome/browser/accessibility/ |
accessibility_extension_api_constants.cc | 40 const char kTypeTextBox[] = "textbox";
|
/external/chromium_org/native_client_sdk/src/examples/demo/pi_generator/ |
index.html | 25 π/4. The textbox under the square shows the current estimate of π.
|
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/ |
curses_tests.py | 27 box = textpad.Textbox(win, insert_mode)
|
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/ |
curses_tests.py | 27 box = textpad.Textbox(win, insert_mode)
|
/external/chromium_org/third_party/WebKit/Source/core/editing/ |
VisibleUnits.cpp | 205 static const InlineTextBox* logicallyPreviousBox(const VisiblePosition& visiblePosition, const InlineTextBox* textBox, 208 const InlineBox* startBox = textBox; 210 const InlineTextBox* previousBox = leafBoxes.previousTextBox(startBox->root(), textBox); 246 static const InlineTextBox* logicallyNextBox(const VisiblePosition& visiblePosition, const InlineTextBox* textBox, 249 const InlineBox* startBox = textBox; 251 const InlineTextBox* nextBox = leafBoxes.nextTextBox(startBox->root(), textBox); 286 static TextBreakIterator* wordBreakIteratorForMinOffsetBoundary(const VisiblePosition& visiblePosition, const InlineTextBox* textBox, 292 const InlineTextBox* previousBox = logicallyPreviousBox(visiblePosition, textBox, previousBoxInDifferentBlock, leafBoxes); 301 textBox->textRenderer()->text().appendTo(string, textBox->start(), textBox->len()) [all...] |
/external/chromium_org/tools/stats_viewer/ |
OpenDialog.Designer.cs | 35 this.name_box_ = new System.Windows.Forms.TextBox();
84 private System.Windows.Forms.TextBox name_box_;
|
/external/chromium_org/third_party/skia/include/views/ |
SkTextBox.h | 18 within a rectangle. The textbox is positioned and clipped by its Frame.
|
/external/skia/include/views/ |
SkTextBox.h | 18 within a rectangle. The textbox is positioned and clipped by its Frame.
|