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

1 2

  /libcore/luni/src/main/java/libcore/io/
OsConstants.java 38 public static final int AF_INET = placeholder();
39 public static final int AF_INET6 = placeholder();
40 public static final int AF_UNIX = placeholder();
41 public static final int AF_UNSPEC = placeholder();
42 public static final int AI_ADDRCONFIG = placeholder();
43 public static final int AI_ALL = placeholder();
44 public static final int AI_CANONNAME = placeholder();
45 public static final int AI_NUMERICHOST = placeholder();
46 public static final int AI_NUMERICSERV = placeholder();
47 public static final int AI_PASSIVE = placeholder();
719 private static int placeholder() { return 0; } method in class:OsConstants
    [all...]
  /packages/apps/Browser/src/com/android/browser/
PageDialogsHandler.java 344 final LinearLayout placeholder = local
345 (LinearLayout)certificateView.findViewById(com.android.internal.R.id.placeholder);
352 LinearLayout table = (LinearLayout)factory.inflate(R.layout.ssl_success, placeholder);
358 addError(factory, placeholder, R.string.ssl_untrusted);
361 addError(factory, placeholder, R.string.ssl_mismatch);
364 addError(factory, placeholder, R.string.ssl_expired);
367 addError(factory, placeholder, R.string.ssl_not_yet_valid);
370 addError(factory, placeholder, R.string.ssl_date_invalid);
373 addError(factory, placeholder, R.string.ssl_invalid);
380 if (placeholder.getChildCount() == 0)
    [all...]
  /external/markdown/markdown/extensions/
fenced_code.py 96 placeholder = self.markdown.htmlStash.store(code, safe=True)
97 text = '%s\n%s\n%s'% (text[:m.start()], placeholder, text[m.end():])
codehilite.py 190 placeholder = self.markdown.htmlStash.store(code.hilite(),
197 block.text = placeholder
  /external/webkit/Source/WebCore/editing/
InsertTextCommand.cpp 123 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);
InsertListCommand.cpp 273 // 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 = insertBlockPlaceholder(start.deepEquivalent()) local
    [all...]
IndentOutdentCommand.cpp 177 RefPtr<Node> placeholder = createBreakElement(document()); local
178 insertNodeBefore(placeholder, splitBlockquoteNode);
179 moveParagraph(startOfParagraph(visibleStartOfParagraph), endOfParagraph(visibleEndOfParagraph), positionBeforeNode(placeholder.get()), true);
ApplyBlockElementCommand.cpp 103 RefPtr<Element> placeholder = createBreakElement(document()); local
104 appendNode(placeholder, blockquote);
105 setEndingSelection(VisibleSelection(positionBeforeNode(placeholder.get()), DOWNSTREAM));
CompositeEditCommand.cpp 635 RefPtr<Node> placeholder = createBlockPlaceholderElement(document()); local
636 appendNode(placeholder, container);
637 return placeholder.release();
648 RefPtr<Node> placeholder = createBlockPlaceholderElement(document()); local
649 insertNodeAt(placeholder, pos);
650 return placeholder.release();
664 // append the placeholder to make sure it follows
673 // Assumes that the position is at a placeholder and does the removal without much checking.
830 // Deleting a paragraph will leave a placeholder. Remove it (and prune
840 // Normally deletion will leave a br as a placeholder
    [all...]
  /external/webkit/Source/WebCore/html/
HTMLTextAreaElement.idl 33 attribute [Reflect] DOMString placeholder;
HTMLInputElement.idl 52 attribute [Reflect] DOMString placeholder;
HTMLInputElement.h 137 virtual String placeholder() const;
  /external/webkit/Source/WebKit/chromium/src/
WebInputElement.cpp 113 WebString WebInputElement::placeholder() const function in class:WebKit::WebInputElement
115 return constUnwrap<HTMLInputElement>()->placeholder();
  /external/chromium/chrome/browser/extensions/
extension_omnibox_api.cc 252 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/
treeprocessors.py 48 """ 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
preprocessors.py 55 placeholder string that needs to be inserted into the
63 Returns : a placeholder string
67 placeholder = HTML_PLACEHOLDER % self.html_counter
69 return placeholder
inlinepatterns.py 34 replace all inline HTML strings with a placeholder and add
215 """ Store raw inline html and return a placeholder. """
  /external/markdown/
regression-tests.py 100 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/
WebInputElement.h 72 WEBKIT_API WebString placeholder() const;
  /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/clang/test/CXX/temp/temp.decls/temp.variadic/
example-bind.cpp 332 template<int N> struct placeholder { }; struct
334 struct is_placeholder<placeholder<N>> {
345 placeholder<1> _1;
  /bionic/libc/netbsd/isc/
eventlib_p.h 180 struct { const void *placeholder; } null; member in struct:evEvent_p::__anon554::__anon561
  /external/chromium/chrome/browser/resources/net_internals/
testview.js 71 // placeholder '?') once the test has completed. For now we just
  /external/webkit/Source/WebCore/css/
wml.css 139 input::-webkit-input-placeholder {
  /external/chromium/chrome/browser/resources/
network_menu.js 204 this.ssidEdit.placeholder = localStrings.getString('ssid_prompt');
221 this.passwordEdit.placeholder = localStrings.getString('pass_prompt');

Completed in 1069 milliseconds

1 2