Home
last modified time | relevance | path

Searched refs:idents (Results 1 – 25 of 35) sorted by relevance

12

/netbsd/external/gpl3/gcc/dist/gcc/d/dmd/
H A Dtypesem.c85 for (; i < t->idents.dim; i++) in typeToExpressionHelper()
87 RootObject *id = t->idents[i]; in typeToExpressionHelper()
H A Dtraits.c1199 Identifiers *idents; in semanticTraits() member
1241 Identifiers *idents = pid->idents; in semanticTraits() local
1245 for (size_t j = 0; j < idents->dim; j++) in semanticTraits()
1247 Identifier *id = (*idents)[j]; in semanticTraits()
1252 idents->push(sm->ident); in semanticTraits()
1266 Identifiers *idents = new Identifiers; in semanticTraits() local
1269 ctx.idents = idents; in semanticTraits()
1296 Expressions *exps = (Expressions *)idents; in semanticTraits()
1297 for (size_t i = 0; i < idents->dim; i++) in semanticTraits()
1299 Identifier *id = (*idents)[i]; in semanticTraits()
H A Ddtemplate.d635 if (!ti || ti.idents.length != 0)
3560 if (tident.idents.dim > 0) in visit()
3929 if (tid.idents.dim) in visit()
4311 if (tpi.idents.dim) in visit()
4313 RootObject id = tpi.idents[tpi.idents.dim - 1]; in visit()
4321 tpi.idents.dim--; in visit()
4323 tpi.idents.dim++; in visit()
4452 if (tpi.idents.dim) in visit()
4454 RootObject id = tpi.idents[tpi.idents.dim - 1]; in visit()
4462 tpi.idents.dim--; in visit()
[all …]
H A Ddtemplate.c3211 if (tident->idents.dim > 0) in deduceType()
3574 if (tid->idents.dim) in deduceType()
3933 if (tpi->idents.dim) in deduceType()
3935 RootObject *id = tpi->idents[tpi->idents.dim - 1]; in deduceType()
3943 tpi->idents.dim--; in deduceType()
3945 tpi->idents.dim++; in deduceType()
4078 if (tpi->idents.dim) in deduceType()
4080 RootObject *id = tpi->idents[tpi->idents.dim - 1]; in deduceType()
4088 tpi->idents.dim--; in deduceType()
4090 tpi->idents.dim++; in deduceType()
[all …]
H A Dparse.c680 Identifiers *idents = NULL; in parseDeclDefs() local
691 else if (idents) in parseDeclDefs()
704 if (idents) in parseDeclDefs()
707 assert(idents->dim); in parseDeclDefs()
718 delete idents; in parseDeclDefs() local
1284 Identifiers *idents = NULL; in parseLinkage() local
1328 idents = NULL; in parseLinkage()
1411 *pidents = idents; in parseLinkage()
3676 Identifiers *idents = NULL; in parseStorageClasses() local
3680 if (idents) in parseStorageClasses()
[all …]
H A Dtraits.d1603 auto idents = new Identifiers(); in semanticTraits() local
1655 foreach (id; *idents) in semanticTraits()
1667 idents.push(sm.ident); in semanticTraits()
1701 auto exps = cast(Expressions*)idents; in semanticTraits()
1702 foreach (i, id; *idents) in semanticTraits()
H A Ddmangle.d1112 return backrefImpl(buf, idents, id); in addRefToIdentifier()
1132 AssocArray!(Identifier, size_t) idents; /// Identifier => (offset+1) in buf
H A Dmtype.d5344 Objects idents; variable
5359 idents.setDim(t.idents.dim); in syntaxCopyHelper()
5360 for (size_t i = 0; i < idents.dim; i++) in syntaxCopyHelper()
5362 RootObject id = t.idents[i]; in syntaxCopyHelper()
5390 idents[i] = id; in syntaxCopyHelper()
5396 idents.push(ident); in addIdent()
5401 idents.push(inst); in addInst()
5406 idents.push(e); in addIndex()
H A Dmtype.c6723 idents.setDim(t->idents.dim); in syntaxCopyHelper()
6724 for (size_t i = 0; i < idents.dim; i++) in syntaxCopyHelper()
6726 RootObject *id = t->idents[i]; in syntaxCopyHelper()
6746 idents[i] = id; in syntaxCopyHelper()
6752 idents.push(ident); in addIdent()
6757 idents.push(inst); in addInst()
6762 idents.push(e); in addIndex()
6866 for (size_t i = 0; i < idents.dim; i++) in resolveHelper()
6868 RootObject *id = idents[i]; in resolveHelper()
7406 if (idents.dim == 0) in resolve()
[all …]
H A Dparse.d791 else if (res.idents || res.identExps || res.cppmangle != CPPMANGLE.def)
808 if (res.idents)
811 assert(res.idents.dim);
812 for (size_t i = res.idents.dim; i;)
814 Identifier id = (*res.idents)[--i];
2106 result.idents = new AST.Identifiers();
2110 result.idents.push(idn);
2118 result.idents = null; // error occurred, invalidate list of elements.
4267 if (res.idents || res.identExps)
9533 AST.Identifiers* idents; in ParsedLinkage() local
H A Dtypesem.d239 for (size_t i = 0; i < mt.idents.dim; i++)
241 RootObject id = mt.idents[i];
609 foreach (id; t.idents[i .. t.idents.dim])
3171 if (mt.idents.dim == 0) in visitTypeof()
3211 if (mt.idents.dim == 0) in visitReturn()
H A Dmtype.h701 Objects idents; variable
H A Dhdrgen.c1003 for (size_t i = 0; i < t->idents.dim; i++) in visitTypeQualifiedHelper()
1005 RootObject *id = t->idents[i]; in visitTypeQualifiedHelper()
1634 (t->ty == Tident && ((TypeIdentifier *)t)->idents.dim == 0)))) in tiargsToBuffer()
H A Dtransitivevisitor.d424 foreach (id; t.idents) in ParseVisitMethods()
H A Ddtoh.d1789 if (t.idents.length)
1794 foreach (arg; t.idents)
/netbsd/external/gpl3/gcc.old/dist/gcc/d/dmd/
H A Dtypesem.c85 for (; i < t->idents.dim; i++) in typeToExpressionHelper()
87 RootObject *id = t->idents[i]; in typeToExpressionHelper()
H A Dtraits.c1199 Identifiers *idents; in semanticTraits() member
1241 Identifiers *idents = pid->idents; in semanticTraits() local
1245 for (size_t j = 0; j < idents->dim; j++) in semanticTraits()
1247 Identifier *id = (*idents)[j]; in semanticTraits()
1252 idents->push(sm->ident); in semanticTraits()
1266 Identifiers *idents = new Identifiers; in semanticTraits() local
1269 ctx.idents = idents; in semanticTraits()
1296 Expressions *exps = (Expressions *)idents; in semanticTraits()
1297 for (size_t i = 0; i < idents->dim; i++) in semanticTraits()
1299 Identifier *id = (*idents)[i]; in semanticTraits()
H A Ddtemplate.c3211 if (tident->idents.dim > 0) in deduceType()
3574 if (tid->idents.dim) in deduceType()
3933 if (tpi->idents.dim) in deduceType()
3935 RootObject *id = tpi->idents[tpi->idents.dim - 1]; in deduceType()
3943 tpi->idents.dim--; in deduceType()
3945 tpi->idents.dim++; in deduceType()
4078 if (tpi->idents.dim) in deduceType()
4080 RootObject *id = tpi->idents[tpi->idents.dim - 1]; in deduceType()
4088 tpi->idents.dim--; in deduceType()
4090 tpi->idents.dim++; in deduceType()
[all …]
H A Dparse.c680 Identifiers *idents = NULL; in parseDeclDefs() local
691 else if (idents) in parseDeclDefs()
704 if (idents) in parseDeclDefs()
707 assert(idents->dim); in parseDeclDefs()
718 delete idents; in parseDeclDefs() local
1284 Identifiers *idents = NULL; in parseLinkage() local
1328 idents = NULL; in parseLinkage()
1411 *pidents = idents; in parseLinkage()
3676 Identifiers *idents = NULL; in parseStorageClasses() local
3680 if (idents) in parseStorageClasses()
[all …]
H A Dmtype.c6723 idents.setDim(t->idents.dim); in syntaxCopyHelper()
6724 for (size_t i = 0; i < idents.dim; i++) in syntaxCopyHelper()
6726 RootObject *id = t->idents[i]; in syntaxCopyHelper()
6746 idents[i] = id; in syntaxCopyHelper()
6752 idents.push(ident); in addIdent()
6757 idents.push(inst); in addInst()
6762 idents.push(e); in addIndex()
6866 for (size_t i = 0; i < idents.dim; i++) in resolveHelper()
6868 RootObject *id = idents[i]; in resolveHelper()
7406 if (idents.dim == 0) in resolve()
[all …]
H A Dhdrgen.c1003 for (size_t i = 0; i < t->idents.dim; i++) in visitTypeQualifiedHelper()
1005 RootObject *id = t->idents[i]; in visitTypeQualifiedHelper()
1634 (t->ty == Tident && ((TypeIdentifier *)t)->idents.dim == 0)))) in tiargsToBuffer()
H A Dmtype.h686 Objects idents; variable
/netbsd/usr.sbin/gspa/gspa/
H A Dgsp_lex.c49 char idents[MAXLINE]; variable
79 idptr = idents; in lex_init()
/netbsd/sys/netipsec/
H A Dkeydb.h76 struct sadb_ident *idents; /* source identity */ member
H A Dkey.c3272 if (sah->idents != NULL) in key_destroy_sah()
3273 kmem_free(sah->idents, sah->idents_len); in key_destroy_sah()
6150 if (sah->idents != NULL) { in key_setident()
6151 kmem_free(sah->idents, sah->idents_len); in key_setident()
6152 sah->idents = NULL; in key_setident()
6164 sah->idents = NULL; in key_setident()
6200 sah->idents = NULL; in key_setident()
6206 sah->idents = kmem_alloc(idsrclen, KM_SLEEP); in key_setident()
6210 memcpy(sah->idents, idsrc, idsrclen); in key_setident()

12