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

  /src/common/dist/zlib/
make_vms.com 26 $ on error then goto err_exit
131 $ if fname .eqs. "#" then goto AMISS_ERR
135 $ goto find_aconf
152 $ goto aconf_loop
239 $ goto err_exit
242 $ goto err_exit
263 $ If F$Search(P1) .Eqs. "" Then Goto Makeit
268 $ If Argument .Eqs. "" Then Goto Exit
272 $ If File .Eqs. " " Then Goto Endl
277 $ If AFile .Eqs. "" .Or. AFile .Eqs. OFile Then Goto NextE
    [all...]
  /src/external/gpl3/binutils/dist/zlib/
make_vms.com 26 $ on error then goto err_exit
131 $ if fname .eqs. "#" then goto AMISS_ERR
135 $ goto find_aconf
152 $ goto aconf_loop
239 $ goto err_exit
242 $ goto err_exit
263 $ If F$Search(P1) .Eqs. "" Then Goto Makeit
268 $ If Argument .Eqs. "" Then Goto Exit
272 $ If File .Eqs. " " Then Goto Endl
277 $ If AFile .Eqs. "" .Or. AFile .Eqs. OFile Then Goto NextE
    [all...]
  /src/external/gpl3/binutils.old/dist/zlib/
make_vms.com 26 $ on error then goto err_exit
131 $ if fname .eqs. "#" then goto AMISS_ERR
135 $ goto find_aconf
152 $ goto aconf_loop
239 $ goto err_exit
242 $ goto err_exit
263 $ If F$Search(P1) .Eqs. "" Then Goto Makeit
268 $ If Argument .Eqs. "" Then Goto Exit
272 $ If File .Eqs. " " Then Goto Endl
277 $ If AFile .Eqs. "" .Or. AFile .Eqs. OFile Then Goto NextE
    [all...]
  /src/external/gpl3/gdb.old/dist/zlib/
make_vms.com 26 $ on error then goto err_exit
131 $ if fname .eqs. "#" then goto AMISS_ERR
135 $ goto find_aconf
152 $ goto aconf_loop
239 $ goto err_exit
242 $ goto err_exit
263 $ If F$Search(P1) .Eqs. "" Then Goto Makeit
268 $ If Argument .Eqs. "" Then Goto Exit
272 $ If File .Eqs. " " Then Goto Endl
277 $ If AFile .Eqs. "" .Or. AFile .Eqs. OFile Then Goto NextE
    [all...]
  /src/external/gpl3/gdb/dist/zlib/
make_vms.com 26 $ on error then goto err_exit
131 $ if fname .eqs. "#" then goto AMISS_ERR
135 $ goto find_aconf
152 $ goto aconf_loop
239 $ goto err_exit
242 $ goto err_exit
263 $ If F$Search(P1) .Eqs. "" Then Goto Makeit
268 $ If Argument .Eqs. "" Then Goto Exit
272 $ If File .Eqs. " " Then Goto Endl
277 $ If AFile .Eqs. "" .Or. AFile .Eqs. OFile Then Goto NextE
    [all...]
  /src/sys/external/bsd/acpica/dist/compiler/
readme.txt 70 Goto: ControlPanel/System/AdvancedSystemSettings/EnvironmentVariables
  /src/external/gpl3/gcc.old/dist/gcc/d/dmd/
foreachvar.d 286 case STMT.Goto:
astenums.d 375 Goto,
statement.d 247 * `true` if statement 'comes from' somewhere else, like a goto
381 inout(GotoStatement) isGotoStatement() { return stmt == STMT.Goto ? cast(typeof(return))this : null; }
940 ScopeStatements* gotos; // forward referenced goto's go here
1368 Expression exp; // null, or which case to goto
1750 * https://dlang.org/spec/statement.html#goto-statement
1763 super(loc, STMT.Goto);
1789 error("cannot `goto` in to `%s` block", Token.toChars(label.statement.os.tok));
1791 error("cannot `goto` out of `%s` block", Token.toChars(os.tok));
1798 error("cannot `goto` in or out of `finally` block");
1807 error("cannot `goto` into `try` block")
    [all...]
ob.d 138 goto_, /// goto one of the succs[]
150 return obtype == ObType.goto_ ? "goto " :
380 * Doing a goto to dest
500 { /* No conditional, it's a straight goto
736 * 1 goto [2]
739 * 4 goto [8]
823 case STMT.Goto: visitGoto(s.isGotoStatement()); break;
875 * Insert finally block calls when doing a goto from
915 goto case_goto;
926 goto case_goto
    [all...]
  /src/external/apache2/llvm/dist/llvm/lib/CodeGen/
WinEHPrepare.cpp 1218 BranchInst *Goto = cast<BranchInst>(IncomingBlock->getTerminator());
1219 Goto->removeFromParent();
1222 NewBlock->getInstList().push_back(Goto);
1223 Goto->setSuccessor(0, PHIBlock);
  /src/external/apache2/llvm/dist/clang/include/clang/Analysis/Analyses/
ThreadSafetyTIL.h 1345 /// Base class for basic block terminators: Branch, Goto, and Return.
1365 /// A goto instruction is essentially a tail-recursive call into another
1369 class Goto : public Terminator {
1371 Goto(BasicBlock *B, unsigned I)
1373 Goto(const Goto &G, BasicBlock *B, unsigned I)
1394 typename C::CType compare(const Goto *E, C &Cmp) const {
1405 /// Note that unlike Goto, Branch does not have an index. The target blocks
1488 case COP_Goto: return cast<Goto>(this)->successors();
1499 /// instructions. It ends with a Terminator, which is a Branch or Goto t
    [all...]
ThreadSafetyTraverse.h 146 // SExprs of variable arity, such as Phi, Goto, and SCFG.
259 R_SExpr reduceGoto(Goto &Orig, BasicBlock *B) {
875 void printGoto(const Goto *E, StreamType &SS) {
876 SS << "goto ";
  /src/external/apache2/llvm/dist/clang/lib/Analysis/
ThreadSafetyCommon.cpp 910 auto *Tm = new (Arena) til::Goto(BB, Idx);
  /src/external/apache2/llvm/dist/clang/tools/libclang/
CIndex.cpp 6325 if (const GotoStmt *Goto = dyn_cast_or_null<GotoStmt>(S))
6326 if (LabelDecl *label = Goto->getLabel())
7688 goto reprocess;
  /src/external/public-domain/sqlite/dist/
shell.c 3183 ** * For each "Goto", if the jump destination is earlier in the program
3188 ** and "Goto" by 2 spaces.
3202 const char *azGoto[] = { "Goto", 0 };
3632 goto qrf_reinit;
5819 if( zIn==0 ) goto new_from_text_failed;
5821 if( p==0 ) goto new_from_text_failed;
5829 if( p->a==0 ) goto new_from_text_failed;
5881 if( a==0 ) goto new_from_text_failed;
5902 if( a==0 ) goto new_from_text_failed;
5914 if( p->nDigit>SQLITE_DECIMAL_MAX_DIGIT ) goto new_from_text_failed
    [all...]

Completed in 43 milliseconds