Lines Matching refs:base
13 #include "src/base/functional.h"
14 #include "src/base/logging.h"
15 #include "src/base/platform/platform.h"
16 #include "src/base/platform/wrappers.h"
17 #include "src/base/strings.h"
27 base::hash<int> h;
38 base::OS::VPrint(format, arguments);
45 base::OS::VFPrint(out, format, arguments);
50 base::OS::Print("[%d] ", base::OS::GetCurrentProcessId());
53 base::OS::VPrint(format, arguments);
58 base::OS::Print("[%d:%p] ", base::OS::GetCurrentProcessId(), isolate);
61 base::OS::VPrint(format, arguments);
120 base::OS::PrintError("Cannot read from file %s.\n", filename);
134 base::Fclose(file);
146 FILE* file = base::OS::FOpen(filename, "rb");
148 if (file != nullptr) base::Fclose(file);
185 FILE* f = base::OS::FOpen(filename, "wb");
188 base::OS::PrintError("Cannot open file %s for writing.\n", filename);
193 base::Fclose(f);
234 bool PassesFilter(base::Vector<const char> name,
235 base::Vector<const char> filter) {