HomeSort by relevance Sort by last modified time
    Searched refs:attr (Results 376 - 400 of 1290) sorted by null

<<11121314151617181920>>

  /external/webkit/Source/WebCore/wml/
WMLGoElement.cpp 71 void WMLGoElement::parseMappedAttribute(Attribute* attr)
73 if (attr->name() == HTMLNames::methodAttr)
74 m_formAttributes.parseMethodType(attr->value());
75 else if (attr->name() == HTMLNames::enctypeAttr)
76 m_formAttributes.parseEncodingType(parseValueSubstitutingVariableReferences(attr->value()));
77 else if (attr->name() == HTMLNames::accept_charsetAttr)
78 m_formAttributes.setAcceptCharset(parseValueForbiddingVariableReferences(attr->value()));
80 WMLTaskElement::parseMappedAttribute(attr);
  /libcore/luni/src/test/java/libcore/java/text/
OldNumberFormatFieldTest.java 76 protected MyNumberFormat(String attr) {
77 super(attr);
  /prebuilt/linux-x86/toolchain/i686-linux-glibc2.7-4.4.3/sysroot/usr/include/linux/netfilter/
nfnetlink_compat.h 32 #define NFA_TYPE(attr) ((attr)->nfa_type & 0x7fff)
  /system/core/libnl_2/
Android.mk 6 attr.c \
  /external/webkit/LayoutTests/dom/xhtml/level3/core/
elementsetidattribute08.js 94 var attr;
113 attr = attributesMap.getNamedItem("class");
114 id = attr.isId;
119 attr = attributesMap.getNamedItem("class");
120 id = attr.isId;
125 attr = attributesMap.getNamedItem("class");
126 id = attr.isId;
elementsetidattributenode07.js 94 var attr;
110 attr = attributesMap.getNamedItem("class");
111 acronymElem1.setIdAttributeNode(attr,true);
112 id = attr.isId;
117 attr = attributesMap.getNamedItem("class");
118 acronymElem2.setIdAttributeNode(attr,true);
119 id = attr.isId;
elementsetidattributenode08.js 99 var attr;
115 attr = attributesMap.getNamedItem("title");
116 acronymElem.setIdAttributeNode(attr,true);
117 id = attr.isId;
122 attr = attributesMap.getNamedItem("xmlns:dmstc");
123 pElem.setIdAttributeNode(attr,true);
124 id = attr.isId;
nodecomparedocumentposition38.js 92 var attr;
103 attr = elem.getAttributeNode("class");
104 txt = attr.firstChild;
106 attrPosition = attr.compareDocumentPosition(txt);
108 attrChildPosition = txt.compareDocumentPosition(attr);
  /external/apache-harmony/prefs/src/test/java/org/apache/harmony/prefs/tests/java/util/prefs/
MockAbstractPreferences.java 38 Properties attr = new Properties(); field in class:MockAbstractPreferences
144 return result == returnNull ? null : attr.getProperty(key);
150 Set<Object> keys = attr.keySet();
165 attr.put(name, value);
191 attr.remove(key);
  /external/quake/quake/src/WinQuake/
quake-rogue.spec.sh 96 %attr(644,root,root) $3/rogue/pak0.pak
97 %attr(644,root,root) $3/rogue/docs/manual.doc
98 %attr(644,root,root) $3/rogue/docs/manual.htm
99 %attr(644,root,root) $3/rogue/docs/manual.txt
100 %attr(644,root,root) $3/rogue/docs/readme.doc
101 %attr(644,root,root) $3/rogue/docs/readme.htm
102 %attr(644,root,root) $3/rogue/docs/readme.txt
103 %attr(644,root,root) $3/rogue/docs/ctf.doc
104 %attr(644,root,root) $3/rogue/docs/ctf.htm
105 %attr(644,root,root) $3/rogue/docs/ctf.tx
    [all...]
  /external/skia/src/ports/
SkXMLParser_expat.cpp 46 static void XMLCALL start_proc(void *data, const char *el, const char **attr)
57 while (*attr)
59 const char* attr0 = attr[0];
60 const char* attr1 = attr[1];
73 attr += 2;
  /external/webkit/Source/WebCore/dom/
Attr.cpp 24 #include "Attr.h"
37 inline Attr::Attr(Element* element, Document* document, PassRefPtr<Attribute> attribute)
44 ASSERT(!m_attribute->attr());
48 PassRefPtr<Attr> Attr::create(Element* element, Document* document, PassRefPtr<Attribute> attribute)
50 RefPtr<Attr> attr = adoptRef(new Attr(element, document, attribute)); local
51 attr->createTextChild()
    [all...]
  /external/wpa_supplicant/
eap_sake.c 161 struct eap_sake_parse_attr attr; local
172 if (eap_sake_parse_attributes(payload, payload_len, &attr))
175 if (!attr.perm_id_req && !attr.any_id_req) {
208 struct eap_sake_parse_attr attr; local
223 if (eap_sake_parse_attributes(payload, payload_len, &attr))
226 if (!attr.rand_s) {
232 os_memcpy(data->rand_s, attr.rand_s, EAP_SAKE_RAND_LEN);
246 if (attr.serverid) {
248 attr.serverid, attr.serverid_len)
309 struct eap_sake_parse_attr attr; local
    [all...]
eap_sim_common.h 142 struct eap_sim_attrs *attr, int aka, int encr);
145 struct eap_sim_attrs *attr, int aka);
154 u8 * eap_sim_msg_add_full(struct eap_sim_msg *msg, u8 attr,
156 u8 * eap_sim_msg_add(struct eap_sim_msg *msg, u8 attr,
158 u8 * eap_sim_msg_add_mac(struct eap_sim_msg *msg, u8 attr);
  /libcore/luni/src/main/java/org/apache/harmony/xml/dom/
NodeImpl.java 24 import org.w3c.dom.Attr;
176 ((Attr) this).setValue(nodeValue);
251 AttrImpl attr = (AttrImpl) node; local
252 attr.namespaceAware = true;
253 attr.namespaceURI = namespaceURI;
254 attr.prefix = prefix;
255 attr.localName = qualifiedName;
291 AttrImpl attr = (AttrImpl) node; local
292 attr.namespaceAware = false;
293 attr.localName = name
513 Node attr = attributes.item(i); local
578 Node attr = attributes.item(i); local
    [all...]
  /external/bluetooth/glib/gthread/
gthread-posix.c 311 pthread_attr_t attr; local
318 posix_check_cmd (pthread_attr_init (&attr));
326 pthread_attr_setstacksize (&attr, stack_size);
334 pthread_attr_setscope (&attr, PTHREAD_SCOPE_SYSTEM);
338 posix_check_cmd (pthread_attr_setdetachstate (&attr,
346 posix_check_cmd (pthread_attr_getschedparam (&attr, &sched));
348 posix_check_cmd_prio (pthread_attr_setschedparam (&attr, &sched));
352 (pthread_attr_setprio (&attr, g_thread_priority_map [priority]));
355 ret = posix_error (pthread_create (thread, &attr,
358 posix_check_cmd (pthread_attr_destroy (&attr));
    [all...]
  /external/strace/
ipc.c 409 struct mq_attr attr;
412 if (umove(tcp, tcp->u_arg[3], &attr) < 0)
416 attr.mq_maxmsg, attr.mq_msgsize);
468 struct mq_attr attr;
469 if (umove(tcp, addr, &attr) < 0) {
474 printflags(openmodes, attr.mq_flags + 1, "O_???");
476 attr.mq_maxmsg, attr.mq_msgsize, attr.mq_curmsgs)
    [all...]
  /external/webkit/Source/WebCore/svg/
SVGPathElement.cpp 184 void SVGPathElement::parseMappedAttribute(Attribute* attr)
186 if (attr->name() == SVGNames::dAttr) {
188 if (!factory->buildSVGPathByteStreamFromString(attr->value(), m_pathByteStream, UnalteredParsing))
189 document()->accessSVGExtensions()->reportError("Problem parsing d=\"" + attr->value() + "\"");
190 } else if (attr->name() == SVGNames::pathLengthAttr) {
191 setPathLengthBaseValue(attr->value().toFloat());
195 if (SVGTests::parseMappedAttribute(attr))
197 if (SVGLangSpace::parseMappedAttribute(attr))
199 if (SVGExternalResourcesRequired::parseMappedAttribute(attr))
201 SVGStyledTransformableElement::parseMappedAttribute(attr);
    [all...]
  /external/llvm/tools/lto/
LTOModule.cpp 343 uint32_t attr = align ? CountTrailingZeros_32(def->getAlignment()) : 0; local
347 attr |= LTO_SYMBOL_PERMISSIONS_CODE;
351 attr |= LTO_SYMBOL_PERMISSIONS_RODATA;
353 attr |= LTO_SYMBOL_PERMISSIONS_DATA;
360 attr |= LTO_SYMBOL_DEFINITION_WEAK;
362 attr |= LTO_SYMBOL_DEFINITION_TENTATIVE;
364 attr |= LTO_SYMBOL_DEFINITION_REGULAR;
368 attr |= LTO_SYMBOL_SCOPE_HIDDEN;
370 attr |= LTO_SYMBOL_SCOPE_PROTECTED;
374 attr |= LTO_SYMBOL_SCOPE_DEFAULT
402 uint32_t attr = LTO_SYMBOL_DEFINITION_REGULAR; local
    [all...]
  /external/clang/include/clang/Sema/
AttributeList.h 435 AttributeList *add(AttributeList *attr) {
437 attr->NextInPool = Head;
438 Head = attr;
439 return attr;
605 AttributeList *attr =
608 add(attr);
609 return attr;
620 AttributeList *attr =
624 add(attr);
625 return attr;
    [all...]
  /external/libxml2/
c14n.c 705 xmlAttrPtr attr; local
790 for(attr = cur->properties; attr != NULL; attr = attr->next) {
796 if((attr->ns != NULL) && !xmlC14NIsXmlNs(attr->ns) && xmlC14NIsVisible(ctx, attr, cur)) {
797 already_rendered = xmlExcC14NVisibleNsStackFind(ctx->ns_rendered, attr->ns, ctx);
798 xmlC14NVisibleNsStackAdd(ctx->ns_rendered, attr->ns, cur);
980 xmlAttrPtr attr; local
    [all...]
  /frameworks/base/core/java/android/preference/
Preference.java 58 * @attr ref android.R.styleable#Preference_icon
59 * @attr ref android.R.styleable#Preference_key
60 * @attr ref android.R.styleable#Preference_title
61 * @attr ref android.R.styleable#Preference_summary
62 * @attr ref android.R.styleable#Preference_order
63 * @attr ref android.R.styleable#Preference_fragment
64 * @attr ref android.R.styleable#Preference_layout
65 * @attr ref android.R.styleable#Preference_widgetLayout
66 * @attr ref android.R.styleable#Preference_enabled
67 * @attr ref android.R.styleable#Preference_selectabl
208 int attr = a.getIndex(i); local
    [all...]
  /bionic/libc/kernel/common/linux/
device.h 62 struct attribute attr; member in struct:bus_attribute
88 struct attribute attr; member in struct:driver_attribute
120 struct attribute attr; member in struct:class_attribute
128 struct attribute attr; member in struct:class_device_attribute
163 struct attribute attr; member in struct:device_attribute
164 ssize_t (*show)(struct device *dev, struct device_attribute *attr,
166 ssize_t (*store)(struct device *dev, struct device_attribute *attr,
  /development/ndk/platforms/android-3/include/linux/
device.h 62 struct attribute attr; member in struct:bus_attribute
88 struct attribute attr; member in struct:driver_attribute
120 struct attribute attr; member in struct:class_attribute
128 struct attribute attr; member in struct:class_device_attribute
163 struct attribute attr; member in struct:device_attribute
164 ssize_t (*show)(struct device *dev, struct device_attribute *attr,
166 ssize_t (*store)(struct device *dev, struct device_attribute *attr,
  /external/icu4c/test/intltest/
simplethread.cpp 360 static pthread_attr_t attr; local
369 rc = pthread_attr_create(&attr);
372 rc = pthread_create(&(imp->fThread),attr,&SimpleThreadProc,(void*)this);
375 rc = pthread_attr_init(&attr);
379 //threads created with this attr to be in
383 pthread_attr_setdetachstate(&attr, &detachstate);
386 // pthread_attr_setdetachstate(&attr, PTHREAD_CREATE_DETACHED);
387 pthread_attr_setdetachstate(&attr, PTHREAD_CREATE_JOINABLE);
391 rc = pthread_create(&(imp->fThread),&attr,&SimpleThreadProc,(void*)this);

Completed in 2698 milliseconds

<<11121314151617181920>>