| /netbsd-src/external/mit/expat/dist/xmlwf/ |
| H A D | xmlwf.c | 184 startElement(void *userData, const XML_Char *name, const XML_Char **atts) { in startElement() argument 191 p = atts; in startElement() 194 nAtts = (int)((p - atts) >> 1); in startElement() 196 qsort((void *)atts, nAtts, sizeof(XML_Char *) * 2, attcmp); in startElement() 197 while (*atts) { in startElement() 199 fputts(*atts++, fp); in startElement() 200 attributeValue(fp, *atts); in startElement() 201 atts++; in startElement() 227 startElementNS(void *userData, const XML_Char *name, const XML_Char **atts) { in startElementNS() argument 247 p = atts; in startElementNS() [all …]
|
| /netbsd-src/external/mit/expat/dist/fuzz/ |
| H A D | xml_parse_fuzzer.c | 39 start(void *userData, const XML_Char *name, const XML_Char **atts) { in start() argument 42 (void)atts; in start()
|
| H A D | xml_parsebuffer_fuzzer.c | 40 start(void *userData, const XML_Char *name, const XML_Char **atts) { in start() argument 43 (void)atts; in start()
|
| /netbsd-src/external/mit/expat/dist/examples/ |
| H A D | elements.c | 59 startElement(void *userData, const XML_Char *name, const XML_Char **atts) { in startElement() argument 62 (void)atts; in startElement()
|
| /netbsd-src/external/gpl3/gcc/dist/gcc/d/dmd/ |
| H A D | attrib.d | 1375 Expressions* atts; variable 1377 extern (D) this(Expressions* atts, Dsymbols* decl) in this() argument 1380 this.atts = atts; in this() 1387 …return new UserAttributeDeclaration(Expression.arraySyntaxCopy(this.atts), Dsymbol.arraySyntaxCopy… in syntaxCopy() 1393 if (atts && atts.dim) in newScope() 1434 arrayExpressionSemantic(atts, sc); in getAttributes() 1439 if (atts && atts.dim) in getAttributes() 1440 exps.push(new TupleExp(Loc.initial, atts)); in getAttributes() 1593 if (sym.userAttribDecl is null || sym.userAttribDecl.atts is null) in foreachUdaNoSemantic() 1596 foreach (exp; *sym.userAttribDecl.atts) in foreachUdaNoSemantic()
|
| H A D | semantic2.d | 562 if (!uad.decl || !uad.atts || !uad.atts.dim || !uad._scope) in visit() 589 eval(sc, uad.atts, lastTag); in visit()
|
| H A D | attrib.h | 247 Expressions *atts;
|
| H A D | hdrgen.d | 106 argsToBuffer(m.userAttribDecl.atts, buf, hgs); in moduleToBuffer2() 1159 argsToBuffer(d.atts, buf, hgs); in visit() 3174 … bool isAnonymous = p.userAttribDecl.atts.dim > 0 && !(*p.userAttribDecl.atts)[0].isCallExp(); in parameterToBuffer() 3178 argsToBuffer(p.userAttribDecl.atts, buf, hgs); in parameterToBuffer()
|
| H A D | cppmangle.d | 2394 if (!s.userAttribDecl || !s.userAttribDecl.atts) in forSymbol() 2397 foreach (exp; *s.userAttribDecl.atts) in forSymbol()
|
| H A D | transitivevisitor.d | 592 visitArgs(d.atts); in ParseVisitMethods()
|
| H A D | dsymbolsem.d | 1938 arrayExpressionSemantic(uad.atts, sc, true); in visit()
|
| /netbsd-src/external/gpl3/gcc.old/dist/gcc/d/dmd/ |
| H A D | attrib.c | 1636 UserAttributeDeclaration::UserAttributeDeclaration(Expressions *atts, Dsymbols *decl) in UserAttributeDeclaration() argument 1640 this->atts = atts; in UserAttributeDeclaration() 1648 Expression::arraySyntaxCopy(this->atts), in syntaxCopy() 1655 if (atts && atts->dim) in newScope() 1704 if (decl && atts && atts->dim && _scope) in semantic2() 1707 udaExpressionEval(sc, atts); in semantic2() 1737 arrayExpressionSemantic(atts, sc); in getAttributes() 1743 if (atts && atts->dim) in getAttributes() 1744 exps->push(new TupleExp(Loc(), atts)); in getAttributes()
|
| H A D | attrib.h | 268 Expressions *atts; 270 UserAttributeDeclaration(Expressions *atts, Dsymbols *decl);
|
| H A D | hdrgen.c | 1430 argsToBuffer(d->atts); in visit() 3176 argsToBuffer(m->userAttribDecl->atts); in visit()
|
| /netbsd-src/external/bsd/unbound/dist/smallapp/ |
| H A D | unbound-anchor.c | 1288 find_att(const XML_Char **atts, const XML_Char* name) in find_att() argument 1291 for(i=0; atts[i]; i+=2) { in find_att() 1292 if(strcasecmp(atts[i], name) == 0) in find_att() 1293 return atts[i+1]; in find_att() 1371 handle_keydigest(struct xml_data* data, const XML_Char **atts) in handle_keydigest() argument 1374 if(find_att(atts, "validFrom")) { in handle_keydigest() 1375 time_t from = xml_convertdate(find_att(atts, "validFrom")); in handle_keydigest() 1383 if(find_att(atts, "validUntil")) { in handle_keydigest() 1384 time_t until = xml_convertdate(find_att(atts, "validUntil")); in handle_keydigest() 1427 xml_startelem(void *userData, const XML_Char *name, const XML_Char **atts) in xml_startelem() argument [all …]
|
| /netbsd-src/external/mit/expat/dist/lib/ |
| H A D | xmltok.h | 180 ATTRIBUTE *atts); 261 #define XmlGetAttributes(enc, ptr, attsMax, atts) \ argument 262 (((enc)->getAtts)(enc, ptr, attsMax, atts))
|
| H A D | xmltok_impl.c | 1508 ATTRIBUTE *atts) { in PREFIX() 1519 atts[nAtts].name = ptr; \ in PREFIX() 1520 atts[nAtts].normalized = 1; \ in PREFIX() 1541 atts[nAtts].valuePtr = ptr + MINBPC(enc); in PREFIX() 1547 atts[nAtts].valueEnd = ptr; in PREFIX() 1554 atts[nAtts].valuePtr = ptr + MINBPC(enc); in PREFIX() 1560 atts[nAtts].valueEnd = ptr; in PREFIX() 1566 atts[nAtts].normalized = 0; in PREFIX() 1571 else if (state == inValue && nAtts < attsMax && atts[nAtts].normalized in PREFIX() 1572 && (ptr == atts[nAtts].valuePtr in PREFIX() [all …]
|
| H A D | expat.h | 275 const XML_Char **atts);
|
| /netbsd-src/external/mit/expat/dist/tests/ |
| H A D | runtests.c | 305 const XML_Char **atts) { in dummy_start_element() argument 308 UNUSED_P(atts); in dummy_start_element() 579 const XML_Char **atts) { in accumulate_attribute() argument 583 if (atts == NULL) in accumulate_attribute() 586 while (storage->count < 0 && atts[0] != NULL) { in accumulate_attribute() 588 CharData_AppendXMLChars(storage, atts[1], -1); in accumulate_attribute() 589 atts += 2; in accumulate_attribute() 1260 const XML_Char **atts) { in start_element_event_handler() argument 1261 UNUSED_P(atts); in start_element_event_handler() 1352 const XML_Char **atts) { in check_attr_contains_normalized_whitespace() argument [all …]
|
| /netbsd-src/external/gpl2/gettext/dist/gettext-tools/src/ |
| H A D | x-glade.c | 118 …edef void (*XML_StartElementHandler) (void *userData, const XML_Char *name, const XML_Char **atts);
|
| /netbsd-src/external/gpl3/gcc/dist/libphobos/src/std/ |
| H A D | typecons.d | 5571 enum atts = functionAttributes!(func); 5585 if (atts & FA.ref_) rtype ~= "ref "; 5596 if (atts & FA.pure_ ) poatts ~= " pure"; 5597 if (atts & FA.nothrow_) poatts ~= " nothrow"; 5598 if (atts & FA.property) poatts ~= " @property"; 5599 if (atts & FA.safe ) poatts ~= " @safe"; 5600 if (atts & FA.trusted ) poatts ~= " @trusted"; 5601 if (atts & FA.scope_ ) poatts ~= " scope"; 5602 if (atts & FA.return_ ) poatts ~= " return";
|
| /netbsd-src/external/gpl3/gcc.old/dist/libphobos/src/std/ |
| H A D | typecons.d | 4351 enum atts = functionAttributes!(func); 4365 if (atts & FA.ref_) rtype ~= "ref "; 4376 if (atts & FA.pure_ ) poatts ~= " pure"; 4377 if (atts & FA.nothrow_) poatts ~= " nothrow"; 4378 if (atts & FA.property) poatts ~= " @property"; 4379 if (atts & FA.safe ) poatts ~= " @safe"; 4380 if (atts & FA.trusted ) poatts ~= " @trusted";
|
| H A D | traits.d | 244 uint atts = 0; variable 253 atts |= att; 258 return Demangle!uint(atts, mstr);
|
| /netbsd-src/external/gpl3/binutils.old/dist/binutils/ |
| H A D | dlltool.c | 1233 char atts[5]; in def_section() local 1234 char *d = atts; in def_section() 1245 sprintf (buf, "-attr %s %s", name, atts); in def_section()
|
| /netbsd-src/external/gpl3/binutils/dist/binutils/ |
| H A D | dlltool.c | 1285 char atts[5]; in def_section() local 1286 char *d = atts; in def_section() 1297 sprintf (buf, "-attr %s %s", name, atts); in def_section()
|