Home
last modified time | relevance | path

Searched refs:noderef (Results 1 – 12 of 12) sorted by relevance

/freebsd/contrib/byacc/test/
H A Dexpr.oxout.y252 yyyRefN= (yyyws = (yyyRSTop->whichSym))?yyyRSTopNp.noderef:yyyRSTopN; in yyySolveAndSignal()
308 {yyyiDum = yyyIIEL[yyyIIIEL[yyyRSTopNp.noderef->prodNum] + in yyySolveAndSignal()
312 yyySignalEnts(yyyRSTopNp.noderef, in yyySolveAndSignal()
861 gnpDum->parent.noderef = (*yyyOxStackItem)->node; in yyyGenIntNode()
1355 prodNum = np->parent.noderef->prodNum; in yyyCheckNodeInstancesSolved()
1380 yyyShowProd(np->parent.noderef->prodNum); in yyyCheckNodeInstancesSolved()
H A Dexpr.oxout.h16 struct yyyGNT * noderef; member
/freebsd/usr.bin/diff/
H A Ddiff.h112 extern bool ignore_file_case, suppress_common, color, noderef, algorithm_set;
H A Ddiff.c40 bool ignore_file_case, suppress_common, color, noderef; variable
371 noderef = true; in main()
H A Ddiffdir.c187 if (noderef) { in diffit()
/freebsd/contrib/byacc/test/yacc/
H A Dexpr.oxout.tab.c451 yyyRefN= (yyyws = (yyyRSTop->whichSym))?yyyRSTopNp.noderef:yyyRSTopN; in yyySolveAndSignal()
507 {yyyiDum = yyyIIEL[yyyIIIEL[yyyRSTopNp.noderef->prodNum] + in yyySolveAndSignal()
511 yyySignalEnts(yyyRSTopNp.noderef, in yyySolveAndSignal()
1060 gnpDum->parent.noderef = (*yyyOxStackItem)->node; in yyyGenIntNode()
1554 prodNum = np->parent.noderef->prodNum; in yyyCheckNodeInstancesSolved()
1579 yyyShowProd(np->parent.noderef->prodNum); in yyyCheckNodeInstancesSolved()
/freebsd/usr.bin/diff/tests/
H A Ddiff_test.sh24 atf_test_case noderef
391 atf_add_test_case noderef
/freebsd/contrib/byacc/test/btyacc/
H A Dexpr.oxout.tab.c601 yyyRefN= (yyyws = (yyyRSTop->whichSym))?yyyRSTopNp.noderef:yyyRSTopN; in yyySolveAndSignal()
657 {yyyiDum = yyyIIEL[yyyIIIEL[yyyRSTopNp.noderef->prodNum] + in yyySolveAndSignal()
661 yyySignalEnts(yyyRSTopNp.noderef, in yyySolveAndSignal()
1210 gnpDum->parent.noderef = (*yyyOxStackItem)->node; in yyyGenIntNode()
1704 prodNum = np->parent.noderef->prodNum; in yyyCheckNodeInstancesSolved()
1729 yyyShowProd(np->parent.noderef->prodNum); in yyyCheckNodeInstancesSolved()
/freebsd/contrib/llvm-project/clang/include/clang/Basic/
H A DAttrDocs.td6060 The ``noderef`` attribute causes clang to diagnose dereferences of annotated pointer types.
6067 int __attribute__((noderef)) *p;
6070 int __attribute__((noderef)) **p2;
6073 int * __attribute__((noderef)) *p3;
6079 struct S __attribute__((noderef)) *s;
6089 int __attribute__((noderef)) *p;
6096 struct S __attribute__((noderef)) *s;
6100 ``noderef`` is currently only supported for pointers and arrays and not usable
6106 …int __attribute__((noderef)) &y = x; // warning: 'noderef' can only be used on an array or pointe…
6110 …id __attribute__((noderef)) obj = [NSObject new]; // warning: 'noderef' can only be used on an arr…
H A DDiagnosticGroups.td1473 def NoDeref : DiagGroup<"noderef">;
H A DAttr.td2882 let Spellings = [Clang<"noderef">];
H A DDiagnosticSemaKinds.td12154 "dereferencing %0; was declared with a 'noderef' type">, InGroup<NoDeref>;
12156 "dereferencing expression marked as 'noderef'">, InGroup<NoDeref>;
12158 "'noderef' can only be used on an array or pointer type">, InGroup<IgnoredAttributes>;
12160 "casting to dereferenceable pointer removes 'noderef' attribute">, InGroup<NoDeref>;