Home
last modified time | relevance | path

Searched refs:NumStr (Results 1 – 20 of 20) sorted by relevance

/openbsd/gnu/llvm/llvm/examples/Kaleidoscope/Chapter2/
H A Dtoy.cpp52 std::string NumStr; in gettok() local
54 NumStr += LastChar; in gettok()
58 NumVal = strtod(NumStr.c_str(), nullptr); in gettok()
/openbsd/gnu/llvm/llvm/lib/Support/
H A DCachePruning.cpp57 StringRef NumStr = Duration.slice(0, Duration.size()-1); in parseDuration() local
59 if (NumStr.getAsInteger(0, Num)) in parseDuration()
60 return make_error<StringError>("'" + NumStr + "' not an integer", in parseDuration()
/openbsd/gnu/llvm/llvm/examples/Kaleidoscope/Chapter3/
H A Dtoy.cpp65 std::string NumStr; in gettok() local
67 NumStr += LastChar; in gettok()
71 NumVal = strtod(NumStr.c_str(), nullptr); in gettok()
/openbsd/gnu/llvm/llvm/examples/Kaleidoscope/Chapter4/
H A Dtoy.cpp75 std::string NumStr; in gettok() local
77 NumStr += LastChar; in gettok()
81 NumVal = strtod(NumStr.c_str(), nullptr); in gettok()
/openbsd/gnu/llvm/llvm/docs/tutorial/MyFirstLanguageFrontend/
H A DLangImpl01.rst140 std::string NumStr;
142 NumStr += LastChar;
146 NumVal = strtod(NumStr.c_str(), 0);
/openbsd/gnu/llvm/llvm/examples/Kaleidoscope/Chapter5/
H A Dtoy.cpp93 std::string NumStr; in gettok() local
95 NumStr += LastChar; in gettok()
99 NumVal = strtod(NumStr.c_str(), nullptr); in gettok()
/openbsd/gnu/llvm/llvm/examples/Kaleidoscope/MCJIT/cached/
H A Dtoy-jit.cpp93 std::string NumStr; in gettok() local
95 NumStr += LastChar; in gettok()
99 NumVal = strtod(NumStr.c_str(), 0); in gettok()
H A Dtoy.cpp100 std::string NumStr; in gettok() local
102 NumStr += LastChar; in gettok()
106 NumVal = strtod(NumStr.c_str(), 0); in gettok()
/openbsd/gnu/llvm/llvm/examples/Kaleidoscope/MCJIT/lazy/
H A Dtoy-jit.cpp78 std::string NumStr; in gettok() local
80 NumStr += LastChar; in gettok()
84 NumVal = strtod(NumStr.c_str(), 0); in gettok()
H A Dtoy.cpp79 std::string NumStr; in gettok() local
81 NumStr += LastChar; in gettok()
85 NumVal = strtod(NumStr.c_str(), 0); in gettok()
/openbsd/gnu/llvm/llvm/examples/Kaleidoscope/Chapter6/
H A Dtoy.cpp101 std::string NumStr; in gettok() local
103 NumStr += LastChar; in gettok()
107 NumVal = strtod(NumStr.c_str(), nullptr); in gettok()
/openbsd/gnu/llvm/llvm/examples/Kaleidoscope/Chapter7/
H A Dtoy.cpp108 std::string NumStr; in gettok() local
110 NumStr += LastChar; in gettok()
114 NumVal = strtod(NumStr.c_str(), nullptr); in gettok()
/openbsd/gnu/llvm/llvm/examples/Kaleidoscope/Chapter8/
H A Dtoy.cpp108 std::string NumStr; in gettok() local
110 NumStr += LastChar; in gettok()
114 NumVal = strtod(NumStr.c_str(), nullptr); in gettok()
/openbsd/gnu/llvm/llvm/examples/Kaleidoscope/BuildingAJIT/Chapter1/
H A Dtoy.cpp103 std::string NumStr; in gettok() local
105 NumStr += LastChar; in gettok()
109 NumVal = strtod(NumStr.c_str(), nullptr); in gettok()
/openbsd/gnu/llvm/llvm/examples/Kaleidoscope/BuildingAJIT/Chapter2/
H A Dtoy.cpp103 std::string NumStr; in gettok() local
105 NumStr += LastChar; in gettok()
109 NumVal = strtod(NumStr.c_str(), nullptr); in gettok()
/openbsd/gnu/llvm/llvm/examples/Kaleidoscope/BuildingAJIT/Chapter3/
H A Dtoy.cpp103 std::string NumStr; in gettok() local
105 NumStr += LastChar; in gettok()
109 NumVal = strtod(NumStr.c_str(), nullptr); in gettok()
/openbsd/gnu/llvm/llvm/examples/Kaleidoscope/BuildingAJIT/Chapter4/
H A Dtoy.cpp103 std::string NumStr; in gettok() local
105 NumStr += LastChar; in gettok()
109 NumVal = strtod(NumStr.c_str(), nullptr); in gettok()
/openbsd/gnu/llvm/llvm/examples/Kaleidoscope/MCJIT/initial/
H A Dtoy.cpp77 std::string NumStr; in gettok() local
79 NumStr += LastChar; in gettok()
83 NumVal = strtod(NumStr.c_str(), 0); in gettok()
/openbsd/gnu/llvm/llvm/examples/Kaleidoscope/Chapter9/
H A Dtoy.cpp161 std::string NumStr; in gettok() local
163 NumStr += LastChar; in gettok()
167 NumVal = strtod(NumStr.c_str(), nullptr); in gettok()
/openbsd/gnu/llvm/llvm/examples/Kaleidoscope/MCJIT/complete/
H A Dtoy.cpp119 std::string NumStr; in gettok() local
121 NumStr += LastChar; in gettok()
125 NumVal = strtod(NumStr.c_str(), 0); in gettok()