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

1 2 3 4 5 6 7 8

  /libcore/luni/src/main/java/android/system/
OsConstants.java 96 public static final int AF_INET = placeholder();
97 public static final int AF_INET6 = placeholder();
98 public static final int AF_UNIX = placeholder();
99 public static final int AF_UNSPEC = placeholder();
100 public static final int AI_ADDRCONFIG = placeholder();
101 public static final int AI_ALL = placeholder();
102 public static final int AI_CANONNAME = placeholder();
103 public static final int AI_NUMERICHOST = placeholder();
104 public static final int AI_NUMERICSERV = placeholder();
105 public static final int AI_PASSIVE = placeholder();
845 private static int placeholder() { return 0; } method in class:OsConstants
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/html/shadow/
ShadowElementNames.h 48 const AtomicString& placeholder();
  /external/chromium_org/third_party/WebKit/Source/devtools/front_end/toolbox/
ToolboxDelegate.js 13 * @param {!WebInspector.InspectedPagePlaceholder} placeholder
15 toolboxLoaded: function(responsiveDesignView, placeholder) {}
  /external/glide/library/src/main/java/com/bumptech/glide/request/target/
BitmapImageViewTarget.java 27 public void setPlaceholder(Drawable placeholder) {
28 view.setImageDrawable(placeholder);
DrawableImageViewTarget.java 37 public void setPlaceholder(Drawable placeholder) {
38 view.setImageDrawable(placeholder);
BaseTarget.java 36 public void setPlaceholder(Drawable placeholder) { }
Target.java 29 * A method that can optionally be implemented to set any placeholder that might have been passed to Glide to
32 * @param placeholder The drawable to display
34 public void setPlaceholder(Drawable placeholder);
  /external/chromium_org/third_party/WebKit/Source/core/rendering/
RenderFullScreen.h 42 RenderBlock* placeholder() { return m_placeholder; } function in class:blink::FINAL
RenderFullScreen.cpp 175 if (placeholder())
176 placeholder()->remove();
181 void RenderFullScreen::setPlaceholder(RenderBlock* placeholder)
183 m_placeholder = placeholder;
  /frameworks/opt/bitmap/src/com/android/bitmap/drawable/
ExtendedBitmapDrawable.java 68 private Placeholder mPlaceholder;
92 // Placeholder and progress.
97 // Placeholder is not optional because backgroundColor is part of it.
98 Drawable placeholder = null; local
101 if (mOpts.placeholder != null) {
102 ConstantState constantState = mOpts.placeholder.getConstantState();
104 placeholder = constantState.newDrawable(mResources);
106 Rect bounds = mOpts.placeholder.getBounds();
109 } else if (placeholder.getIntrinsicWidth() != -1) {
110 placeholderWidth = placeholder.getIntrinsicWidth()
723 public Drawable placeholder; field in class:ExtendedBitmapDrawable.ExtendedOptions
    [all...]
  /external/chromium_org/tools/grit/grit/gather/
policy_json.py 28 def _ParsePlaceholder(self, placeholder, msg):
29 '''Extracts a placeholder from a DOM node and adds it to a tclib Message.
32 placeholder: A DOM node of the form:
33 <ph name="PLACEHOLDER_NAME">Placeholder text<ex>Example value</ex></ph>
34 msg: The placeholder is added to this message.
38 for node1 in placeholder.childNodes:
46 raise Exception('Unexpected element inside a placeholder: ' +
51 msg.AppendPlaceholder(tclib.Placeholder(
52 placeholder.attributes['name'].value,
  /external/chromium_org/tools/grit/grit/
tclib.py 45 for placeholder in placeholders:
46 tag_map[placeholder.GetPresentation()] = [placeholder, 0]
61 tag_map[chunk][1] += 1 # increase placeholder use count
84 if isinstance(part, Placeholder):
90 def AppendPlaceholder(self, placeholder):
91 assert isinstance(placeholder, Placeholder)
94 if other.presentation == placeholder.presentation:
95 assert other.original == placeholder.origina
    [all...]
  /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/chrome/browser/ui/views/autofill/
expanding_textfield.h 30 const base::string16& placeholder,
57 void SetPlaceholderText(const base::string16& placeholder);
expanding_textfield.cc 28 const base::string16& placeholder,
33 new DecoratedTextfield(base::string16(), placeholder, this));
36 new DecoratedTextfield(base::string16(), placeholder, this));
90 void ExpandingTextfield::SetPlaceholderText(const base::string16& placeholder) {
92 &DecoratedTextfield::set_placeholder_text, placeholder);
decorated_textfield.h 29 const base::string16& placeholder,
80 // pieces of the textfield disappear (border, background, icon, placeholder
  /external/chromium_org/chrome/common/extensions/docs/examples/api/infobars/sandwichbar/
infobar.js 8 // Replace the placeholder text with the actual count.
  /external/chromium_org/third_party/polymer/components/core-field/
core-field.css 35 polyfill-next-selector { content: ':host input::placeholder'; }
36 ::content input::placeholder {
  /external/chromium_org/third_party/polymer/components-chromium/core-field/
core-field.css 35 polyfill-next-selector { content: ':host input::placeholder'; }
36 ::content input::placeholder {
  /external/chromium_org/tools/gyp/test/assembly/src/
override_asm.asm 5 ; This is a placeholder. It should not be referenced if overrides work
  /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():])
  /packages/apps/Camera2/src/com/android/camera/session/
PlaceholderManager.java 57 public Session insertPlaceholder(String title, byte[] placeholder, long timestamp) {
58 if (title == null || placeholder == null) {
65 BitmapFactory.decodeByteArray(placeholder, 0, placeholder.length, options);
74 Storage.addPlaceholder(placeholder, width, height);
82 * Converts an existing item into a placeholder for re-processing.
93 * This converts the placeholder in to a real media item
115 * This changes the temporary placeholder jpeg without writing it to the media store
118 * @param jpeg the new placeholder bytes
  /external/chromium_org/chrome/common/extensions/docs/examples/api/fontSettings/css/
chrome_shared.css 93 /* WebKit does not honor alignment for text specified via placeholder attribute.
97 html[dir='rtl'] input.weakrtl::-webkit-input-placeholder,
98 html[dir='rtl'] .weakrtl input::-webkit-input-placeholder {
  /external/chromium_org/chrome/third_party/chromevox/chromevox/background/
chrome_shared2.css 95 /* WebKit does not honor alignment for text specified via placeholder attribute.
99 html[dir='rtl'] input.weakrtl::-webkit-input-placeholder,
100 html[dir='rtl'] .weakrtl input::-webkit-input-placeholder {
  /external/chromium_org/ui/webui/resources/css/
chrome_shared.css 103 /* WebKit does not honor alignment for text specified via placeholder attribute.
107 html[dir='rtl'] input.weakrtl::-webkit-input-placeholder,
108 html[dir='rtl'] .weakrtl input::-webkit-input-placeholder {

Completed in 1363 milliseconds

1 2 3 4 5 6 7 8