HomeSort by relevance Sort by last modified time
    Searched defs:placeholder (Results 1 - 25 of 43) sorted by null

1 2

  /external/chromium_org/third_party/WebKit/Source/core/rendering/
RenderFullScreen.h 41 RenderBlock* placeholder() { return m_placeholder; } function in class:WebCore::FINAL
RenderTextControl.cpp 57 // FIXME: This is a terrible hack to get the caret over the placeholder text since it'll
58 // make us paint the placeholder first. (See https://trac.webkit.org/changeset/118733)
60 if (node && node->isElementNode() && toElement(node)->pseudo() == "-webkit-input-placeholder")
289 HTMLElement* placeholder = toHTMLTextFormControlElement(node())->placeholderElement(); local
290 RenderObject* placeholderRenderer = placeholder ? placeholder->renderer() : 0;
  /external/chromium_org/third_party/WebKit/Source/core/html/shadow/
DateTimeFieldElements.h 54 static PassRefPtr<DateTimeDayFieldElement> create(Document&, FieldOwner&, const String& placeholder, const Range&);
57 DateTimeDayFieldElement(Document&, FieldOwner&, const String& placeholder, const Range&);
168 static PassRefPtr<DateTimeMonthFieldElement> create(Document&, FieldOwner&, const String& placeholder, const Range&);
171 DateTimeMonthFieldElement(Document&, FieldOwner&, const String& placeholder, const Range&);
233 String placeholder; member in struct:WebCore::FINAL::Parameters
ShadowElementNames.cpp 80 const AtomicString& placeholder() function in namespace:WebCore::ShadowElementNames
82 DEFINE_STATIC_LOCAL(AtomicString, name, ("placeholder", AtomicString::ConstructFromLiteral));
  /external/chromium_org/third_party/WebKit/Source/core/editing/
InsertTextCommand.cpp 155 Position placeholder; local
159 // If the caret is just before a placeholder, downstream will normalize the caret to it.
165 placeholder = downstream;
166 // Don't remove the placeholder yet, otherwise the block we're inserting into would collapse before
167 // we get a chance to insert into it. We check for a placeholder now, though, because doing so requires
190 if (placeholder.isNotNull())
191 removePlaceholderAt(placeholder);
198 if (placeholder.isNotNull())
199 removePlaceholderAt(placeholder);
IndentOutdentCommand.cpp 188 RefPtr<Node> placeholder = createBreakElement(document()); local
189 insertNodeBefore(placeholder, splitBlockquoteNode);
190 moveParagraph(startOfParagraph(visibleStartOfParagraph), endOfParagraph(visibleEndOfParagraph), positionBeforeNode(placeholder.get()), true);
ApplyBlockElementCommand.cpp 112 RefPtr<Element> placeholder = createBreakElement(document()); local
113 appendNode(placeholder, blockquote);
114 setEndingSelection(VisibleSelection(positionBeforeNode(placeholder.get()), DOWNSTREAM, endingSelection().isDirectional()));
InsertListCommand.cpp 277 // When removing a list, we must always create a placeholder to act as a point of insertion
279 RefPtr<Element> placeholder = createBreakElement(document()); local
280 RefPtr<Element> nodeToInsert = placeholder;
285 appendNode(placeholder, nodeToInsert);
301 // between it and listNode. So, we split up to listNode before inserting the placeholder
309 VisiblePosition insertionPoint = VisiblePosition(positionBeforeNode(placeholder.get()));
342 RefPtr<HTMLElement> placeholder = createBreakElement(document()); local
343 appendNode(placeholder, listItemElement);
361 // a placeholder and then recompute start and end.
362 RefPtr<Node> placeholder = insertBlockPlaceholder(start.deepEquivalent()) local
    [all...]
DeleteSelectionCommand.cpp 203 // and receive the placeholder after deletion.
381 // Make sure empty cell has some height, if a placeholder can be inserted.
596 // a placeholder, but not in this case.
661 // removals that it does cause the insertion of *another* placeholder.
832 RefPtr<Node> placeholder = m_needPlaceholder ? createBreakElement(document()).get() : 0; local
    [all...]
ReplaceSelectionCommand.cpp 112 // If we're already on a break, it's probably a placeholder and we shouldn't change our position.
823 RefPtr<Node> placeholder = createBreakElement(document()); local
    [all...]
  /external/chromium_org/components/autofill/content/renderer/
form_cache.cc 290 std::string placeholder = form.fields[i].overall_type; local
298 if (!element->hasAttribute("placeholder"))
299 element->setAttribute("placeholder", WebString(UTF8ToUTF16(placeholder)));
  /external/chromium/chrome/common/extensions/
extension_message_bundle.cc 178 DictionaryValue* placeholder; local
183 &placeholder)) {
184 *error = base::StringPrintf("Invalid placeholder %s for key %s",
190 if (!placeholder->GetString(kContentKey, &content)) {
  /external/chromium_org/chrome/common/extensions/
message_bundle.cc 178 const base::DictionaryValue* placeholder; local
182 if (!it.value().GetAsDictionary(&placeholder)) {
183 *error = base::StringPrintf("Invalid placeholder %s for key %s",
189 if (!placeholder->GetString(kContentKey, &content)) {
  /external/chromium_org/third_party/WebKit/Source/core/dom/
FullscreenElementStack.cpp 370 // Create a placeholder block for a the full-screen element, to keep the page from reflowing
372 // a box will have a frameRect. The placeholder will be created in setFullScreenRenderer()
447 } else if (renderer && m_fullScreenRenderer && m_fullScreenRenderer->placeholder()) {
448 RenderBlock* placeholder = m_fullScreenRenderer->placeholder(); local
449 renderer->createPlaceholder(RenderStyle::clone(placeholder->style()), placeholder->frameRect());
  /external/chromium_org/ui/base/l10n/
l10n_util.cc 693 // $9 is the highest allowed placeholder.
697 std::string placeholder = local
699 size_t pos = utf8_string.find(placeholder.c_str());
702 " Didn't find a " << placeholder << " placeholder in " <<
706 " Unexpectedly found a " << placeholder << " placeholder in " <<
  /external/clang/test/CXX/temp/temp.decls/temp.variadic/
example-bind.cpp 333 template<int N> struct placeholder { }; struct
335 struct is_placeholder<placeholder<N>> {
346 placeholder<1> _1;
  /packages/apps/Browser/src/com/android/browser/
PageDialogsHandler.java 345 final LinearLayout placeholder = local
346 (LinearLayout)certificateView.findViewById(com.android.internal.R.id.placeholder);
353 LinearLayout table = (LinearLayout)factory.inflate(R.layout.ssl_success, placeholder);
359 addError(factory, placeholder, R.string.ssl_untrusted);
362 addError(factory, placeholder, R.string.ssl_mismatch);
365 addError(factory, placeholder, R.string.ssl_expired);
368 addError(factory, placeholder, R.string.ssl_not_yet_valid);
371 addError(factory, placeholder, R.string.ssl_date_invalid);
374 addError(factory, placeholder, R.string.ssl_invalid);
381 if (placeholder.getChildCount() == 0)
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/html/
HTMLTextAreaElement.cpp 513 HTMLElement* placeholder = placeholderElement(); local
516 if (placeholder)
517 userAgentShadowRoot()->removeChild(placeholder);
520 if (!placeholder) {
522 placeholder = newElement.get();
523 placeholder->setPseudo(AtomicString("-webkit-input-placeholder", AtomicString::ConstructFromLiteral));
524 placeholder->setAttribute(idAttr, ShadowElementNames::placeholder());
525 userAgentShadowRoot()->insertBefore(placeholder, innerTextElement()->nextSibling())
    [all...]
HTMLTextFormControlElement.cpp 150 return toHTMLElement(userAgentShadowRoot()->getElementById(ShadowElementNames::placeholder()));
159 HTMLElement* placeholder = placeholderElement(); local
160 if (!placeholder)
162 placeholder->setInlineStyleProperty(CSSPropertyVisibility, placeholderShouldBeVisible() ? CSSValueVisible : CSSValueHidden);
  /art/compiler/dex/portable/
mir_to_gbc.cc 63 // Replace the placeholder value with the real definition
65 ::llvm::Value* placeholder = GetLLVMValue(s_reg); local
66 if (placeholder == NULL) {
68 LOG(WARNING) << "Null placeholder";
71 placeholder->replaceAllUsesWith(val);
72 val->takeName(placeholder);
74 ::llvm::Instruction* inst = ::llvm::dyn_cast< ::llvm::Instruction>(placeholder);
    [all...]
  /bionic/libc/upstream-netbsd/libc/isc/
eventlib_p.h 177 struct { const void *placeholder; } null; member in struct:evEvent_p::__anon729::__anon736
  /external/chromium_org/chrome/renderer/
chrome_content_renderer_client.cc 461 ChromePluginPlaceholder* placeholder = local
463 return placeholder->plugin();
497 ChromePluginPlaceholder* placeholder = NULL; local
519 placeholder = ChromePluginPlaceholder::CreateMissingPlugin(
633 placeholder = ChromePluginPlaceholder::CreateBlockedPlugin(
655 placeholder = ChromePluginPlaceholder::CreateBlockedPlugin(
664 placeholder->set_blocked_for_prerendering(true);
665 placeholder->set_allow_loading(true);
674 placeholder = ChromePluginPlaceholder::CreateBlockedPlugin(
690 placeholder = ChromePluginPlaceholder::CreateBlockedPlugin
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/accessibility/
AXNodeObject.cpp 1066 String placeholder = placeholderValue(); local
1067 if (!placeholder.isEmpty())
1068 textOrder.append(AccessibilityText(placeholder, PlaceholderText));
    [all...]
AXObject.cpp 381 const AtomicString& placeholder = getAttribute(placeholderAttr); local
382 if (!placeholder.isEmpty())
383 return placeholder;
  /external/chromium_org/ui/native_theme/
native_theme_win.cc 619 // To work-around this, mark all pixels with a placeholder value, to detect
622 const SkColor placeholder = SkColorSetARGB(1, 0, 0, 0); local
623 offscreen_canvas.clear(placeholder);
655 const SkPMColor placeholder_value = SkPreMultiplyColor(placeholder);
    [all...]

Completed in 598 milliseconds

1 2