/external/llvm/examples/Kaleidoscope/Chapter2/ |
D | toy.cpp | 24 static double NumVal; // Filled in if tok_number variable 51 NumVal = strtod(NumStr.c_str(), 0); in gettok() 200 ExprAST *Result = new NumberExprAST(NumVal); in ParseNumberExpr()
|
/external/llvm/examples/Kaleidoscope/Chapter6/ |
D | toy.cpp | 43 static double NumVal; // Filled in if tok_number variable 77 NumVal = strtod(NumStr.c_str(), 0); in gettok() 284 ExprAST *Result = new NumberExprAST(NumVal); in ParseNumberExpr() 483 if (NumVal < 1 || NumVal > 100) in ParsePrototype() 485 BinaryPrecedence = (unsigned)NumVal; in ParsePrototype()
|
/external/llvm/examples/Kaleidoscope/Chapter3/ |
D | toy.cpp | 29 static double NumVal; // Filled in if tok_number variable 56 NumVal = strtod(NumStr.c_str(), 0); in gettok() 220 ExprAST *Result = new NumberExprAST(NumVal); in ParseNumberExpr()
|
/external/llvm/examples/Kaleidoscope/Chapter7/ |
D | toy.cpp | 46 static double NumVal; // Filled in if tok_number variable 81 NumVal = strtod(NumStr.c_str(), 0); in gettok() 302 ExprAST *Result = new NumberExprAST(NumVal); in ParseNumberExpr() 548 if (NumVal < 1 || NumVal > 100) in ParsePrototype() 550 BinaryPrecedence = (unsigned)NumVal; in ParsePrototype()
|
/external/llvm/examples/Kaleidoscope/MCJIT/cached/ |
D | toy-jit.cpp | 64 static double NumVal; // Filled in if tok_number variable 99 NumVal = strtod(NumStr.c_str(), 0); in gettok() 320 ExprAST *Result = new NumberExprAST(NumVal); in ParseNumberExpr() 566 if (NumVal < 1 || NumVal > 100) in ParsePrototype() 568 BinaryPrecedence = (unsigned)NumVal; in ParsePrototype()
|
D | toy.cpp | 70 static double NumVal; // Filled in if tok_number variable 105 NumVal = strtod(NumStr.c_str(), 0); in gettok() 326 ExprAST *Result = new NumberExprAST(NumVal); in ParseNumberExpr() 572 if (NumVal < 1 || NumVal > 100) in ParsePrototype() 574 BinaryPrecedence = (unsigned)NumVal; in ParsePrototype()
|
/external/llvm/examples/Kaleidoscope/MCJIT/lazy/ |
D | toy-jit.cpp | 49 static double NumVal; // Filled in if tok_number variable 84 NumVal = strtod(NumStr.c_str(), 0); in gettok() 305 ExprAST *Result = new NumberExprAST(NumVal); in ParseNumberExpr() 551 if (NumVal < 1 || NumVal > 100) in ParsePrototype() 553 BinaryPrecedence = (unsigned)NumVal; in ParsePrototype()
|
D | toy.cpp | 49 static double NumVal; // Filled in if tok_number variable 84 NumVal = strtod(NumStr.c_str(), 0); in gettok() 305 ExprAST *Result = new NumberExprAST(NumVal); in ParseNumberExpr() 551 if (NumVal < 1 || NumVal > 100) in ParsePrototype() 553 BinaryPrecedence = (unsigned)NumVal; in ParsePrototype()
|
/external/llvm/examples/Kaleidoscope/Chapter4/ |
D | toy.cpp | 36 static double NumVal; // Filled in if tok_number variable 63 NumVal = strtod(NumStr.c_str(), 0); in gettok() 227 ExprAST *Result = new NumberExprAST(NumVal); in ParseNumberExpr()
|
/external/llvm/examples/Kaleidoscope/MCJIT/initial/ |
D | toy.cpp | 47 static double NumVal; // Filled in if tok_number variable 82 NumVal = strtod(NumStr.c_str(), 0); in gettok() 303 ExprAST *Result = new NumberExprAST(NumVal); in ParseNumberExpr() 549 if (NumVal < 1 || NumVal > 100) in ParsePrototype() 551 BinaryPrecedence = (unsigned)NumVal; in ParsePrototype()
|
/external/llvm/examples/Kaleidoscope/MCJIT/complete/ |
D | toy.cpp | 94 static double NumVal; // Filled in if tok_number variable 129 NumVal = strtod(NumStr.c_str(), 0); in gettok() 350 ExprAST *Result = new NumberExprAST(NumVal); in ParseNumberExpr() 596 if (NumVal < 1 || NumVal > 100) in ParsePrototype() 598 BinaryPrecedence = (unsigned)NumVal; in ParsePrototype()
|
/external/llvm/examples/Kaleidoscope/Chapter5/ |
D | toy.cpp | 40 static double NumVal; // Filled in if tok_number variable 72 NumVal = strtod(NumStr.c_str(), 0); in gettok() 256 ExprAST *Result = new NumberExprAST(NumVal); in ParseNumberExpr()
|
/external/llvm/docs/tutorial/ |
D | LangImpl1.rst | 172 static double NumVal; // Filled in if tok_number 178 the current token is a numeric literal (like 1.0), ``NumVal`` holds its 231 NumVal = strtod(NumStr.c_str(), 0); 237 convert it to a numeric value that we store in ``NumVal``. Note that
|
D | LangImpl6.rst | 189 if (NumVal < 1 || NumVal > 100) 191 BinaryPrecedence = (unsigned)NumVal;
|
D | LangImpl2.rst | 194 ExprAST *Result = new NumberExprAST(NumVal);
|