Lines Matching defs:in
4 * you may not use this file except in compliance with the License.
9 * Unless required by applicable law or agreed to in writing, software
66 std::fstream in;
69 in.open(path, std::ios_base::in);
70 if (!in.is_open()) {
76 in.seekg(0, std::ios::end);
77 int64_t size = in.tellg();
80 in.close();
84 in.seekg(0, std::ios::beg);
85 jsonBuf = nlohmann::json::parse(in, nullptr, false);
86 in.close();