Home
last modified time | relevance | path

Searched refs:placeholder (Results 1 – 25 of 111) sorted by relevance

12345

/external/chromium/chrome/browser/resources/options/
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));
Dsearch_engine_manager_engine_list.js145 this.nameField_.placeholder =
147 this.keywordField_.placeholder =
149 this.urlField_.placeholder =
/external/webkit/Source/WebCore/editing/
DInsertTextCommand.cpp123 Position placeholder; in input() local
133 placeholder = downstream; in input()
158 if (placeholder.isNotNull()) in input()
159 removePlaceholderAt(placeholder); in input()
166 if (placeholder.isNotNull()) in input()
167 removePlaceholderAt(placeholder); in input()
DInsertListCommand.cpp275 RefPtr<Element> placeholder = createBreakElement(document()); in unlistifyParagraph() local
276 RefPtr<Element> nodeToInsert = placeholder; in unlistifyParagraph()
281 appendNode(placeholder, nodeToInsert); in unlistifyParagraph()
305 VisiblePosition insertionPoint = VisiblePosition(positionBeforeNode(placeholder.get())); in unlistifyParagraph()
338 RefPtr<HTMLElement> placeholder = createBreakElement(document()); in listifyParagraph() local
339 appendNode(placeholder, listItemElement); in listifyParagraph()
358 RefPtr<Node> placeholder = insertBlockPlaceholder(start.deepEquivalent()); in listifyParagraph() local
359 start = positionBeforeNode(placeholder.get()); in listifyParagraph()
385 moveParagraph(start, end, positionBeforeNode(placeholder.get()), true); in listifyParagraph()
DIndentOutdentCommand.cpp177 RefPtr<Node> placeholder = createBreakElement(document()); in outdentParagraph() local
178 insertNodeBefore(placeholder, splitBlockquoteNode); in outdentParagraph()
179 …tOfParagraph), endOfParagraph(visibleEndOfParagraph), positionBeforeNode(placeholder.get()), true); in outdentParagraph()
DApplyBlockElementCommand.cpp103 RefPtr<Element> placeholder = createBreakElement(document()); in formatSelection() local
104 appendNode(placeholder, blockquote); in formatSelection()
105 setEndingSelection(VisibleSelection(positionBeforeNode(placeholder.get()), DOWNSTREAM)); in formatSelection()
/external/clang/test/Analysis/
Didempotent-operations.m40 void pr9116(NSObject *placeholder) {
41 int x = placeholder.media.locked = placeholder ? 1 : 0;
/external/markdown/markdown/extensions/
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():])
Dcodehilite.py190 placeholder = self.markdown.htmlStash.store(code.hilite(),
197 block.text = placeholder
/external/markdown/
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/chromium/chrome/browser/extensions/
Dextension_omnibox_api.cc252 size_t placeholder(suggestion->description.find(kPlaceholderText, 0)); in ApplyDefaultSuggestionForExtensionKeyword() local
253 if (placeholder != string16::npos) { in ApplyDefaultSuggestionForExtensionKeyword()
256 description.replace(placeholder, kPlaceholderText.length(), replacement); in ApplyDefaultSuggestionForExtensionKeyword()
259 if (description_styles[i].offset > placeholder) in ApplyDefaultSuggestionForExtensionKeyword()
/external/markdown/markdown/
Dtreeprocessors.py73 placeholder, id = self.__makePlaceholder(type)
75 return placeholder
236 placeholder = self.__stashNode(node, pattern.type())
240 placeholder, match.groups()[-1]), True, 0
Dpreprocessors.py67 placeholder = HTML_PLACEHOLDER % self.html_counter
69 return placeholder
/external/clang/include/clang/AST/
DBuiltinTypes.def27 // PLACEHOLDER_TYPE(Id, SingletonId) - A placeholder type. Placeholder
177 // The type of an unresolved overload set. A placeholder type.
188 // Overload should be the first placeholder type, or else change
193 // A placeholder type. Expressions with this type have one of the
201 // VS.NET's __property declarations. A placeholder type. The
217 // __builtin_any_type. A placeholder type. Useful for clients
/external/webkit/Source/WebKit/chromium/src/
DWebInputElement.cpp113 WebString WebInputElement::placeholder() const in placeholder() function in WebKit::WebInputElement
115 return constUnwrap<HTMLInputElement>()->placeholder(); in placeholder()
/external/clang/test/Driver/Inputs/hexagon_tree/gnu/bin/
Dhexagon-gcc1 # placeholder for testing purposes
Dhexagon-as1 # placeholder for testing purposes
Dhexagon-ld1 # placeholder for testing purposes
/external/clang/test/Driver/Inputs/hexagon_tree/qc/bin/
Dplaceholder1 // placeholder for testing purposes
/external/clang/test/Driver/Inputs/hexagon_tree/gnu/hexagon/include/c++/4.4.0/
Dios1 // placeholder for testing purposes
/external/doclava/res/assets/customizations/
Dcustomizations.cs1 <?cs # placeholder for custom clearsilver code. ?>
/external/llvm/lib/Target/AArch64/
DREADME.txt2 officially supported target. Currently a placeholder.
/external/chromium/chrome/common/extensions/
Dextension_message_bundle.cc178 DictionaryValue* placeholder; in GetPlaceholders() local
183 &placeholder)) { in GetPlaceholders()
190 if (!placeholder->GetString(kContentKey, &content)) { in GetPlaceholders()
/external/clang/test/CXX/temp/temp.decls/temp.variadic/
Dexample-bind.cpp333 template<int N> struct placeholder { }; struct
335 struct is_placeholder<placeholder<N>> {
346 placeholder<1> _1;
/external/chromium/chrome/browser/resources/
Dnetwork_menu.js204 this.ssidEdit.placeholder = localStrings.getString('ssid_prompt');
221 this.passwordEdit.placeholder = localStrings.getString('pass_prompt');

12345