HomeSort by relevance Sort by last modified time
    Searched refs:script_dir (Results 1 - 17 of 17) sorted by null

  /external/webkit/Source/ThirdParty/ANGLE/src/compiler/
generate_glslang_lexer.sh 8 script_dir=$(dirname $0)
9 input_file=$script_dir/glslang.l
10 output_file=$script_dir/glslang_lex.cpp
generate_glslang_parser.sh 8 script_dir=$(dirname $0)
9 input_file=$script_dir/glslang.y
10 output_header=$script_dir/glslang_tab.h
11 output_source=$script_dir/glslang_tab.cpp
  /external/webkit/Tools/Scripts/
new-run-webkit-tests 40 script_dir = os.path.dirname(os.path.abspath(__file__)) variable
43 if script_dir not in env['PYTHONPATH']:
47 env['PYTHONPATH'] = env['PYTHONPATH'] + env_separator + script_dir
49 env['PYTHONPATH'] = script_dir
50 module_path = os.path.join(script_dir, 'webkitpy', 'layout_tests', 'run_webkit_tests.py')
  /external/webkit/Source/WebKit/chromium/
gyp_webkit 38 script_dir = os.path.dirname(__file__) variable
40 sys.path.append(os.path.join(script_dir, 'tools', 'gyp', 'pylib'))
63 AddInclude(os.path.join(script_dir, 'build', 'common.gypi'))
66 supplements = glob.glob(os.path.join(script_dir, '*', 'supplement.gypi'))
  /external/webkit/Tools/wx/packaging/
build-debian-installer.py 11 script_dir = os.path.abspath(os.path.dirname(__file__)) variable
12 wxwebkit_dir = os.path.abspath(os.path.join(script_dir, "..", "..", "..", "WebKitBuild", "Debug" + build_utils.git_branch_name()))
13 wxwk_root = os.path.abspath(os.path.join(script_dir, "..", "..", ".."))
29 shutil.copytree(os.path.join(script_dir, 'debian'), os.path.join(src_root, 'debian'))
build-win-installer.py 36 script_dir = os.path.abspath(os.path.dirname(__file__)) variable
37 sys.path.append(os.path.abspath(os.path.join(script_dir, "..", "build")))
41 wxwk_root = os.path.abspath(os.path.join(script_dir, "..", "..", ".."))
build-mac-installer.py 39 script_dir = os.path.abspath(os.path.dirname(__file__)) variable
40 sys.path.append(os.path.abspath(os.path.join(script_dir, "..", "build")))
46 wxwk_root = os.path.abspath(os.path.join(script_dir, "..", "..", ".."))
  /external/chromium/chrome/browser/extensions/
user_script_master.h 31 explicit UserScriptMaster(const FilePath& script_dir, Profile* profile);
78 static void LoadScriptsFromDirectory(const FilePath& script_dir,
85 void StartScan(const FilePath& script_dir,
113 void RunScan(const FilePath script_dir, UserScriptList lone_scripts);
user_script_master.cc 136 const FilePath& script_dir, const UserScriptList& lone_scripts) {
143 this, &UserScriptMaster::ScriptReloader::RunScan, script_dir,
182 const FilePath& script_dir, UserScriptList* result) {
183 // Clear the list. We will populate it with the scripts found in script_dir.
186 // Find all the scripts in |script_dir|.
187 if (!script_dir.value().empty()) {
189 if (!file_util::DirectoryExists(script_dir))
190 file_util::CreateDirectory(script_dir);
192 file_util::FileEnumerator enumerator(script_dir, false,
208 script_dir, file.BaseName(), url))
    [all...]
  /external/webkit/Tools/Scripts/webkitpy/layout_tests/port/
config_standalone.py 43 script_dir = up(up(up(this_dir))) variable
44 if script_dir not in sys.path:
45 sys.path.append(script_dir)
  /external/markdown/
setup.py 16 script_dir = os.path.join(sys.prefix, 'Scripts')
17 script_path = os.path.join(script_dir, 'markdown')
  /external/chromium/build/
gyp_chromium 16 script_dir = os.path.dirname(__file__) variable
17 chrome_src = os.path.abspath(os.path.join(script_dir, os.pardir))
88 AddInclude(os.path.join(script_dir, 'common.gypi'))
89 AddInclude(os.path.join(script_dir, 'features_override.gypi'))
141 args.append(os.path.join(script_dir, 'all.gyp'))
  /external/v8/build/
gyp_v8 38 script_dir = os.path.dirname(__file__) variable
39 v8_root = os.path.normpath(os.path.join(script_dir, os.pardir))
96 AddInclude(os.path.join(script_dir, 'standalone.gypi'))
138 args.append(os.path.join(script_dir, 'all.gyp'))
  /external/chromium-trace/
systrace.py 104 script_dir = os.path.dirname(os.path.abspath(sys.argv[0]))
107 css = '\n'.join(linked_css_tag % (os.path.join(script_dir, f)) for f in config.css_in_files)
108 js = '\n'.join(linked_js_tag % (os.path.join(script_dir, f)) for f in config.js_in_files)
110 css_filename = os.path.join(script_dir, config.css_out_file)
111 js_filename = os.path.join(script_dir, config.js_out_file)
  /external/ipsec-tools/src/racoon/
remoteconf.c 639 char *script_dir; local
646 script_dir = lcconf->pathinfo[LC_PATHTYPE_SCRIPT];
649 if ((path->v[0] != '/') && (script_dir != NULL)) {
650 len = strlen(script_dir) + sizeof("/") + path->l + 1;
659 (void)strlcat(new_path->v, script_dir, len);
  /frameworks/base/tests/DumpRenderTree/assets/
run_layout_tests.py 284 script_dir = os.path.dirname(script_self)
285 ref_dir = os.path.join(script_dir, "results")
  /external/chromium/chrome/browser/profiles/
profile_impl.cc 420 FilePath script_dir; // Don't look for user scripts in any directory. local
423 user_script_master_ = new UserScriptMaster(script_dir, this);
    [all...]

Completed in 1062 milliseconds