HomeSort by relevance Sort by last modified time
    Searched refs:attrname (Results 1 - 25 of 49) sorted by null

1 2

  /libcore/dom/src/test/java/org/w3c/domts/level1/core/
attrname.java 41 public final class attrname extends DOMTestCase { class in inherits:DOMTestCase
48 public attrname(final DOMTestDocumentBuilderFactory factory) throws org.w3c.domts.DOMTestIncompatibleException { method in class:attrname
84 return "http://www.w3.org/2001/DOM-Test-Suite/level1/core/attrname";
91 DOMTestCase.doMain(attrname.class, args);
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/ctypes/
_endian.py 27 def __setattr__(self, attrname, value):
28 if attrname == "_fields_":
36 super(_swapped_meta, self).__setattr__(attrname, value)
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/ctypes/
_endian.py 27 def __setattr__(self, attrname, value):
28 if attrname == "_fields_":
36 super(_swapped_meta, self).__setattr__(attrname, value)
  /external/elfutils/0.153/libdw/
dwarf_getabbrev.c 139 unsigned int attrname; local
143 get_uleb128 (attrname, abbrevp);
146 while (attrname != 0 && attrform != 0 && ++abb->attrcnt);
  /external/javassist/src/main/javassist/bytecode/
ParameterAnnotationsAttribute.java 61 * @param attrname attribute name (<code>visibleTag</code> or
67 public ParameterAnnotationsAttribute(ConstPool cp, String attrname,
69 super(cp, attrname, info);
79 * @param attrname attribute name (<code>visibleTag</code> or
83 public ParameterAnnotationsAttribute(ConstPool cp, String attrname) {
84 this(cp, attrname, new byte[] { 0 });
AttributeInfo.java 38 protected AttributeInfo(ConstPool cp, int attrname, byte[] attrinfo) {
40 name = attrname;
44 protected AttributeInfo(ConstPool cp, String attrname) {
45 this(cp, attrname, (byte[])null);
52 * @param attrname attribute name
56 public AttributeInfo(ConstPool cp, String attrname, byte[] attrinfo) {
57 this(cp, cp.addUtf8Info(attrname), attrinfo);
AnnotationsAttribute.java 118 * @param attrname attribute name (<code>visibleTag</code> or
124 public AnnotationsAttribute(ConstPool cp, String attrname, byte[] info) {
125 super(cp, attrname, info);
135 * @param attrname attribute name (<code>visibleTag</code> or
139 public AnnotationsAttribute(ConstPool cp, String attrname) {
140 this(cp, attrname, new byte[] { 0, 0 });
  /external/ppp/pppd/plugins/radius/
dict.c 257 strcpy (dval->attrname, attrstr);
332 DICT_ATTR *rc_dict_findattr (char *attrname)
340 if (strcasecmp (attr->name, attrname) == 0)
352 if (strcasecmp (attr->name, attrname) == 0) {
395 DICT_VALUE * rc_dict_getval (UINT4 value, char *attrname)
402 if (strcmp (val->attrname, attrname) == 0 &&
  /external/openssl/crypto/cms/
cms_att.c 115 const char *attrname, int type,
118 if(X509at_add1_attr_by_txt(&si->signedAttrs, attrname,
181 const char *attrname, int type,
184 if(X509at_add1_attr_by_txt(&si->unsignedAttrs, attrname,
  /external/chromium_org/build/android/pylib/host_driven/
setup.py 134 def _IsTestMethod(attrname, test_case_class):
138 attrname: The method name.
142 True if test_case_class.'attrname' is callable and it starts with 'test';
145 attr = getattr(test_case_class, attrname)
146 return callable(attr) and attrname.startswith('test')
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
htmllib.py 387 for attrname, value in attrs:
389 if attrname == 'href':
391 if attrname == 'name':
393 if attrname == 'type':
419 for attrname, value in attrs:
420 if attrname == 'align':
422 if attrname == 'alt':
424 if attrname == 'ismap':
426 if attrname == 'src':
428 if attrname == 'width'
    [all...]
xmllib.py 535 for attrname in attrdict.keys():
536 if not attrname in self.__xml_namespace_attributes:
537 self.syntax_error("unknown attribute `%s' in xml:namespace tag" % attrname)
562 attrname, attrvalue = res.group('name', 'value')
564 attrname = attrname.lower()
567 self.syntax_error("no value specified for attribute `%s'" % attrname)
568 attrvalue = attrname
573 self.syntax_error("attribute `%s' value not quoted" % attrname)
574 res = xmlns.match(attrname)
    [all...]
sgmllib.py 281 attrname, rest, attrvalue = match.group(1, 2, 3)
283 attrvalue = attrname
291 attrs.append((attrname.lower(), attrvalue))
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/
htmllib.py 387 for attrname, value in attrs:
389 if attrname == 'href':
391 if attrname == 'name':
393 if attrname == 'type':
419 for attrname, value in attrs:
420 if attrname == 'align':
422 if attrname == 'alt':
424 if attrname == 'ismap':
426 if attrname == 'src':
428 if attrname == 'width'
    [all...]
xmllib.py 535 for attrname in attrdict.keys():
536 if not attrname in self.__xml_namespace_attributes:
537 self.syntax_error("unknown attribute `%s' in xml:namespace tag" % attrname)
562 attrname, attrvalue = res.group('name', 'value')
564 attrname = attrname.lower()
567 self.syntax_error("no value specified for attribute `%s'" % attrname)
568 attrvalue = attrname
573 self.syntax_error("attribute `%s' value not quoted" % attrname)
574 res = xmlns.match(attrname)
    [all...]
sgmllib.py 281 attrname, rest, attrvalue = match.group(1, 2, 3)
283 attrvalue = attrname
291 attrs.append((attrname.lower(), attrvalue))
  /external/chromium_org/third_party/openssl/openssl/crypto/evp/
evp_pkey.c 236 const char *attrname, int type,
239 if(X509at_add1_attr_by_txt(&key->attributes, attrname,
  /external/openssl/crypto/evp/
evp_pkey.c 236 const char *attrname, int type,
239 if(X509at_add1_attr_by_txt(&key->attributes, attrname,
  /prebuilts/misc/common/swig/include/2.0.11/tcl/
tclrun.swg 303 char *method, *attrname;
386 attrname = Tcl_GetStringFromObj(objv[2],NULL);
389 if ((strcmp(attr->name, attrname) == 0) && (attr->getmethod)) {
400 if (strcmp(attrname, "-this") == 0) {
404 if (strcmp(attrname, "-thisown") == 0) {
420 attrname = Tcl_GetStringFromObj(objv[i],NULL);
423 if ((strcmp(attr->name, attrname) == 0) && (attr->setmethod)) {
  /external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/test/
main.py 241 def isTestMethod(attrname, testCaseClass=testCaseClass):
242 if not hasattr(getattr(testCaseClass, attrname), '__call__'):
244 return (any(attrname.startswith(prefix) for prefix in self.test_method_prefixes))
  /external/chromium_org/third_party/openssl/openssl/crypto/x509/
x509_req.c 310 const char *attrname, int type,
313 if(X509at_add1_attr_by_txt(&req->req_info->attributes, attrname,
  /external/openssl/crypto/x509/
x509_req.c 310 const char *attrname, int type,
313 if(X509at_add1_attr_by_txt(&req->req_info->attributes, attrname,
  /external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/thirdparty/unittest2/
loader.py 154 def isTestMethod(attrname, testCaseClass=testCaseClass,
156 return attrname.startswith(prefix) and \
157 hasattr(getattr(testCaseClass, attrname), '__call__')
  /external/lldb/test/unittest2/
loader.py 154 def isTestMethod(attrname, testCaseClass=testCaseClass,
156 return attrname.startswith(prefix) and \
157 hasattr(getattr(testCaseClass, attrname), '__call__')
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/unittest/
loader.py 134 def isTestMethod(attrname, testCaseClass=testCaseClass,
136 return attrname.startswith(prefix) and \
137 hasattr(getattr(testCaseClass, attrname), '__call__')

Completed in 937 milliseconds

1 2