HomeSort by relevance Sort by last modified time
    Searched refs:attrs (Results 2176 - 2200 of 4096) sorted by null

<<81828384858687888990>>

  /external/testng/src/main/java/org/testng/reporters/
XMLReporter.java 107 Properties attrs = new Properties(); local
108 attrs.setProperty(XMLReporterConfig.ATTR_URL, relativePath);
109 xmlBuffer.addEmptyElement(XMLReporterConfig.TAG_SUITE, attrs);
  /frameworks/base/core/java/android/app/
ActionBar.java     [all...]
  /frameworks/base/media/java/android/media/
ClosedCaptionRenderer.java 142 public ClosedCaptionWidget(Context context, AttributeSet attrs) {
143 this(context, attrs, 0);
146 public ClosedCaptionWidget(Context context, AttributeSet attrs, int defStyle) {
147 this(context, attrs, defStyle, 0);
150 public ClosedCaptionWidget(Context context, AttributeSet attrs, int defStyleAttr,
152 super(context, attrs, defStyleAttr, defStyleRes);
    [all...]
  /frameworks/base/packages/SystemUI/src/com/android/keyguard/
CarrierText.java 87 public CarrierText(Context context, AttributeSet attrs) {
88 super(context, attrs);
93 attrs, R.styleable.CarrierText, 0, 0);
  /frameworks/support/v17/leanback/api21/android/support/v17/leanback/transition/
FadeAndShortSlide.java 162 public FadeAndShortSlide(Context context, AttributeSet attrs) {
163 super(context, attrs);
164 TypedArray a = context.obtainStyledAttributes(attrs, R.styleable.lbSlide);
  /frameworks/support/v7/appcompat/src/android/support/v7/app/
ActionBar.java     [all...]
  /frameworks/support/v7/appcompat/src/android/support/v7/widget/
ActionBarContainer.java 57 public ActionBarContainer(Context context, AttributeSet attrs) {
58 super(context, attrs);
66 TypedArray a = context.obtainStyledAttributes(attrs,
  /libcore/ojluni/src/main/java/sun/nio/fs/
LinuxWatchService.java 256 UnixFileAttributes attrs = null; local
258 attrs = UnixFileAttributes.get(dir, true);
262 if (!attrs.isDirectory()) {
  /packages/apps/Dialer/java/com/android/dialer/calllogutils/
CallTypeIconsView.java 58 public CallTypeIconsView(Context context, AttributeSet attrs) {
59 super(context, attrs);
61 context.getTheme().obtainStyledAttributes(attrs, R.styleable.CallTypeIconsView, 0, 0);
  /packages/apps/Gallery2/src/com/android/gallery3d/filtershow/state/
StatePanelTrack.java 76 public StatePanelTrack(Context context, AttributeSet attrs) {
77 super(context, attrs);
78 TypedArray a = getContext().obtainStyledAttributes(attrs, R.styleable.StatePanelTrack);
  /packages/apps/Messaging/src/com/android/messaging/ui/
AudioAttachmentView.java 89 public AudioAttachmentView(final Context context, final AttributeSet attrs) {
90 super(context, attrs);
92 context.obtainStyledAttributes(attrs, R.styleable.AudioAttachmentView);
VideoThumbnailView.java 71 public VideoThumbnailView(final Context context, final AttributeSet attrs) {
72 super(context, attrs);
74 context.obtainStyledAttributes(attrs, R.styleable.VideoThumbnailView);
  /packages/apps/Settings/src/com/android/settings/widget/
MatchParentShrinkingLinearLayout.java 175 public MatchParentShrinkingLinearLayout(Context context, @Nullable AttributeSet attrs) {
176 this(context, attrs, 0);
179 public MatchParentShrinkingLinearLayout(Context context, @Nullable AttributeSet attrs,
181 this(context, attrs, defStyleAttr, 0);
184 public MatchParentShrinkingLinearLayout(Context context, AttributeSet attrs, int defStyleAttr,
186 super(context, attrs, defStyleAttr, defStyleRes);
189 attrs, com.android.internal.R.styleable.LinearLayout, defStyleAttr, defStyleRes);
    [all...]
  /packages/services/Car/car-support-lib/src/android/support/car/app/
CarProxyActivity.java 218 public View onCreateView(View parent, String name, Context context, AttributeSet attrs) {
219 final View view = mCarActivity.onCreateView(parent, name, context, attrs);
223 return super.onCreateView(parent, name, context, attrs);
  /packages/services/Telephony/src/com/android/phone/
CallForwardEditPreference.java 48 public CallForwardEditPreference(Context context, AttributeSet attrs) {
49 super(context, attrs);
53 TypedArray a = context.obtainStyledAttributes(attrs,
  /prebuilts/sdk/current/support/v7/gridlayout/libs/
android-support-v7-gridlayout.jar 
  /prebuilts/sdk/26/
android.jar 
  /cts/tests/tests/graphics/src/android/graphics/drawable/cts/
ShapeDrawableTest.java 262 AttributeSet attrs = Xml.asAttributeSet(parser); local
264 shapeDrawable.inflate(res, parser, attrs);
297 AttributeSet attrs) {
303 return super.inflateTag(name, r, parser, attrs);
  /cts/tests/tests/widget/src/android/widget/cts/
CheckedTextViewTest.java 369 public MockCheckedTextView(Context context, AttributeSet attrs) {
370 super(context, attrs, 0);
373 public MockCheckedTextView(Context context, AttributeSet attrs, int defStyle) {
374 super(context, attrs, defStyle);
CompoundButtonTest.java 387 public MockCompoundButton(Context context, AttributeSet attrs) {
388 super(context, attrs, 0);
391 public MockCompoundButton(Context context, AttributeSet attrs, int defStyle) {
392 super(context, attrs, defStyle);
  /development/samples/devbytes/animation/ListViewCellInsertion/src/com/example/android/insertingcells/
InsertionListView.java 76 public InsertionListView(Context context, AttributeSet attrs) {
77 super(context, attrs);
81 public InsertionListView(Context context, AttributeSet attrs, int defStyle) {
82 super(context, attrs, defStyle);
  /development/samples/devbytes/animation/ListViewDraggingAnimation/src/com/example/android/listviewdragginganimation/
DynamicListView.java 103 public DynamicListView(Context context, AttributeSet attrs, int defStyle) {
104 super(context, attrs, defStyle);
108 public DynamicListView(Context context, AttributeSet attrs) {
109 super(context, attrs);
  /development/samples/devbytes/animation/ListViewExpandingCells/src/com/example/android/expandingcells/
ExpandingListView.java 54 public ExpandingListView(Context context, AttributeSet attrs) {
55 super(context, attrs);
59 public ExpandingListView(Context context, AttributeSet attrs, int defStyle) {
60 super(context, attrs, defStyle);
  /development/samples/devbytes/graphics/FoldingLayout/src/com/example/android/foldinglayout/
FoldingLayout.java 111 public FoldingLayout(Context context, AttributeSet attrs) {
112 super(context, attrs);
115 public FoldingLayout(Context context, AttributeSet attrs, int defStyle) {
116 super(context, attrs, defStyle);
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/xml/sax/
expatreader.py 300 def start_element(self, name, attrs):
301 self._cont_handler.startElement(name, AttributesImpl(attrs))
306 def start_element_ns(self, name, attrs):
319 for (aname, value) in attrs.items():

Completed in 2435 milliseconds

<<81828384858687888990>>