HomeSort by: relevance | last modified time | path
    Searched refs:_body (Results 1 - 25 of 25) sorted by relevancy

  /src/external/gpl3/gcc.old/dist/gcc/d/dmd/
statement_rewrite_walker.d 86 if (s._body)
87 visitStmt(s._body);
92 if (s._body)
93 visitStmt(s._body);
100 if (s._body)
101 visitStmt(s._body);
106 if (s._body)
107 visitStmt(s._body);
112 if (s._body)
113 visitStmt(s._body);
    [all...]
sapply.d 92 doCond(s._body) || applyTo(s);
97 doCond(s._body) || applyTo(s);
102 doCond(s._init) || doCond(s._body) || applyTo(s);
107 doCond(s._body) || applyTo(s);
112 doCond(s._body) || applyTo(s);
122 doCond(s._body) || applyTo(s);
127 doCond(s._body) || applyTo(s);
142 doCond(s._body) || applyTo(s);
147 doCond(s._body) || applyTo(s);
152 if (doCond(s._body))
    [all...]
statement.d 788 Statement _body;
791 extern (D) this(const ref Loc loc, Expression condition, Statement _body, Loc endloc, Parameter param = null)
795 this._body = _body;
804 _body ? _body.syntaxCopy() : null,
829 Statement _body;
833 extern (D) this(const ref Loc loc, Statement _body, Expression condition, Loc endloc)
836 this._body = _body;
    [all...]
blockexit.d 206 if (s._body)
208 result = blockExit(s._body, func, mustNotThrow);
250 if (s._body)
252 int r = blockExit(s._body, func, mustNotThrow);
266 if (s._body)
267 result |= blockExit(s._body, func, mustNotThrow) & ~(BE.break_ | BE.continue_);
321 if (s._body)
323 result |= blockExit(s._body, func, mustNotThrow);
380 result = blockExit(s._body, func, mustNotThrow);
387 result |= blockExit(s._body, func, mustNotThrow)
    [all...]
foreachvar.d 141 visit(s._body);
151 visit(s._body);
163 visit(s._body);
222 visit(s._body);
227 visit(s._body);
238 visit(s._body);
statement.h 280 Statement *_body; member in class:WhileStatement
293 Statement *_body; member in class:DoStatement
310 Statement *_body; member in class:ForStatement
332 Statement *_body; member in class:ForeachStatement
357 Statement *_body; member in class:ForeachRangeStatement
411 Statement *_body; member in class:PragmaStatement
432 Statement *_body; member in class:SwitchStatement
436 Statement *tryBody; // set to TryCatchStatement or TryFinallyStatement if in _body portion
554 Statement *_body; member in class:SynchronizedStatement
567 Statement *_body; member in class:WithStatement
579 Statement *_body; member in class:TryCatchStatement
612 Statement *_body; member in class:TryFinallyStatement
    [all...]
transitivevisitor.d 116 if (s._body)
117 s._body.accept(this);
123 if (s._body)
124 s._body.accept(this);
137 if (s._body)
138 s._body.accept(this);
148 if (s._body)
149 s._body.accept(this);
159 if (s._body)
160 s._body.accept(this)
    [all...]
statementsem.d 332 Statement _body = new CompoundStatement(Loc.initial, a);
333 _body = new ScopeStatement(Loc.initial, _body, Loc.initial);
350 Statement st = new TryCatchStatement(Loc.initial, _body, catches);
376 auto _body = new CompoundStatement(Loc.initial, a);
377 Statement stf = new TryFinallyStatement(Loc.initial, _body, sfinally);
524 Statement _body = ws._body;
537 _body = new IfStatement(ws.loc, ws.param, ws.condition, ws._body, new BreakStatement(ws.loc, null), ws.endloc)
    [all...]
hdrgen.d 271 if (s._body)
272 s._body.accept(this);
279 if (s._body)
280 s._body.accept(this);
314 if (s._body)
315 s._body.accept(this);
348 if (s._body)
349 s._body.accept(this);
377 if (s._body)
378 s._body.accept(this)
    [all...]
parse.d 708 tk.value == TOK.identifier && tk.ident == Id._body))
715 if (tk.value == TOK.identifier && tk.ident == Id._body)
4417 tk.value == TOK.do_ || tk.value == TOK.identifier && tk.ident == Id._body))
4424 if (tk.value == TOK.identifier && tk.ident == Id._body)
5096 if (token.ident == Id._body)
5418 AST.Statement _body = parseStatement(0, null, &endloc);
5422 AST.Statement _body = null;
5424 auto rangefe = new AST.ForeachRangeStatement(loc, op, p, aggr, upr, _body, endloc);
5444 AST.Statement _body = parseStatement(0, null, &endloc);
5448 AST.Statement _body = null
    [all...]
ob.d 471 visit(s._body, &mystate);
506 visit(s._body, &mystate);
601 visit(s._body, &mystate);
616 visit(s._body, &mystate);
684 visit(s._body, stmtstate);
701 visit(s._body, &mystate);
754 visit(s._body, &bodyState);
cond.d 435 aggrfe ? aggrfe._body : rangefe._body,
cparse.d 386 auto _body = cparseStatement(ParseStatementFlags.scope_, null, &endloc);
387 s = new AST.WhileStatement(loc, condition, _body, endloc, null);
401 auto _body = cparseStatement(ParseStatementFlags.scope_);
407 s = new AST.DoStatement(loc, _body, condition, token.loc);
449 auto _body = cparseStatement(ParseStatementFlags.scope_, null, &endloc);
450 s = new AST.ForStatement(loc, _init, condition, increment, _body, endloc);
486 auto _body = cparseStatement(ParseStatementFlags.scope_);
487 s = new AST.SwitchStatement(loc, condition, _body, false);
dinterpret.d 1138 Expression e = interpret(s._body, istate);
1217 Expression e = interpret(pue, s._body, istate);
1281 Expression e = interpret(s._body, istate);
1331 Expression e = interpret(pue, s._body, istate);
1452 e = interpret(pue, s._body, istate);
1463 Expression e = interpret(s._body, istate);
1557 e = interpret(pue, s._body, istate);
1564 Expression ex = interpret(s._body, istate);
1577 Expression bex = interpret(s._body, &istatex);
1654 result = s._body ? interpret(s._body, istate) : null
    [all...]
func.d 150 replaceCurrent(s._body);
151 s._body.accept(this);
184 Statement s2 = new TryCatchStatement(Loc.initial, s._body, catches);
  /src/external/bsd/atf/dist/atf-c/
macros.h 48 static void atfu_ ## tc ## _body(const atf_tc_t *); \
53 .m_body = atfu_ ## tc ## _body, \
59 static void atfu_ ## tc ## _body(const atf_tc_t *); \
64 .m_body = atfu_ ## tc ## _body, \
70 static void atfu_ ## tc ## _body(const atf_tc_t *); \
76 .m_body = atfu_ ## tc ## _body, \
91 atfu_ ## tc ## _body(const atf_tc_t *tcptr ATF_DEFS_ATTRIBUTE_UNUSED)
94 (atfu_ ## tc ## _body)
  /src/external/bsd/atf/dist/atf-sh/
libatf-sh.subr 72 # named after it: <tc-name>_head and <tc-name>_body, and optionally by
378 # <tc-name>_body. If cleanup is set to 'cleanup', then this also expects
384 eval "${1}_body() { atf_fail 'Test case not implemented'; }"
618 if ${_tcname}_body; then
  /src/external/gpl3/gcc.old/dist/gcc/d/
toir.cc 634 if (s->_body)
637 this->build_stmt (s->_body);
676 if (s->_body)
679 this->build_stmt (s->_body);
854 if (s->_body)
855 this->build_stmt (s->_body);
1159 if (s->_body)
1160 this->build_stmt (s->_body);
1203 if (s->_body)
1204 this->build_stmt (s->_body);
    [all...]
  /src/external/cddl/osnet/dist/lib/libdtrace/common/
dt_parser.h 111 struct dt_node *_body; member in struct:dt_node::__anon9002::__anon9010
151 #define dn_body dn_u._conditional._body
  /src/tests/lib/libc/stdio/
t_fmemopen.c 45 #define ATF_TC_BODY(arg0, arg1) static void arg0##_body()
48 #define ATF_TP_ADD_TC(arg0, arg1) arg1##_head(); arg1##_body()
  /src/external/bsd/zstd/dist/lib/decompress/
huf_decompress.c 105 return fn##_body(dst, dstSize, cSrc, cSrcSize, DTable); \
113 return fn##_body(dst, dstSize, cSrc, cSrcSize, DTable); \
132 return fn##_body(dst, dstSize, cSrc, cSrcSize, DTable); \
  /src/crypto/external/apache2/openssl/dist/crypto/ec/asm/
ecp_nistz256-x86_64.pl 3274 .Lpoint_double${x}_body:
3525 .Lpoint_add${x}_body:
3905 .Ladd_affine${x}_body:
  /src/crypto/external/bsd/openssl/dist/crypto/ec/asm/
ecp_nistz256-x86_64.pl 3272 .Lpoint_double${x}_body:
3523 .Lpoint_add${x}_body:
3903 .Ladd_affine${x}_body:
  /src/crypto/external/bsd/openssl.old/dist/crypto/ec/asm/
ecp_nistz256-x86_64.pl 3270 .Lpoint_double${x}_body:
3521 .Lpoint_add${x}_body:
3901 .Ladd_affine${x}_body:
  /src/crypto/external/apache2/openssl/dist/test/
quic_record_test.c 91 RX_OP_CHECK_PKT(rx_script_##n##_expect_hdr, rx_script_##n##_body)

Completed in 98 milliseconds