Home
last modified time | relevance | path

Searched refs:attrstr (Results 1 – 7 of 7) sorted by relevance

/external/ppp/pppd/plugins/radius/
Ddict.c42 char attrstr[AUTH_ID_LEN]; in rc_read_dictionary() local
211 if (sscanf (buffer, "%s%s%s%s", dummystr, attrstr, in rc_read_dictionary()
223 if (strlen (attrstr) > NAME_LENGTH) in rc_read_dictionary()
257 strcpy (dval->attrname, attrstr); in rc_read_dictionary()
Davpair.c525 char attrstr[AUTH_ID_LEN]; in rc_avpair_parse() local
546 rc_fieldcpy (attrstr, &buffer); in rc_avpair_parse()
548 rc_dict_findattr (attrstr)) == (DICT_ATTR *) NULL) in rc_avpair_parse()
/external/icu/icu4j/eclipse-build/plugins.template/com.ibm.icu.base/src/com/ibm/icu/text/
DSimpleDateFormat.java480 AttributedString attrstr = new AttributedString(sb.toString()); in formatToCharacterIterator() local
529 attrstr.addAttribute(attr, val, idx, end); in formatToCharacterIterator()
538 return attrstr.getIterator(); in formatToCharacterIterator()
DDecimalFormat.java1470 AttributedString attrstr = new AttributedString(sb.toString()); in formatToCharacterIterator() local
1505 attrstr.addAttribute(attr, val, idx, end); in formatToCharacterIterator()
1514 return attrstr.getIterator(); in formatToCharacterIterator()
DMessageFormat.java1078 AttributedString attrstr = new AttributedString(sb.toString()); in formatToCharacterIterator() local
1093 attrstr.addAttribute(attr, val, idx, end); in formatToCharacterIterator()
1102 return attrstr.getIterator(); in formatToCharacterIterator()
/external/python/cpython3/Modules/
D_operator.c1340 PyObject *attrstr = dotjoinattr(attr, &attrsep); in attrgetter_args() local
1341 if (attrstr == NULL) { in attrgetter_args()
1346 PyTuple_SET_ITEM(attrstrings, i, attrstr); in attrgetter_args()
/external/python/cpython2/Objects/
Dtypeobject.c1215 lookup_maybe(PyObject *self, char *attrstr, PyObject **attrobj) in lookup_maybe() argument
1220 *attrobj = PyString_InternFromString(attrstr); in lookup_maybe()
1236 lookup_method(PyObject *self, char *attrstr, PyObject **attrobj) in lookup_method() argument
1238 PyObject *res = lookup_maybe(self, attrstr, attrobj); in lookup_method()
1245 _PyObject_LookupSpecial(PyObject *self, char *attrstr, PyObject **attrobj) in _PyObject_LookupSpecial() argument
1248 return lookup_maybe(self, attrstr, attrobj); in _PyObject_LookupSpecial()