/prebuilt/sdk/6/ |
android.jar | |
/cts/tests/tests/content/src/android/content/res/cts/ |
TypedArrayTest.java | 67 final int[] attrs = R.styleable.style1; local 68 mTypedArray = getContext().getTheme().obtainStyledAttributes(R.style.Whatever, attrs); 78 * Test all get attrs methods, all test value are in styles.xml and attrs.xml.
|
/cts/tests/tests/graphics/src/android/graphics/drawable/cts/ |
LayerDrawableTest.java | 97 AttributeSet attrs = DrawableTestUtils.getAttributeSet(parser, "layer-list_full"); local 99 layerDrawable.inflate(mContext.getResources(), parser, attrs); local 114 attrs = DrawableTestUtils.getAttributeSet(parser, "layer-list_empty"); 115 layerDrawable.inflate(mContext.getResources(), parser, attrs); local 119 attrs = DrawableTestUtils.getAttributeSet(parser, "layer-list_exception"); 121 layerDrawable.inflate(mContext.getResources(), parser, attrs); local 128 layerDrawable.inflate(null, parser, attrs); 134 layerDrawable.inflate(mContext.getResources(), null, attrs); local [all...] |
ScaleDrawableTest.java | 516 AttributeSet attrs = DrawableTestUtils.getAttributeSet(parser, "scale_allattrs"); local 517 scaleDrawable.inflate(res, parser, attrs); 523 attrs = DrawableTestUtils.getAttributeSet(parser, "scale_nodrawable"); 525 scaleDrawable.inflate(res, parser, attrs); 531 scaleDrawable.inflate(null, parser, attrs); 537 scaleDrawable.inflate(res, null, attrs);
|
/cts/tests/tests/view/src/android/view/animation/cts/ |
CycleInterpolatorTest.java | 78 AttributeSet attrs = Xml.asAttributeSet(parser); local 79 new CycleInterpolator(mActivity, attrs);
|
/cts/tests/tests/widget/src/android/widget/cts/ |
MediaControllerTest.java | 98 final AttributeSet attrs = Xml.asAttributeSet(parser); local 99 new MediaController(mActivity, attrs);
|
/development/samples/NotePad/src/com/example/android/notepad/ |
NoteEditor.java | 83 public LinedEditText(Context context, AttributeSet attrs) { 84 super(context, attrs);
|
/external/webkit/WebCore/html/ |
HTMLTokenizer.h | 74 attrs = 0; 86 RefPtr<NamedMappedAttrMap> attrs; member in struct:WebCore::Token
|
/frameworks/base/core/java/android/app/ |
NativeActivity.java | 117 public NativeContentView(Context context, AttributeSet attrs) { 118 super(context, attrs);
|
/frameworks/base/core/java/android/app/admin/ |
DeviceAdminInfo.java | 188 AttributeSet attrs = Xml.asAttributeSet(parser); local 201 TypedArray sa = res.obtainAttributes(attrs,
|
/frameworks/base/core/java/android/appwidget/ |
AppWidgetHostView.java | 140 public LayoutParams generateLayoutParams(AttributeSet attrs) { 145 return new FrameLayout.LayoutParams(context, attrs);
|
/frameworks/base/core/java/android/widget/ |
DialerFilter.java | 44 public DialerFilter(Context context, AttributeSet attrs) { 45 super(context, attrs);
|
LinearLayout.java | 119 public LinearLayout(Context context, AttributeSet attrs) { 120 super(context, attrs); 123 context.obtainStyledAttributes(attrs, com.android.internal.R.styleable.LinearLayout); [all...] |
NumberPicker.java | 134 * @param attrs a collection of attributes 136 public NumberPicker(Context context, AttributeSet attrs) { 137 super(context, attrs);
|
AutoCompleteTextView.java | 154 public AutoCompleteTextView(Context context, AttributeSet attrs) { 155 this(context, attrs, com.android.internal.R.attr.autoCompleteTextViewStyle); 158 public AutoCompleteTextView(Context context, AttributeSet attrs, int defStyle) { 159 super(context, attrs, defStyle); 161 mPopup = new PopupWindow(context, attrs, 167 attrs, com.android.internal.R.styleable.AutoCompleteTextView, defStyle, 0); [all...] |
/frameworks/base/services/surfaceflinger/ |
TextureManager.cpp | 150 const EGLint attrs[] = { local 156 (EGLClientBuffer)clientBuf, attrs);
|
/packages/apps/Contacts/src/com/android/contacts/ui/widget/ |
ContactEditorView.java | 89 public ContactEditorView(Context context, AttributeSet attrs) { 90 super(context, attrs);
|
/packages/apps/Gallery/src/com/android/camera/ |
ImageViewTouchBase.java | 235 public ImageViewTouchBase(Context context, AttributeSet attrs) { 236 super(context, attrs);
|
/packages/apps/Gallery3D/src/com/cooliris/media/ |
ImageViewTouchBase.java | 220 public ImageViewTouchBase(Context context, AttributeSet attrs) { 221 super(context, attrs);
|
/packages/apps/Mms/src/com/android/mms/ui/ |
NumberPicker.java | 138 * @param attrs a collection of attributes 140 public NumberPicker(Context context, AttributeSet attrs) { 141 super(context, attrs);
|
RecipientsEditor.java | 53 public RecipientsEditor(Context context, AttributeSet attrs) { 54 super(context, attrs, android.R.attr.autoCompleteTextViewStyle);
|
/packages/inputmethods/PinyinIME/src/com/android/inputmethod/pinyin/ |
CandidatesContainer.java | 167 public CandidatesContainer(Context context, AttributeSet attrs) { 168 super(context, attrs);
|
/prebuilt/sdk/4/ |
android.jar | |
/external/webkit/WebCore/plugins/win/ |
PluginViewWin.cpp | 845 WIN32_FILE_ATTRIBUTE_DATA attrs; local 846 if (GetFileAttributesExW(filename.charactersWithNullTermination(), GetFileExInfoStandard, &attrs) == 0) 849 if (attrs.dwFileAttributes & FILE_ATTRIBUTE_DIRECTORY) 857 buffer.resize(attrs.nFileSizeLow); 860 int retval = ReadFile(fileHandle, buffer.data(), attrs.nFileSizeLow, &bytesRead, 0); 864 if (retval == 0 || bytesRead != attrs.nFileSizeLow) [all...] |
/frameworks/base/core/java/android/view/ |
ViewGroup.java | 285 public ViewGroup(Context context, AttributeSet attrs) { 286 super(context, attrs); 288 initFromAttributes(context, attrs); 291 public ViewGroup(Context context, AttributeSet attrs, int defStyle) { 292 super(context, attrs, defStyle); 294 initFromAttributes(context, attrs); 316 private void initFromAttributes(Context context, AttributeSet attrs) { 317 TypedArray a = context.obtainStyledAttributes(attrs, [all...] |