Searched refs:attrname (Results 1 - 25 of 41) sorted by relevance

12

/external/python/cpython2/Lib/ctypes/
H A D_endian.py24 def __setattr__(self, attrname, value):
25 if attrname == "_fields_":
33 super(_swapped_meta, self).__setattr__(attrname, value)
/external/python/cpython3/Lib/ctypes/
H A D_endian.py24 def __setattr__(self, attrname, value):
25 if attrname == "_fields_":
33 super().__setattr__(attrname, value)
/external/libcups/cups/
H A Dipp-support.c1861 ippEnumString(const char *attrname, /* I - Attribute name */ argument
1871 if (!strcmp(attrname, "document-state") &&
1876 else if (!strcmp(attrname, "finishings") ||
1877 !strcmp(attrname, "finishings-actual") ||
1878 !strcmp(attrname, "finishings-default") ||
1879 !strcmp(attrname, "finishings-ready") ||
1880 !strcmp(attrname, "finishings-supported") ||
1881 !strcmp(attrname, "job-finishings") ||
1882 !strcmp(attrname, "job-finishings-default") ||
1883 !strcmp(attrname, "jo
1939 ippEnumValue(const char *attrname, const char *enumstring) argument
[all...]
H A Dadminutil.c47 const char *attrname,
2287 const char *attrname, /* I - Attribute name */
2323 attrname, i);
2325 cupsFilePrintf(dstfp, "%%cupsJobTicket: %s=%d\"\n", attrname, i);
2343 cupsFilePrintf(dstfp, "%%cupsJobTicket: %s=%d\n\"\n*End\n", attrname,
2346 cupsFilePrintf(dstfp, "%%cupsJobTicket: %s=%d\"\n", attrname,
2370 cupsFilePrintf(dstfp, "%%cupsJobTicket: %s=%s\n\"\n*End\n", attrname,
2373 cupsFilePrintf(dstfp, "%%cupsJobTicket: %s=%s\"\n", attrname,
2283 write_option(cups_file_t *dstfp, int order, const char *name, const char *text, const char *attrname, ipp_attribute_t *suppattr, ipp_attribute_t *defattr, int defval, int valcount) argument
/external/javassist/src/main/javassist/bytecode/
H A DParameterAnnotationsAttribute.java61 * @param attrname attribute name (<code>visibleTag</code> or
67 public ParameterAnnotationsAttribute(ConstPool cp, String attrname, argument
69 super(cp, attrname, info);
79 * @param attrname attribute name (<code>visibleTag</code> or
83 public ParameterAnnotationsAttribute(ConstPool cp, String attrname) { argument
84 this(cp, attrname, new byte[] { 0 });
H A DAttributeInfo.java38 protected AttributeInfo(ConstPool cp, int attrname, byte[] attrinfo) { argument
40 name = attrname;
44 protected AttributeInfo(ConstPool cp, String attrname) { argument
45 this(cp, attrname, (byte[])null);
52 * @param attrname attribute name
56 public AttributeInfo(ConstPool cp, String attrname, byte[] attrinfo) { argument
57 this(cp, cp.addUtf8Info(attrname), attrinfo);
H A DAnnotationsAttribute.java118 * @param attrname attribute name (<code>visibleTag</code> or
124 public AnnotationsAttribute(ConstPool cp, String attrname, byte[] info) { argument
125 super(cp, attrname, info);
135 * @param attrname attribute name (<code>visibleTag</code> or
139 public AnnotationsAttribute(ConstPool cp, String attrname) { argument
140 this(cp, attrname, new byte[] { 0, 0 });
/external/ppp/pppd/plugins/radius/
H A Ddict.c257 strcpy (dval->attrname, attrstr);
332 DICT_ATTR *rc_dict_findattr (char *attrname) argument
340 if (strcasecmp (attr->name, attrname) == 0)
352 if (strcasecmp (attr->name, attrname) == 0) {
395 DICT_VALUE * rc_dict_getval (UINT4 value, char *attrname) argument
402 if (strcmp (val->attrname, attrname) == 0 &&
H A Dradiusclient.h313 char attrname[NAME_LENGTH +1]; member in struct:dict_value
/external/elfutils/libdw/
H A Ddwarf_getabbrev.c126 unsigned int attrname; local
132 get_uleb128 (attrname, abbrevp, end);
137 while (attrname != 0 && attrform != 0 && ++abb->attrcnt);
/external/python/cpython2/Lib/
H A Dhtmllib.py387 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
[all...]
H A Dxmllib.py535 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...]
H A Dsgmllib.py281 attrname, rest, attrvalue = match.group(1, 2, 3)
283 attrvalue = attrname
291 attrs.append((attrname.lower(), attrvalue))
H A DHTMLParser.py301 attrname, rest, attrvalue = m.group(1, 2, 3)
309 attrs.append((attrname.lower(), attrvalue))
/external/python/cpython2/Lib/unittest/
H A Dloader.py136 def isTestMethod(attrname, testCaseClass=testCaseClass,
138 return attrname.startswith(prefix) and \
139 hasattr(getattr(testCaseClass, attrname), '__call__')
/external/boringssl/src/crypto/x509/
H A Dx509_req.c315 const char *attrname, int type,
318 if (X509at_add1_attr_by_txt(&req->req_info->attributes, attrname,
314 X509_REQ_add1_attr_by_txt(X509_REQ *req, const char *attrname, int type, const unsigned char *bytes, int len) argument
H A Dx509_att.c185 **x, const char *attrname,
192 attr = X509_ATTRIBUTE_create_by_txt(NULL, attrname, type, bytes, len);
/external/python/cpython2/Lib/distutils/command/
H A Dinstall.py472 attrname = 'install_' + key
473 if getattr(self, attrname) is None:
474 setattr(self, attrname, scheme[key])
/external/python/cpython3/Lib/distutils/command/
H A Dinstall.py459 attrname = 'install_' + key
460 if getattr(self, attrname) is None:
461 setattr(self, attrname, scheme[key])
/external/python/cpython2/Lib/compiler/
H A Dast.py85 def __init__(self, expr, attrname, flags, lineno=None):
87 self.attrname = attrname
92 return self.expr, self.attrname, self.flags
98 return "AssAttr(%s, %s, %s)" % (repr(self.expr), repr(self.attrname), repr(self.flags))
663 def __init__(self, expr, attrname, lineno=None):
665 self.attrname = attrname
669 return self.expr, self.attrname
675 return "Getattr(%s, %s)" % (repr(self.expr), repr(self.attrname))
[all...]
H A Dpycodegen.py952 self.emit('LOAD_ATTR', self.mangle(node.attrname))
979 self.emit('STORE_ATTR', self.mangle(node.attrname))
981 self.emit('DELETE_ATTR', self.mangle(node.attrname))
1037 self.emit('LOAD_ATTR', self.mangle(node.attrname))
1040 self.emit('STORE_ATTR', self.mangle(node.attrname))
/external/python/cpython3/Lib/unittest/
H A Dloader.py225 def isTestMethod(attrname, testCaseClass=testCaseClass,
227 return attrname.startswith(prefix) and \
228 callable(getattr(testCaseClass, attrname))
/external/python/cpython3/Lib/html/
H A Dparser.py319 attrname, rest, attrvalue = m.group(1, 2, 3)
327 attrs.append((attrname.lower(), attrvalue))
/external/python/cpython2/Python/
H A Dcodecs.c224 const char *attrname)
228 inccodec = PyObject_GetAttrString(codec_info, attrname);
242 const char *attrname)
249 ret = codec_makeincrementalcodec(codec_info, errors, attrname);
222 codec_makeincrementalcodec(PyObject *codec_info, const char *errors, const char *attrname) argument
240 codec_getincrementalcodec(const char *encoding, const char *errors, const char *attrname) argument
/external/python/cpython3/Python/
H A Dcodecs.c277 const char *attrname)
281 inccodec = PyObject_GetAttrString(codec_info, attrname);
295 const char *attrname)
302 ret = codec_makeincrementalcodec(codec_info, errors, attrname);
275 codec_makeincrementalcodec(PyObject *codec_info, const char *errors, const char *attrname) argument
293 codec_getincrementalcodec(const char *encoding, const char *errors, const char *attrname) argument

Completed in 611 milliseconds

12