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

<<21222324252627282930>>

  /packages/inputmethods/LatinIME/java/src/com/android/inputmethod/keyboard/
Key.java 641 final OptionalAttributes attrs = mOptionalAttributes; local
642 return (attrs != null) ? attrs.mOutputText : null;
646 final OptionalAttributes attrs = mOptionalAttributes; local
647 return (attrs != null) ? attrs.mAltCode : CODE_UNSPECIFIED;
651 final OptionalAttributes attrs = mOptionalAttributes; local
652 final int disabledIconId = (attrs != null) ? attrs.mDisabledIconId : ICON_UNDEFINED;
662 final OptionalAttributes attrs = mOptionalAttributes local
669 final OptionalAttributes attrs = mOptionalAttributes; local
674 final OptionalAttributes attrs = mOptionalAttributes; local
    [all...]
  /tools/motodev/src/plugins/videos/libs/gdata/java/lib/
gdata-client-1.0.jar 
  /external/antlr/antlr-3.4/tool/src/main/java/org/antlr/tool/
AttributeScope.java 122 List<String> attrs = new ArrayList<String>(); local
123 CodeGenerator.getListOfArgumentsFromAction(definitions,0,-1,separator,attrs);
124 for (String a : attrs) {
  /external/kernel-headers/original/linux/nfsd/
xdr.h 20 struct iattr attrs; member in struct:nfsd_sattrargs
49 struct iattr attrs; member in struct:nfsd_createargs
79 struct iattr attrs; member in struct:nfsd_symlinkargs
  /external/libxslt/libxslt/
attributes.c 1046 xsltAttrElemPtr attrs; local
1100 attrs =
1102 if ((attrs != NULL) && (attrs->attr != NULL))
1103 xslHandleDebugger(attrs->attr->parent, node, NULL,
1111 attrs =
1113 while (attrs != NULL) {
1114 if (attrs->attr != NULL) {
1115 xsltAttributeInternal(ctxt, node, attrs->attr,
1116 attrs->attr->psvi, 1)
    [all...]
  /external/webkit/Source/WebKit/win/
DefaultPolicyDelegate.cpp 162 WIN32_FILE_ATTRIBUTE_DATA attrs; local
163 if (GetFileAttributesEx(url, GetFileExInfoStandard, &attrs))
164 isDirectory = !!(attrs.dwFileAttributes & FILE_ATTRIBUTE_DIRECTORY);
  /frameworks/base/core/java/android/view/animation/
TranslateAnimation.java 51 * @param attrs Attribute set from which to read values
53 public TranslateAnimation(Context context, AttributeSet attrs) {
54 super(context, attrs);
56 TypedArray a = context.obtainStyledAttributes(attrs,
  /frameworks/base/core/java/android/widget/
AdapterViewFlipper.java 61 public AdapterViewFlipper(Context context, AttributeSet attrs) {
62 super(context, attrs);
64 TypedArray a = context.obtainStyledAttributes(attrs,
ViewFlipper.java 59 public ViewFlipper(Context context, AttributeSet attrs) {
60 super(context, attrs);
62 TypedArray a = context.obtainStyledAttributes(attrs,
  /frameworks/opt/mailcommon/java/com/android/mailcommon/
MultiAdapterSpinner.java 50 * "MultiAdapterSpinner" name as a "reference" format (see Gmail's attrs.xml file for an
97 public MultiAdapterSpinner(Context context, AttributeSet attrs) {
98 super(context, attrs);
101 mPopup = new ListPopupWindow(context, attrs);
  /packages/apps/Calculator/src/com/android/calculator2/
CalculatorDisplay.java 53 public CalculatorDisplay(Context context, AttributeSet attrs) {
54 super(context, attrs);
55 mMaxDigits = attrs.getAttributeIntValue(null, ATTR_MAX_DIGITS, DEFAULT_MAX_DIGITS);
  /packages/apps/Camera/src/com/android/camera/
ListPreference.java 43 public ListPreference(Context context, AttributeSet attrs) {
44 super(context, attrs);
47 attrs, R.styleable.ListPreference, 0, 0);
  /packages/apps/Gallery/src/com/android/camera/
EvenlySpacedLayout.java 37 public EvenlySpacedLayout(Context context, AttributeSet attrs) {
38 super(context, attrs);
40 attrs, R.styleable.EvenlySpacedLayout, 0, 0);
  /packages/apps/LegacyCamera/src/com/android/camera/
ListPreference.java 43 public ListPreference(Context context, AttributeSet attrs) {
44 super(context, attrs);
47 attrs, R.styleable.ListPreference, 0, 0);
  /packages/apps/Settings/src/com/android/settings/deviceinfo/
PercentageBarChart.java 59 public PercentageBarChart(Context context, AttributeSet attrs) {
60 super(context, attrs);
62 TypedArray a = context.obtainStyledAttributes(attrs, R.styleable.PercentageBarChart);
  /sdk/common/src/com/android/utils/
XmlUtils.java 106 NamedNodeMap attrs = node.getAttributes(); local
107 for (int n = attrs.getLength() - 1; n >= 0; --n) {
108 Node attr = attrs.item(n);
  /external/chromium/chrome/browser/renderer_host/
gtk_im_context_wrapper.cc 518 PangoAttrList* attrs,
529 ui::ExtractCompositionTextFromGtkPreedit(text, attrs, cursor_position,
614 PangoAttrList* attrs = NULL; local
616 gtk_im_context_get_preedit_string(context, &text, &attrs, &cursor_position);
617 self->HandlePreeditChanged(text, attrs, cursor_position);
619 pango_attr_list_unref(attrs);
  /external/iproute2/genl/
ctrl.c 79 struct rtattr *attrs; local
99 attrs = (struct rtattr *) ((char *) ghdr + GENL_HDRLEN);
100 parse_rtattr(tb, CTRL_ATTR_MAX, attrs, len);
186 struct rtattr *attrs; local
212 attrs = (struct rtattr *) ((char *) ghdr + GENL_HDRLEN);
213 parse_rtattr(tb, CTRL_ATTR_MAX, attrs, len);
  /frameworks/base/graphics/java/android/graphics/drawable/
ShapeDrawable.java 294 AttributeSet attrs) {
297 TypedArray a = r.obtainAttributes(attrs,
316 public void inflate(Resources r, XmlPullParser parser, AttributeSet attrs)
318 super.inflate(r, parser, attrs);
320 TypedArray a = r.obtainAttributes(attrs, com.android.internal.R.styleable.ShapeDrawable);
346 if (!inflateTag(name, r, parser, attrs)) {
  /cts/tests/tests/graphics/src/android/graphics/drawable/cts/
ColorDrawableTest.java 113 final AttributeSet attrs = Xml.asAttributeSet(parser); local
114 colorDrawable.inflate(mContext.getResources(), parser, attrs); local
  /cts/tests/tests/view/src/android/view/animation/cts/
AccelerateDecelerateInterpolatorTest.java 58 AttributeSet attrs = Xml.asAttributeSet(parser); local
59 new AccelerateDecelerateInterpolator(mActivity, attrs);
  /cts/tests/tests/widget/src/android/widget/cts/
DigitalClockTest.java 135 public MockDigitalClock(Context context, AttributeSet attrs) {
136 super(context, attrs);
ViewSwitcherTest.java 52 AttributeSet attrs = Xml.asAttributeSet(parser); local
53 new ViewSwitcher(getContext(), attrs); local
  /development/samples/ApiDemos/src/com/example/android/apis/preference/
MyPreference.java 38 public MyPreference(Context context, AttributeSet attrs) {
39 super(context, attrs);
  /development/samples/HoneycombGallery/src/com/example/android/hcgallery/
FitCenterFrameLayout.java 32 public FitCenterFrameLayout(Context context, AttributeSet attrs) {
33 super(context, attrs);

Completed in 1258 milliseconds

<<21222324252627282930>>