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

<<21222324252627282930>>

  /external/elfcopy/
dwarf.c 356 abbrev_attr *attr; local
358 for (attr = abbrev->first_attr; attr;)
360 abbrev_attr *next = attr->next;
362 free (attr);
363 attr = next;
402 abbrev_attr *attr; local
404 attr = malloc (sizeof (*attr));
406 if (attr == NULL
1732 abbrev_attr *attr; local
2299 abbrev_attr *attr; local
    [all...]
  /external/libxml2/
debugXML.c 311 "Attr has no prev and not first of attr list\n");
477 xmlCtxtDumpAttrDecl(xmlDebugCtxtPtr ctxt, xmlAttributePtr attr)
481 if (attr == NULL) {
486 if (attr->type != XML_ATTRIBUTE_DECL) {
491 if (attr->name != NULL) {
493 fprintf(ctxt->output, "ATTRDECL(%s)", (char *) attr->name);
497 if (attr->elem != NULL) {
499 fprintf(ctxt->output, " for %s", (char *) attr->elem);
504 switch (attr->atype)
    [all...]
  /frameworks/base/core/java/android/widget/
TextView.java 129 * @attr ref android.R.styleable#TextView_text
130 * @attr ref android.R.styleable#TextView_bufferType
131 * @attr ref android.R.styleable#TextView_hint
132 * @attr ref android.R.styleable#TextView_textColor
133 * @attr ref android.R.styleable#TextView_textColorHighlight
134 * @attr ref android.R.styleable#TextView_textColorHint
135 * @attr ref android.R.styleable#TextView_textAppearance
136 * @attr ref android.R.styleable#TextView_textColorLink
137 * @attr ref android.R.styleable#TextView_textSize
138 * @attr ref android.R.styleable#TextView_textScale
391 int attr = appearance.getIndex(i); local
451 int attr = a.getIndex(i); local
935 int attr = a.getIndex(i); local
    [all...]
ExpandableListView.java 71 * @attr ref android.R.styleable#ExpandableListView_groupIndicator
72 * @attr ref android.R.styleable#ExpandableListView_indicatorLeft
73 * @attr ref android.R.styleable#ExpandableListView_indicatorRight
74 * @attr ref android.R.styleable#ExpandableListView_childIndicator
75 * @attr ref android.R.styleable#ExpandableListView_childIndicatorLeft
76 * @attr ref android.R.styleable#ExpandableListView_childIndicatorRight
77 * @attr ref android.R.styleable#ExpandableListView_childDivider
164 {R.attr.state_expanded};
168 {R.attr.state_empty};
172 {R.attr.state_expanded, R.attr.state_empty}
    [all...]
  /frameworks/base/core/java/android/inputmethodservice/
KeyboardView.java 56 * @attr ref android.R.styleable#KeyboardView_keyBackground
57 * @attr ref android.R.styleable#KeyboardView_keyPreviewLayout
58 * @attr ref android.R.styleable#KeyboardView_keyPreviewOffset
59 * @attr ref android.R.styleable#KeyboardView_labelTextSize
60 * @attr ref android.R.styleable#KeyboardView_keyTextSize
61 * @attr ref android.R.styleable#KeyboardView_keyTextColor
62 * @attr ref android.R.styleable#KeyboardView_verticalCorrection
63 * @attr ref android.R.styleable#KeyboardView_popupLayout
129 private static final int[] LONG_PRESSABLE_STATE_SET = { R.attr.state_long_pressable };
270 this(context, attrs, com.android.internal.R.attr.keyboardViewStyle)
290 int attr = a.getIndex(i); local
    [all...]
  /frameworks/base/libs/utils/
Threads.cpp 138 pthread_attr_t attr; local
139 pthread_attr_init(&attr);
140 pthread_attr_setdetachstate(&attr, PTHREAD_CREATE_DETACHED);
157 pthread_attr_setstacksize(&attr, threadStackSize);
162 int result = pthread_create(&thread, &attr,
  /cts/tests/tests/view/src/android/view/cts/
WindowTest.java 207 WindowManager.LayoutParams attr = mWindow.getAttributes(); local
208 assertEquals(WindowManager.LayoutParams.MATCH_PARENT, attr.width);
209 assertEquals(WindowManager.LayoutParams.MATCH_PARENT, attr.height);
210 assertEquals(WindowManager.LayoutParams.TYPE_APPLICATION, attr.type);
211 assertEquals(PixelFormat.OPAQUE, attr.format);
223 attr = mWindow.getAttributes();
224 assertEquals(width, attr.width);
225 assertEquals(height, attr.height);
226 assertEquals(WindowManager.LayoutParams.TYPE_BASE_APPLICATION, attr.type);
227 assertEquals(PixelFormat.RGBA_8888, attr.format)
    [all...]
  /external/openssl/crypto/pkcs7/
pk7_doit.c 1209 X509_ATTRIBUTE *attr=NULL; local
1217 if (!(attr=X509_ATTRIBUTE_create(nid,atrtype,value)))
1219 if (!sk_X509_ATTRIBUTE_push(*sk,attr))
1221 X509_ATTRIBUTE_free(attr);
1231 attr=sk_X509_ATTRIBUTE_value(*sk,i);
1232 if (OBJ_obj2nid(attr->object) == nid)
1234 X509_ATTRIBUTE_free(attr);
1235 attr=X509_ATTRIBUTE_create(nid,atrtype,value);
1236 if (attr == NULL)
1238 if (!sk_X509_ATTRIBUTE_set(*sk,i,attr))
    [all...]
  /build/tools/signapk/
SignApk.java 209 Attributes attr = null; local
210 if (input != null) attr = input.getAttributes(name);
211 attr = attr != null ? new Attributes(attr) : new Attributes();
212 attr.putValue("SHA1-Digest", base64.encode(md.digest()));
213 output.getEntries().put(name, attr);
  /external/libpng/contrib/gregbook/
rpng-x.c 439 XSetWindowAttributes attr; local
541 attr.backing_store = Always;
542 attr.event_mask = ExposureMask | KeyPressMask | ButtonPressMask;
545 attr.colormap = colormap;
546 attr.background_pixel = 0;
547 attr.border_pixel = 1;
552 depth, InputOutput, visual, attrmask, &attr);
  /external/webkit/WebKit/qt/Api/
qwebsettings.cpp 752 void QWebSettings::setAttribute(WebAttribute attr, bool on)
754 d->attributes.insert(attr, on);
763 bool QWebSettings::testAttribute(WebAttribute attr) const
768 defaultValue = global->attributes.value(attr);
770 return d->attributes.value(attr, defaultValue);
781 void QWebSettings::resetAttribute(WebAttribute attr)
784 d->attributes.remove(attr);
    [all...]
  /external/wpa_supplicant/
driver_wext.c 692 struct rtattr *attr; local
702 attr = (struct rtattr *) (((char *) ifi) + nlmsg_len);
705 while (RTA_OK(attr, attrlen)) {
706 if (attr->rta_type == IFLA_IFNAME) {
707 if (os_strcmp(((char *) attr) + rta_len, drv->ifname)
713 attr = RTA_NEXT(attr, attrlen);
744 struct rtattr * attr; local
781 attr = (struct rtattr *) (((char *) ifi) + nlmsg_len);
784 while (RTA_OK(attr, attrlen))
805 struct rtattr * attr; local
    [all...]
  /external/wpa_supplicant_6/wpa_supplicant/src/drivers/
driver_nl80211.c 750 struct rtattr *attr; local
760 attr = (struct rtattr *) (((char *) ifi) + _nlmsg_len);
763 while (RTA_OK(attr, attrlen)) {
764 if (attr->rta_type == IFLA_IFNAME) {
765 if (os_strcmp(((char *) attr) + rta_len, drv->ifname)
771 attr = RTA_NEXT(attr, attrlen);
802 struct rtattr * attr; local
839 attr = (struct rtattr *) (((char *) ifi) + _nlmsg_len);
842 while (RTA_OK(attr, attrlen))
864 struct rtattr * attr; local
    [all...]
driver_wext.c 656 struct rtattr *attr; local
666 attr = (struct rtattr *) (((char *) ifi) + nlmsg_len);
669 while (RTA_OK(attr, attrlen)) {
670 if (attr->rta_type == IFLA_IFNAME) {
671 if (os_strcmp(((char *) attr) + rta_len, drv->ifname)
677 attr = RTA_NEXT(attr, attrlen);
708 struct rtattr * attr; local
745 attr = (struct rtattr *) (((char *) ifi) + nlmsg_len);
748 while (RTA_OK(attr, attrlen))
769 struct rtattr * attr; local
    [all...]
  /external/webkit/WebCore/inspector/front-end/
DOMAgent.js 111 var attr = this._attributesMap[name];
112 return attr ? attr.value : undefined;
120 var attr = self._attributesMap[name];
121 if (attr)
122 attr.value = value;
124 attr = self._addAttribute(name, value);
204 var attr = {
209 this._attributesMap[name] = attr;
210 this.attributes.push(attr);
    [all...]
  /external/quake/quake/src/QW/client/
gl_vidlinux_x11.c 652 XSetWindowAttributes attr; local
709 attr.background_pixel=0;
710 attr.border_pixel=0;
711 attr.colormap=XCreateColormap(dpy,root,visinfo->visual,AllocNone);
712 attr.event_mask=KEY_MASK|MOUSE_MASK|VisibilityChangeMask;
717 visinfo->visual,mask,&attr);
gl_vidlinuxglx.c 601 XSetWindowAttributes attr; local
657 attr.background_pixel = 0;
658 attr.border_pixel = 0;
659 attr.colormap = XCreateColormap(dpy, root, visinfo->visual, AllocNone);
660 attr.event_mask = X_MASK;
665 visinfo->visual, mask, &attr);
  /libcore/luni/src/main/java/org/apache/xml/utils/
UnImplNode.java 26 import org.w3c.dom.Attr;
290 public Attr removeAttributeNode(Attr oldAttr) throws DOMException
307 public Attr setAttributeNode(Attr newAttr) throws DOMException
356 public Attr getAttributeNode(String name)
443 public Attr setAttributeNodeNS(Attr newAttr) throws DOMException
459 public Attr getAttributeNodeNS(String namespaceURI, String localName)
913 public Attr createAttribute(String name) throws DOMExceptio
1395 Node attr = map.item(i); local
    [all...]
  /libcore/luni/src/test/java/org/apache/harmony/xml/
XsltXPathConformanceTestSuite.java 24 import org.w3c.dom.Attr;
97 private static final Comparator<Attr> orderByName = new Comparator<Attr>() {
98 public int compare(Attr a, Attr b) {
534 List<Attr> attributes = new ArrayList<Attr>();
536 attributes.add((Attr) map.item(i));
540 for (Attr attr : attributes)
    [all...]
  /cts/tests/tests/view/src/android/view/animation/cts/
RotateAnimationTest.java 93 final AttributeSet attr = Xml.asAttributeSet(parser); local
94 assertNotNull(attr);
96 new RotateAnimation(mActivity, attr);
TranslateAnimationTest.java 95 final AttributeSet attr = Xml.asAttributeSet(parser); local
96 assertNotNull(attr);
98 new TranslateAnimation(mActivity, attr);
  /cts/tests/tests/widget/src/android/widget/cts/
MultiAutoCompleteTextViewTest.java 89 AttributeSet attr = Xml.asAttributeSet(parser); local
92 new MultiAutoCompleteTextView(mActivity, attr);
93 new MultiAutoCompleteTextView(mActivity, attr, 0);
  /external/chromium/third_party/icu/public/i18n/unicode/
ucol.h     [all...]
  /external/chromium/third_party/icu/source/tools/dumpce/
dumpce.cpp 1372 UColAttribute attr = UCOL_FRENCH_COLLATION; local
    [all...]
  /external/icu4c/i18n/unicode/
ucol.h     [all...]

Completed in 769 milliseconds

<<21222324252627282930>>