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

1 2 3 4 5

  /src/external/bsd/am-utils/dist/
cvs-server.txt 5 public/private key pair using ssh-keygen(1). Then copy the key into
7 login access on cvs.am-utils.org, then email
10 (2) Then, check out a fresh copy of 6.2 (development branch)
23 (3) Then you can do normal edit, commit, update, etc. without having to
  /src/external/apache2/llvm/dist/llvm/lib/Target/ARM/Utils/
ARMBaseInfo.h 91 Then,
101 /// a then.
125 // e.g ExpandPredBlockMask(T, Then) = TT, ExpandPredBlockMask(TT, Else) = TTE,
133 case ARMVCC::Then: return "t";
141 .Case("t", ARMVCC::Then)
ARMBaseInfo.cpp 26 return Kind == ARMVCC::Then ? AddedThen : AddedElse;
  /src/external/gpl3/gdb/dist/sim/testsuite/bfin/
c_logi2op_log_l_shft_astat.S 17 # Then test when ASTAT starts with all bits set
c_logi2op_log_r_shft_astat.S 17 # Then test when ASTAT starts with all bits set
  /src/external/gpl3/gdb.old/dist/sim/testsuite/bfin/
c_logi2op_log_l_shft_astat.S 17 # Then test when ASTAT starts with all bits set
c_logi2op_log_r_shft_astat.S 17 # Then test when ASTAT starts with all bits set
  /src/external/gpl2/grep/
grep2netbsd 74 Then run configure, make, merge the config.h file and the gmo files in the po
  /src/external/apache2/llvm/dist/llvm/lib/Target/ARM/
MVEVPTBlockPass.cpp 150 // Given an iterator (Iter) that points at an instruction with a "Then"
162 assert(getVPTInstrPredicate(*Iter) == ARMVCC::Then &&
226 (CurrentPredicate == ARMVCC::Then ? ARMVCC::Else : ARMVCC::Then);
245 // The idea of the predicate is that None, Then and Else are for use when
  /src/sys/arch/m68k/m68k/
switch_subr.s 105 jeq .Lcpu_switch_nofpsave | No Then don't attempt save.
176 jeq .Lcpu_switch_nofprest | No Then don't attempt restore.
228 jeq .Lsavectx_nofpsave | No? Then don't save state.
356 * and then rei.
  /src/external/apache2/llvm/dist/llvm/examples/Kaleidoscope/BuildingAJIT/Chapter1/
toy.cpp 85 if (IdentifierStr == "then")
206 /// IfExprAST - Expression class for if/then/else.
208 std::unique_ptr<ExprAST> Cond, Then, Else;
211 IfExprAST(std::unique_ptr<ExprAST> Cond, std::unique_ptr<ExprAST> Then,
213 : Cond(std::move(Cond)), Then(std::move(Then)), Else(std::move(Else)) {}
386 /// ifexpr ::= 'if' expression 'then' expression 'else' expression
396 return LogError("expected then");
397 getNextToken(); // eat the then
399 auto Then = ParseExpression()
    [all...]
  /src/external/apache2/llvm/dist/llvm/examples/Kaleidoscope/BuildingAJIT/Chapter2/
toy.cpp 85 if (IdentifierStr == "then")
206 /// IfExprAST - Expression class for if/then/else.
208 std::unique_ptr<ExprAST> Cond, Then, Else;
211 IfExprAST(std::unique_ptr<ExprAST> Cond, std::unique_ptr<ExprAST> Then,
213 : Cond(std::move(Cond)), Then(std::move(Then)), Else(std::move(Else)) {}
386 /// ifexpr ::= 'if' expression 'then' expression 'else' expression
396 return LogError("expected then");
397 getNextToken(); // eat the then
399 auto Then = ParseExpression()
    [all...]
  /src/external/apache2/llvm/dist/llvm/examples/Kaleidoscope/BuildingAJIT/Chapter3/
toy.cpp 85 if (IdentifierStr == "then")
206 /// IfExprAST - Expression class for if/then/else.
208 std::unique_ptr<ExprAST> Cond, Then, Else;
211 IfExprAST(std::unique_ptr<ExprAST> Cond, std::unique_ptr<ExprAST> Then,
213 : Cond(std::move(Cond)), Then(std::move(Then)), Else(std::move(Else)) {}
386 /// ifexpr ::= 'if' expression 'then' expression 'else' expression
396 return LogError("expected then");
397 getNextToken(); // eat the then
399 auto Then = ParseExpression()
    [all...]
  /src/external/apache2/llvm/dist/llvm/examples/Kaleidoscope/BuildingAJIT/Chapter4/
toy.cpp 85 if (IdentifierStr == "then")
204 /// IfExprAST - Expression class for if/then/else.
206 std::unique_ptr<ExprAST> Cond, Then, Else;
209 IfExprAST(std::unique_ptr<ExprAST> Cond, std::unique_ptr<ExprAST> Then,
211 : Cond(std::move(Cond)), Then(std::move(Then)), Else(std::move(Else)) {}
369 /// ifexpr ::= 'if' expression 'then' expression 'else' expression
379 return LogError("expected then");
380 getNextToken(); // eat the then
382 auto Then = ParseExpression()
    [all...]
  /src/external/apache2/llvm/dist/llvm/examples/Kaleidoscope/Chapter5/
toy.cpp 81 if (IdentifierStr == "then")
183 /// IfExprAST - Expression class for if/then/else.
185 std::unique_ptr<ExprAST> Cond, Then, Else;
188 IfExprAST(std::unique_ptr<ExprAST> Cond, std::unique_ptr<ExprAST> Then,
190 : Cond(std::move(Cond)), Then(std::move(Then)), Else(std::move(Else)) {}
335 /// ifexpr ::= 'if' expression 'then' expression 'else' expression
345 return LogError("expected then");
346 getNextToken(); // eat the then
348 auto Then = ParseExpression()
    [all...]
  /src/external/apache2/llvm/dist/llvm/examples/Kaleidoscope/Chapter6/
toy.cpp 85 if (IdentifierStr == "then")
203 /// IfExprAST - Expression class for if/then/else.
205 std::unique_ptr<ExprAST> Cond, Then, Else;
208 IfExprAST(std::unique_ptr<ExprAST> Cond, std::unique_ptr<ExprAST> Then,
210 : Cond(std::move(Cond)), Then(std::move(Then)), Else(std::move(Else)) {}
369 /// ifexpr ::= 'if' expression 'then' expression 'else' expression
379 return LogError("expected then");
380 getNextToken(); // eat the then
382 auto Then = ParseExpression()
    [all...]
  /src/external/apache2/llvm/dist/llvm/examples/Kaleidoscope/Chapter7/
toy.cpp 90 if (IdentifierStr == "then")
211 /// IfExprAST - Expression class for if/then/else.
213 std::unique_ptr<ExprAST> Cond, Then, Else;
216 IfExprAST(std::unique_ptr<ExprAST> Cond, std::unique_ptr<ExprAST> Then,
218 : Cond(std::move(Cond)), Then(std::move(Then)), Else(std::move(Else)) {}
391 /// ifexpr ::= 'if' expression 'then' expression 'else' expression
401 return LogError("expected then");
402 getNextToken(); // eat the then
404 auto Then = ParseExpression()
    [all...]
  /src/external/apache2/llvm/dist/llvm/examples/Kaleidoscope/Chapter8/
toy.cpp 91 if (IdentifierStr == "then")
212 /// IfExprAST - Expression class for if/then/else.
214 std::unique_ptr<ExprAST> Cond, Then, Else;
217 IfExprAST(std::unique_ptr<ExprAST> Cond, std::unique_ptr<ExprAST> Then,
219 : Cond(std::move(Cond)), Then(std::move(Then)), Else(std::move(Else)) {}
392 /// ifexpr ::= 'if' expression 'then' expression 'else' expression
402 return LogError("expected then");
403 getNextToken(); // eat the then
405 auto Then = ParseExpression()
    [all...]
  /src/external/apache2/llvm/dist/llvm/examples/Kaleidoscope/Chapter9/
toy.cpp 70 return "then";
143 if (IdentifierStr == "then")
293 /// IfExprAST - Expression class for if/then/else.
295 std::unique_ptr<ExprAST> Cond, Then, Else;
299 std::unique_ptr<ExprAST> Then, std::unique_ptr<ExprAST> Else)
300 : ExprAST(Loc), Cond(std::move(Cond)), Then(std::move(Then)),
306 Then->dump(indent(out, ind) << "Then:", ind + 1);
501 /// ifexpr ::= 'if' expression 'then' expression 'else' expressio
    [all...]
  /src/common/dist/zlib/
make_vms.com 26 $ on error then goto err_exit
63 $!!! if axp .or. ia64 then set proc/parse=extended
73 $ then
74 $ If F$Search ("Sys$System:MMS.EXE") .nes. "" Then Make = "MMS"
75 $ If F$Type (MMK) .eqs. "STRING" Then Make = "MMK"
94 $ then
97 $ then
99 $ then
111 $ then
117 $ then
    [all...]
  /src/external/apache2/llvm/dist/llvm/lib/TableGen/
TGLexer.h 52 String, Then, TrueKW,
154 // If EOF is met in an include file, then the method will update
156 // If EOF is met in the top-level file, then the method will
235 // a preprocessing directive word followed by a whitespace, then it returns
247 // by a preprocessing directive. If it is not, then we fall back to
259 // then lexPreprocessor() enters the lines-skipping mode.
312 // is a valid start symbol for an identifier (i.e. [a-zA-Z_]), then
  /src/external/gpl3/binutils/dist/zlib/
make_vms.com 26 $ on error then goto err_exit
63 $!!! if axp .or. ia64 then set proc/parse=extended
73 $ then
74 $ If F$Search ("Sys$System:MMS.EXE") .nes. "" Then Make = "MMS"
75 $ If F$Type (MMK) .eqs. "STRING" Then Make = "MMK"
94 $ then
97 $ then
99 $ then
111 $ then
117 $ then
    [all...]
  /src/external/gpl3/binutils.old/dist/zlib/
make_vms.com 26 $ on error then goto err_exit
63 $!!! if axp .or. ia64 then set proc/parse=extended
73 $ then
74 $ If F$Search ("Sys$System:MMS.EXE") .nes. "" Then Make = "MMS"
75 $ If F$Type (MMK) .eqs. "STRING" Then Make = "MMK"
94 $ then
97 $ then
99 $ then
111 $ then
117 $ then
    [all...]
  /src/external/gpl3/gdb/dist/zlib/
make_vms.com 26 $ on error then goto err_exit
63 $!!! if axp .or. ia64 then set proc/parse=extended
73 $ then
74 $ If F$Search ("Sys$System:MMS.EXE") .nes. "" Then Make = "MMS"
75 $ If F$Type (MMK) .eqs. "STRING" Then Make = "MMK"
94 $ then
97 $ then
99 $ then
111 $ then
117 $ then
    [all...]
  /src/external/gpl3/gdb.old/dist/zlib/
make_vms.com 26 $ on error then goto err_exit
63 $!!! if axp .or. ia64 then set proc/parse=extended
73 $ then
74 $ If F$Search ("Sys$System:MMS.EXE") .nes. "" Then Make = "MMS"
75 $ If F$Type (MMK) .eqs. "STRING" Then Make = "MMK"
94 $ then
97 $ then
99 $ then
111 $ then
117 $ then
    [all...]

Completed in 34 milliseconds

1 2 3 4 5