HomeSort by relevance Sort by last modified time
    Searched refs:attrs (Results 501 - 525 of 1321) sorted by null

<<21222324252627282930>>

  /packages/apps/QuickSearchBox/src/com/android/quicksearchbox/ui/
WebSearchSuggestionView.java 38 public WebSearchSuggestionView(Context context, AttributeSet attrs) {
39 super(context, attrs);
  /packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/
InputView.java 36 public InputView(Context context, AttributeSet attrs) {
37 super(context, attrs, 0);
  /frameworks/base/tests/TileBenchmark/src/com/test/tilebenchmark/
ProfiledWebView.java 53 public ProfiledWebView(Context context, AttributeSet attrs) {
54 super(context, attrs);
57 public ProfiledWebView(Context context, AttributeSet attrs, int defStyle) {
58 super(context, attrs, defStyle);
61 public ProfiledWebView(Context context, AttributeSet attrs, int defStyle,
63 super(context, attrs, defStyle, privateBrowsing);
  /cts/tests/tests/view/src/android/view/cts/
WindowTest.java 96 final WindowManager.LayoutParams attrs = mWindow.getAttributes(); local
97 assertEquals(0, attrs.flags);
100 assertEquals(WindowManager.LayoutParams.FLAG_FULLSCREEN, attrs.flags);
104 | WindowManager.LayoutParams.FLAG_DITHER, attrs.flags);
107 assertEquals(WindowManager.LayoutParams.FLAG_DITHER, attrs.flags);
109 assertEquals(0, attrs.flags);
117 assertEquals(WindowManager.LayoutParams.FLAG_FULLSCREEN, attrs.flags);
540 WindowManager.LayoutParams attrs = mWindow.getAttributes(); local
541 assertEquals(0, attrs.gravity);
547 attrs = mWindow.getAttributes()
559 WindowManager.LayoutParams attrs = mWindow.getAttributes(); local
579 WindowManager.LayoutParams attrs = mWindow.getAttributes(); local
623 WindowManager.LayoutParams attrs = mWindow.getAttributes(); local
    [all...]
  /frameworks/base/core/java/android/view/
MenuInflater.java 108 AttributeSet attrs = Xml.asAttributeSet(parser); local
110 parseMenu(parser, attrs, menu);
124 private void parseMenu(XmlPullParser parser, AttributeSet attrs, Menu menu)
158 menuState.readGroup(attrs);
160 menuState.readItem(attrs);
166 parseMenu(parser, attrs, subMenu);
268 * Sync to attrs.xml enum:
279 * Sync to attrs.xml enum, values in MenuItem:
322 public void readGroup(AttributeSet attrs) {
323 TypedArray a = mContext.obtainStyledAttributes(attrs,
    [all...]
  /frameworks/base/core/java/android/widget/
FrameLayout.java 96 public FrameLayout(Context context, AttributeSet attrs) {
97 this(context, attrs, 0);
100 public FrameLayout(Context context, AttributeSet attrs, int defStyle) {
101 super(context, attrs, defStyle);
103 TypedArray a = context.obtainStyledAttributes(attrs, com.android.internal.R.styleable.FrameLayout,
553 public LayoutParams generateLayoutParams(AttributeSet attrs) {
554 return new FrameLayout.LayoutParams(getContext(), attrs);
609 public LayoutParams(Context c, AttributeSet attrs) {
610 super(c, attrs);
612 TypedArray a = c.obtainStyledAttributes(attrs, com.android.internal.R.styleable.FrameLayout_Layout)
    [all...]
TableRow.java 70 * @param attrs a collection of attributes
72 public TableRow(Context context, AttributeSet attrs) {
73 super(context, attrs);
352 public LayoutParams generateLayoutParams(AttributeSet attrs) {
353 return new TableRow.LayoutParams(getContext(), attrs);
423 public LayoutParams(Context c, AttributeSet attrs) {
424 super(c, attrs);
427 c.obtainStyledAttributes(attrs,
AnalogClock.java 66 public AnalogClock(Context context, AttributeSet attrs) {
67 this(context, attrs, 0);
70 public AnalogClock(Context context, AttributeSet attrs,
72 super(context, attrs, defStyle);
76 attrs, com.android.internal.R.styleable.AnalogClock, defStyle, 0);
CheckedTextView.java 57 public CheckedTextView(Context context, AttributeSet attrs) {
58 this(context, attrs, R.attr.checkedTextViewStyle);
61 public CheckedTextView(Context context, AttributeSet attrs, int defStyle) {
62 super(context, attrs, defStyle);
64 TypedArray a = context.obtainStyledAttributes(attrs,
CompoundButton.java 63 public CompoundButton(Context context, AttributeSet attrs) {
64 this(context, attrs, 0);
67 public CompoundButton(Context context, AttributeSet attrs, int defStyle) {
68 super(context, attrs, defStyle);
72 attrs, com.android.internal.R.styleable.CompoundButton, defStyle, 0);
TextClock.java 180 * @param attrs The attributes of the XML tag that is inflating the view
183 public TextClock(Context context, AttributeSet attrs) {
184 this(context, attrs, 0);
193 * @param attrs The attributes of the XML tag that is inflating the view
199 public TextClock(Context context, AttributeSet attrs, int defStyle) {
200 super(context, attrs, defStyle);
202 TypedArray a = context.obtainStyledAttributes(attrs, R.styleable.TextClock, defStyle, 0);
  /frameworks/base/tools/layoutlib/bridge/src/com/android/layoutlib/bridge/android/
BridgeContext.java 453 public final TypedArray obtainStyledAttributes(int[] attrs) {
454 return createStyleBasedTypedArray(mRenderResources.getCurrentTheme(), attrs);
458 public final TypedArray obtainStyledAttributes(int resid, int[] attrs)
471 mTypedArrayCache.put(attrs, map);
473 BridgeTypedArray ta = createStyleBasedTypedArray(style, attrs);
480 Map<Integer, TypedArray> map = mTypedArrayCache.get(attrs);
483 mTypedArrayCache.put(attrs, map);
490 ta = createStyleBasedTypedArray(style, attrs);
498 public final TypedArray obtainStyledAttributes(AttributeSet set, int[] attrs) {
499 return obtainStyledAttributes(set, attrs, 0, 0)
    [all...]
  /external/clang/include/clang/Parse/
Parser.h     [all...]
  /development/apps/Development/src/com/android/development/
EnterURL.java 49 public UrlEditText(Context context, AttributeSet attrs)
51 super(context, attrs);
72 public DisplayEditText(Context context, AttributeSet attrs)
74 super(context, attrs);
89 public View onCreateView(String name, Context context, AttributeSet attrs)
92 return new UrlEditText(this, attrs);
95 return new DisplayEditText(this, attrs);
  /external/openssl/crypto/store/
store.h 390 int STORE_ATTR_INFO_free(STORE_ATTR_INFO *attrs);
393 char *STORE_ATTR_INFO_get0_cstr(STORE_ATTR_INFO *attrs, STORE_ATTR_TYPES code);
394 unsigned char *STORE_ATTR_INFO_get0_sha1str(STORE_ATTR_INFO *attrs,
396 X509_NAME *STORE_ATTR_INFO_get0_dn(STORE_ATTR_INFO *attrs, STORE_ATTR_TYPES code);
397 BIGNUM *STORE_ATTR_INFO_get0_number(STORE_ATTR_INFO *attrs, STORE_ATTR_TYPES code);
398 int STORE_ATTR_INFO_set_cstr(STORE_ATTR_INFO *attrs, STORE_ATTR_TYPES code,
400 int STORE_ATTR_INFO_set_sha1str(STORE_ATTR_INFO *attrs, STORE_ATTR_TYPES code,
402 int STORE_ATTR_INFO_set_dn(STORE_ATTR_INFO *attrs, STORE_ATTR_TYPES code,
404 int STORE_ATTR_INFO_set_number(STORE_ATTR_INFO *attrs, STORE_ATTR_TYPES code,
406 int STORE_ATTR_INFO_modify_cstr(STORE_ATTR_INFO *attrs, STORE_ATTR_TYPES code
    [all...]
  /external/chromium/build/util/
lastchange.py 44 attrs = {}
50 attrs[key] = val
53 url = attrs['URL']
54 root = attrs['Repository Root']
55 revision = attrs['Revision']
  /external/replicaisland/src/com/replica/replicaisland/
KeyboardConfigDialogPreference.java 69 public KeyboardConfigDialogPreference(Context context, AttributeSet attrs) {
70 this(context, attrs, android.R.attr.dialogPreferenceStyle);
73 public KeyboardConfigDialogPreference(Context context, AttributeSet attrs,
75 super(context, attrs, defStyle);
77 TypedArray a = context.obtainStyledAttributes(attrs,
  /frameworks/base/core/java/android/preference/
DialogPreference.java 68 public DialogPreference(Context context, AttributeSet attrs, int defStyle) {
69 super(context, attrs, defStyle);
71 TypedArray a = context.obtainStyledAttributes(attrs,
89 public DialogPreference(Context context, AttributeSet attrs) {
90 this(context, attrs, com.android.internal.R.attr.dialogPreferenceStyle);
SeekBarPreference.java 40 Context context, AttributeSet attrs, int defStyle) {
41 super(context, attrs, defStyle);
42 TypedArray a = context.obtainStyledAttributes(attrs,
49 public SeekBarPreference(Context context, AttributeSet attrs) {
50 this(context, attrs, 0);
  /frameworks/base/core/java/com/android/internal/view/menu/
ActionMenuItemView.java 59 public ActionMenuItemView(Context context, AttributeSet attrs) {
60 this(context, attrs, 0);
63 public ActionMenuItemView(Context context, AttributeSet attrs, int defStyle) {
64 super(context, attrs, defStyle);
68 TypedArray a = context.obtainStyledAttributes(attrs,
IconMenuItemView.java 60 public IconMenuItemView(Context context, AttributeSet attrs, int defStyle) {
61 super(context, attrs);
74 attrs, com.android.internal.R.styleable.MenuView, defStyle, 0);
85 public IconMenuItemView(Context context, AttributeSet attrs) {
86 this(context, attrs, 0);
ListMenuItemView.java 57 public ListMenuItemView(Context context, AttributeSet attrs, int defStyle) {
58 super(context, attrs);
62 attrs, com.android.internal.R.styleable.MenuView, defStyle, 0);
74 public ListMenuItemView(Context context, AttributeSet attrs) {
75 this(context, attrs, 0);
  /frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/policy/
KeyButtonView.java 76 public KeyButtonView(Context context, AttributeSet attrs) {
77 this(context, attrs, 0);
80 public KeyButtonView(Context context, AttributeSet attrs, int defStyle) {
81 super(context, attrs);
83 TypedArray a = context.obtainStyledAttributes(attrs, R.styleable.KeyButtonView,
  /packages/apps/Settings/src/com/android/settings/widget/
ChartView.java 56 public ChartView(Context context, AttributeSet attrs) {
57 this(context, attrs, 0);
60 public ChartView(Context context, AttributeSet attrs, int defStyle) {
61 super(context, attrs, defStyle);
64 attrs, R.styleable.ChartView, defStyle, 0);
  /frameworks/base/core/java/android/content/pm/
PackageParser.java 741 final AttributeSet attrs = parser; local
745 packageLite = parsePackageLite(res, parser, attrs, flags, errors);
788 AttributeSet attrs, int flags, String[] outError)
807 String pkgName = attrs.getAttributeValue(null, "package");
907 AttributeSet attrs = parser; local
    [all...]

Completed in 1854 milliseconds

<<21222324252627282930>>