Lines Matching defs:base
5 #include "base/files/file_util.h"
25 #include "base/command_line.h"
26 #include "base/containers/stack.h"
27 #include "base/environment.h"
28 #include "base/files/file_enumerator.h"
29 #include "base/files/file_path.h"
30 #include "base/files/scoped_file.h"
31 #include "base/logging.h"
32 #include "base/posix/eintr_wrapper.h"
33 #include "base/stl_util.h"
34 #include "base/strings/string_split.h"
35 #include "base/strings/string_util.h"
36 #include "base/strings/stringprintf.h"
37 #include "base/strings/utf_string_conversions.h"
58 namespace base {
614 bool VerifyPathControlledByUser(const FilePath& base,
618 if (base != path && !base.IsParent(path)) {
619 DLOG(ERROR) << "|base| must be a subdirectory of |path|. base = \""
620 << base.value() << "\", path = \"" << path.value() << "\"";
627 base.GetComponents(&base_components);
633 // |base| must be a subpath of |path|, so all components should match.
634 // If these CHECKs fail, look at the test that base is a parent of
640 FilePath current_path = base;
698 } // namespace base