Searched refs:placeholder (Results 1 - 25 of 45) sorted by relevance

12

/external/doclava/res/assets/customizations/
H A Dcustomizations.cs1 <?cs # placeholder for custom clearsilver code. ?
/external/chromium/chrome/browser/resources/options/
H A Dfont_settings.js46 var placeholder = localStrings.getString('fontSettingsPlaceholder');
47 $('standard-font-family').appendChild(new Option(placeholder));
48 $('serif-font-family').appendChild(new Option(placeholder));
49 $('sans-serif-font-family').appendChild(new Option(placeholder));
50 $('fixed-font-family').appendChild(new Option(placeholder));
51 $('font-encoding').appendChild(new Option(placeholder));
H A Dsearch_engine_manager_engine_list.js145 this.nameField_.placeholder =
147 this.keywordField_.placeholder =
149 this.urlField_.placeholder =
/external/markdown/markdown/extensions/
H A Dfenced_code.py96 placeholder = self.markdown.htmlStash.store(code, safe=True)
97 text = '%s\n%s\n%s'% (text[:m.start()], placeholder, text[m.end():])
H A Dcodehilite.py190 placeholder = self.markdown.htmlStash.store(code.hilite(),
197 block.text = placeholder
/external/webkit/Source/WebCore/editing/
H A DInsertTextCommand.cpp123 Position placeholder; local
127 // If the caret is just before a placeholder, downstream will normalize the caret to it.
133 placeholder = downstream;
134 // Don't remove the placeholder yet, otherwise the block we're inserting into would collapse before
135 // we get a chance to insert into it. We check for a placeholder now, though, because doing so requires
158 if (placeholder.isNotNull())
159 removePlaceholderAt(placeholder);
166 if (placeholder.isNotNull())
167 removePlaceholderAt(placeholder);
H A DInsertListCommand.cpp273 // When removing a list, we must always create a placeholder to act as a point of insertion
275 RefPtr<Element> placeholder = createBreakElement(document()); local
276 RefPtr<Element> nodeToInsert = placeholder;
281 appendNode(placeholder, nodeToInsert);
297 // between it and listNode. So, we split up to listNode before inserting the placeholder
305 VisiblePosition insertionPoint = VisiblePosition(positionBeforeNode(placeholder.get()));
338 RefPtr<HTMLElement> placeholder = createBreakElement(document()); local
339 appendNode(placeholder, listItemElement);
357 // a placeholder and then recompute start and end.
358 RefPtr<Node> placeholder local
[all...]
H A DIndentOutdentCommand.cpp177 RefPtr<Node> placeholder = createBreakElement(document()); local
178 insertNodeBefore(placeholder, splitBlockquoteNode);
179 moveParagraph(startOfParagraph(visibleStartOfParagraph), endOfParagraph(visibleEndOfParagraph), positionBeforeNode(placeholder.get()), true);
H A DApplyBlockElementCommand.cpp103 RefPtr<Element> placeholder = createBreakElement(document()); local
104 appendNode(placeholder, blockquote);
105 setEndingSelection(VisibleSelection(positionBeforeNode(placeholder.get()), DOWNSTREAM));
/external/webkit/Source/WebCore/html/
H A DHTMLTextAreaElement.idl33 attribute [Reflect] DOMString placeholder;
H A DHTMLInputElement.idl52 attribute [Reflect] DOMString placeholder;
/external/webkit/Source/WebKit/chromium/src/
H A DWebInputElement.cpp113 WebString WebInputElement::placeholder() const function in class:WebKit::WebInputElement
115 return constUnwrap<HTMLInputElement>()->placeholder();
/external/chromium/chrome/browser/extensions/
H A Dextension_omnibox_api.cc252 size_t placeholder(suggestion->description.find(kPlaceholderText, 0));
253 if (placeholder != string16::npos) {
256 description.replace(placeholder, kPlaceholderText.length(), replacement);
259 if (description_styles[i].offset > placeholder)
/external/markdown/markdown/
H A Dtreeprocessors.py48 """ Generate a placeholder """
62 Returns: placeholder id and string index, after the found placeholder.
73 placeholder, id = self.__makePlaceholder(type)
75 return placeholder
187 else: # wrong placeholder
236 placeholder = self.__stashNode(node, pattern.type())
240 placeholder, match.groups()[-1]), True, 0
H A Dpreprocessors.py55 placeholder string that needs to be inserted into the
63 Returns : a placeholder string
67 placeholder = HTML_PLACEHOLDER % self.html_counter
69 return placeholder
/external/markdown/
H A Dregression-tests.py100 self.placeholder = self.stash.store('foo')
104 self.assertEqual(self.placeholder,
111 placeholder = self.stash.store('bar')
112 self.assertEqual(placeholder,
/external/webkit/Source/WebKit/chromium/public/
H A DWebInputElement.h72 WEBKIT_API WebString placeholder() const;
/external/chromium/chrome/common/extensions/
H A Dextension_message_bundle.cc178 DictionaryValue* placeholder; local
183 &placeholder)) {
184 *error = base::StringPrintf("Invalid placeholder %s for key %s",
190 if (!placeholder->GetString(kContentKey, &content)) {
/external/skia/include/views/
H A DSkOSMenu.h141 SkEventSinkID target, const char placeholder[] = "");
/external/skia/legacy/include/views/
H A DSkOSMenu.h141 SkEventSinkID target, const char placeholder[] = "");
/external/chromium/chrome/browser/resources/
H A Dnetwork_menu.js204 this.ssidEdit.placeholder = localStrings.getString('ssid_prompt');
221 this.passwordEdit.placeholder = localStrings.getString('pass_prompt');
/external/clang/test/CXX/temp/temp.decls/temp.variadic/
H A Dexample-bind.cpp333 template<int N> struct placeholder { }; struct
335 struct is_placeholder<placeholder<N>> {
346 placeholder<1> _1;
/external/skia/legacy/src/views/
H A DSkOSMenu.cpp196 SkEventSinkID target, const char placeholder[]) {
198 evt->setString(slotName, placeholder);
195 appendTextField(const char label[], const char slotName[], SkEventSinkID target, const char placeholder[]) argument
/external/skia/src/views/
H A DSkOSMenu.cpp196 SkEventSinkID target, const char placeholder[]) {
198 evt->setString(slotName, placeholder);
195 appendTextField(const char label[], const char slotName[], SkEventSinkID target, const char placeholder[]) argument
/external/chromium/chrome/browser/resources/options/chromeos/
H A Dinternet_network_element.js284 passInput.placeholder = localStrings.getString('inetPassPrompt');
348 ssidInput.placeholder = localStrings.getString('inetSsidPrompt');
375 passInput.placeholder = localStrings.getString('inetPassPrompt');

Completed in 440 milliseconds

12