HomeSort by relevance Sort by last modified time
    Searched refs:NumStr (Results 1 - 25 of 46) sorted by null

1 2

  /external/swiftshader/third_party/LLVM/examples/Kaleidoscope/Chapter2/
toy.cpp 45 std::string NumStr;
47 NumStr += LastChar;
51 NumVal = strtod(NumStr.c_str(), 0);
  /external/swiftshader/third_party/llvm-7.0/llvm/examples/Kaleidoscope/Chapter2/
toy.cpp 53 std::string NumStr;
55 NumStr += LastChar;
59 NumVal = strtod(NumStr.c_str(), nullptr);
  /external/swiftshader/third_party/llvm-7.0/llvm/lib/Support/
CachePruning.cpp 42 StringRef NumStr = Duration.slice(0, Duration.size()-1);
44 if (NumStr.getAsInteger(0, Num))
45 return make_error<StringError>("'" + NumStr + "' not an integer",
  /external/llvm/examples/Kaleidoscope/Chapter2/
toy.cpp 63 std::string NumStr;
65 NumStr += LastChar;
69 NumVal = strtod(NumStr.c_str(), nullptr);
  /external/swiftshader/third_party/LLVM/examples/Kaleidoscope/Chapter3/
toy.cpp 50 std::string NumStr;
52 NumStr += LastChar;
56 NumVal = strtod(NumStr.c_str(), 0);
  /external/llvm/examples/Kaleidoscope/Chapter3/
toy.cpp 64 std::string NumStr;
66 NumStr += LastChar;
70 NumVal = strtod(NumStr.c_str(), nullptr);
  /external/llvm/examples/Kaleidoscope/Chapter4/
toy.cpp 73 std::string NumStr;
75 NumStr += LastChar;
79 NumVal = strtod(NumStr.c_str(), nullptr);
  /external/swiftshader/third_party/LLVM/examples/Kaleidoscope/Chapter4/
toy.cpp 57 std::string NumStr;
59 NumStr += LastChar;
63 NumVal = strtod(NumStr.c_str(), 0);
  /external/swiftshader/third_party/llvm-7.0/llvm/examples/Kaleidoscope/Chapter3/
toy.cpp 65 std::string NumStr;
67 NumStr += LastChar;
71 NumVal = strtod(NumStr.c_str(), nullptr);
  /external/swiftshader/third_party/llvm-7.0/llvm/examples/Kaleidoscope/Chapter4/
toy.cpp 75 std::string NumStr;
77 NumStr += LastChar;
81 NumVal = strtod(NumStr.c_str(), nullptr);
  /external/llvm/examples/Kaleidoscope/Chapter5/
toy.cpp 91 std::string NumStr;
93 NumStr += LastChar;
97 NumVal = strtod(NumStr.c_str(), nullptr);
  /external/swiftshader/third_party/LLVM/examples/Kaleidoscope/Chapter5/
toy.cpp 66 std::string NumStr;
68 NumStr += LastChar;
72 NumVal = strtod(NumStr.c_str(), 0);
  /external/swiftshader/third_party/LLVM/examples/Kaleidoscope/Chapter6/
toy.cpp 71 std::string NumStr;
73 NumStr += LastChar;
77 NumVal = strtod(NumStr.c_str(), 0);
  /external/swiftshader/third_party/llvm-7.0/llvm/examples/Kaleidoscope/Chapter5/
toy.cpp 93 std::string NumStr;
95 NumStr += LastChar;
99 NumVal = strtod(NumStr.c_str(), nullptr);
  /external/llvm/examples/Kaleidoscope/BuildingAJIT/Chapter1/
toy.cpp 105 std::string NumStr;
107 NumStr += LastChar;
111 NumVal = strtod(NumStr.c_str(), nullptr);
    [all...]
  /external/llvm/examples/Kaleidoscope/BuildingAJIT/Chapter2/
toy.cpp 105 std::string NumStr;
107 NumStr += LastChar;
111 NumVal = strtod(NumStr.c_str(), nullptr);
    [all...]
  /external/llvm/examples/Kaleidoscope/BuildingAJIT/Chapter3/
toy.cpp 105 std::string NumStr;
107 NumStr += LastChar;
111 NumVal = strtod(NumStr.c_str(), nullptr);
    [all...]
  /external/llvm/examples/Kaleidoscope/BuildingAJIT/Chapter4/
toy.cpp 106 std::string NumStr;
108 NumStr += LastChar;
112 NumVal = strtod(NumStr.c_str(), nullptr);
    [all...]
  /external/llvm/examples/Kaleidoscope/BuildingAJIT/Chapter5/
toy.cpp 121 std::string NumStr;
123 NumStr += LastChar;
127 NumVal = strtod(NumStr.c_str(), nullptr);
    [all...]
  /external/llvm/examples/Kaleidoscope/Chapter6/
toy.cpp 99 std::string NumStr;
101 NumStr += LastChar;
105 NumVal = strtod(NumStr.c_str(), nullptr);
  /external/llvm/examples/Kaleidoscope/Chapter7/
toy.cpp 105 std::string NumStr;
107 NumStr += LastChar;
111 NumVal = strtod(NumStr.c_str(), nullptr);
    [all...]
  /external/llvm/examples/Kaleidoscope/Chapter8/
toy.cpp 102 std::string NumStr;
104 NumStr += LastChar;
108 NumVal = strtod(NumStr.c_str(), nullptr);
    [all...]
  /external/llvm/examples/Kaleidoscope/MCJIT/cached/
toy-jit.cpp 93 std::string NumStr;
95 NumStr += LastChar;
99 NumVal = strtod(NumStr.c_str(), 0);
    [all...]
  /external/llvm/examples/Kaleidoscope/MCJIT/initial/
toy.cpp 77 std::string NumStr;
79 NumStr += LastChar;
83 NumVal = strtod(NumStr.c_str(), 0);
    [all...]
  /external/llvm/examples/Kaleidoscope/MCJIT/lazy/
toy-jit.cpp 78 std::string NumStr;
80 NumStr += LastChar;
84 NumVal = strtod(NumStr.c_str(), 0);
    [all...]

Completed in 4618 milliseconds

1 2