Searched refs:v8_root (Results 1 - 9 of 9) sorted by relevance
/third_party/node/deps/v8/ |
H A D | .ycm_extra_conf.py | 77 def GetClangCommandFromNinjaForFilename(v8_root, filename): 84 v8_root: (String) Path to v8/. 90 if not v8_root: 95 v8_flags = ['-I' + os.path.join(v8_root)] 115 filename = os.path.join(v8_root, 'src', 'utils', 'utils.cc') 117 sys.path.append(os.path.join(v8_root, 'tools', 'vim')) 119 out_dir = os.path.realpath(GetNinjaOutputDirectory(v8_root)) 176 v8_root = FindV8SrcFromFilename(filename) 177 v8_flags = GetClangCommandFromNinjaForFilename(v8_root, filename)
|
/third_party/node/deps/v8/tools/jsfunfuzz/ |
H A D | fuzz-harness.sh | 15 v8_root=$(readlink -f $(dirname $BASH_SOURCE)/../../) 16 jsfunfuzz_dir="$v8_root/tools/jsfunfuzz" 20 d8="${v8_root}/$1" 22 d8="${v8_root}/d8" 35 jsfunfuzz_file="$v8_root/tools/jsfunfuzz.zip" 51 cat << EOF | patch -s -p0 -d "$v8_root"
|
/third_party/node/deps/v8/tools/vim/ |
H A D | ninja_output.py | 18 def GetNinjaOutputDirectory(v8_root, configuration=None): 19 """Returns <v8_root>/<output_dir>/(Release|Debug|<other>). 31 os.path.isdir(os.path.join(v8_root, name_value[1]))): 36 return os.path.join(os.path.join(v8_root, output_dir), configuration) 39 for f in os.listdir(v8_root): 41 if os.path.isdir(os.path.join(v8_root, f)): 46 out_path = os.path.join(v8_root, out_dir)
|
H A D | ninja-build.vim | 47 """Returns <v8_root>/<output_dir>/(Release|Debug).""" 49 v8_root = path_to_source_root() 50 sys.path.append(os.path.join(v8_root, 'tools', 'vim')) 52 return GetNinjaOutputDirectory(v8_root, configuration)
|
/third_party/node/deps/v8/src/torque/ |
H A D | torque.cc | 34 options.v8_root = std::string(argv[++i]); in WrappedMain() 50 argument.substr(0, options.v8_root.size()) == options.v8_root) { in WrappedMain() 51 argument = argument.substr(options.v8_root.size() + 1); in WrappedMain()
|
H A D | torque-compiler.cc | 118 SourceFileMap::Scope source_map_scope(options.v8_root); in CompileTorque() 143 SourceFileMap::Scope source_map_scope(options.v8_root); in CompileTorque() 170 SourceFileMap::Scope source_map_scope(options.v8_root); in CompileTorqueForKythe()
|
H A D | source-positions.h | 91 explicit SourceFileMap(std::string v8_root) : v8_root_(std::move(v8_root)) {} in SourceFileMap() argument
|
H A D | torque-compiler.h | 21 std::string v8_root = ""; member
|
/third_party/node/deps/v8/tools/ |
H A D | android-run.py | 94 v8_root = "/data/local/tmp/v8" 95 android_workspace = os.getenv("ANDROID_V8", v8_root) 106 "adb shell 'cd %s && sh %s';" % (v8_root, android_script_file) +
|
Completed in 3 milliseconds