Home
last modified time | relevance | path

Searched refs:invalid_path (Results 1 – 9 of 9) sorted by relevance

/external/llvm-project/lldb/test/API/functionalities/source-map/
DTestTargetSourceMap.py47 invalid_path = src_dir + "invalid_path"
53 % (invalid_path, src_dir, invalid_path2, valid_path),
55 'error: the replacement path doesn\'t exist: "%s"' % (invalid_path),
72 'settings replace target.source-map 0 . "%s" . "%s"' % (invalid_path, valid_path2),
74 'error: the replacement path doesn\'t exist: "%s"' % (invalid_path),
96 % (invalid_path, invalid_path2, src_dir),
98 'error: the replacement path doesn\'t exist: "%s"' % (invalid_path),
121 … 'settings append target.source-map . "%s" . "%s" . "%s"' % (invalid_path, src_dir, invalid_path2),
123 'error: the replacement path doesn\'t exist: "%s"' % (invalid_path),
/external/llvm-project/lldb/test/API/commands/log/invalid-args/
DTestInvalidArgsLog.py21 invalid_path = os.path.join("this", "is", "not", "a", "valid", "path")
22 self.expect("log enable lldb all -f " + invalid_path, error=True,
23 substrs=["Unable to open log file '" + invalid_path + "': ", "\n"])
/external/libchrome/base/android/
Dcontent_uri_utils_unittest.cc33 FilePath invalid_path("content://foo.bar"); in TEST() local
34 mime = GetContentUriMimeType(invalid_path); in TEST()
/external/llvm/lib/DebugInfo/PDB/DIA/
DDIASession.cpp32 return make_error<GenericError>(generic_error_code::invalid_path); in ErrorFromHResult()
91 return make_error<GenericError>(generic_error_code::invalid_path); in createFromPdb()
116 return make_error<GenericError>(generic_error_code::invalid_path, Path); in createFromExe()
/external/llvm/include/llvm/DebugInfo/PDB/
DGenericError.h19 invalid_path = 1, enumerator
/external/llvm/lib/DebugInfo/PDB/
DGenericError.cpp34 case generic_error_code::invalid_path: in message()
/external/llvm/lib/DebugInfo/PDB/Raw/
DRawSession.cpp55 return llvm::make_error<GenericError>(generic_error_code::invalid_path); in createFromPdb()
/external/llvm/tools/llvm-pdbdump/
Dllvm-pdbdump.cpp305 ExitOnErr(make_error<GenericError>(generic_error_code::invalid_path, Path)); in yamlToPdb()
320 ExitOnErr(make_error<GenericError>(generic_error_code::invalid_path, in yamlToPdb()
/external/libchrome/base/files/
Dfile_util_unittest.cc2529 FilePath invalid_path = in TEST_F() local
2532 EXPECT_FALSE(CreateDirectory(invalid_path)); in TEST_F()