/external/clang/test/Preprocessor/ |
c99-6_10_3_3_p4.c | 6 #define join(c, d) in_between(c hash_hash d) macro 7 char p[] = join(x, y);
|
macro_paste_hashhash.c | 5 #define join(c, d) in_between(c hash_hash d) macro 7 join(x, y);
|
/external/webkit/Tools/DumpRenderTree/ |
wscript | 33 os.path.join(output_dir), 34 os.path.join(wk_root, 'Source', 'JavaScriptCore'), 35 os.path.join(wk_root, 'Source', 'WebCore'), 36 os.path.join(wk_root, 'Source', 'WebCore', 'bindings', 'wx'), 37 os.path.join(wk_root, 'Source', 'WebKit', 'wx'), 58 includes = ' '.join(include_paths),
|
/external/webkit/Source/WebKit/wx/bindings/python/ |
wscript | 33 os.path.join(wk_root, 'Source', 'JavaScriptCore'), 34 os.path.join(wk_root, 'Source', 'WebCore', 'bindings', 'cpp'), 35 os.path.join(wk_root, 'Source', 'WebCore', 'DerivedSources'), 36 os.path.join(wk_root, 'Source', 'WebKit', 'wx'), 37 os.path.join(wx_root, 'wxPython', 'include'), 38 os.path.join(wx_root, '..', 'wxPython', 'include'), 51 fullpath = os.path.join(wx_root, adir) 83 includes = ' '.join(include_paths), 85 swig_flags = ' '.join(wx_swig_args),
|
/external/webkit/Source/WebKit/wx/ |
wscript | 33 os.path.join(wk_root, 'Source', 'JavaScriptCore'), 34 os.path.join(wk_root, 'Source', 'WebCore'), 35 os.path.join(wk_root, 'Source', 'WebCore', 'bindings', 'wx'), 36 os.path.join(wk_root, 'Source', 'WebCore', 'DerivedSources'), 37 os.path.join(output_dir), 38 os.path.join(wk_root, 'Source', 'WebCore', 'page', 'wx'), 39 os.path.join(wk_root, 'Source', 'WebCore', 'platform', 'network', 'curl'), 40 os.path.join(wk_root, 'Source', 'WebCore', 'platform', 'wx'), 41 os.path.join(wk_root, 'Source', 'WebCore', 'platform', 'bridge', 'wx'), 42 os.path.join(wk_root, 'Source', 'WebCore', 'platform', 'graphics', 'wx') [all...] |
/external/llvm/utils/llvm-lit/ |
llvm-lit.in | 11 sys.path.append(os.path.join(llvm_source_root, 'utils', 'lit')) 18 'llvm_site_config' : os.path.join(llvm_obj_root, 'test', 'lit.site.cfg') 21 clang_site_config = os.path.join(llvm_obj_root, 'tools', 'clang', 'test', 'lit.site.cfg')
|
/external/webkit/Tools/Scripts/ |
rebaseline-chromium-webkit-tests | 35 webkitpy_directory = os.path.join(scripts_directory, "webkitpy") 36 sys.path.append(os.path.join(webkitpy_directory, "layout_tests")) 39 sys.path.append(os.path.join(webkitpy_directory, "thirdparty"))
|
/external/llvm/utils/lit/lit/ |
__init__.py | 8 __version__ = '.'.join(map(str, __versioninfo__)) + 'dev'
|
/sdk/eclipse/plugins/com.android.ide.eclipse.tests/unittests/com/android/ide/common/layout/ |
BaseViewRuleTest.java | 37 assertEquals("foo", BaseViewRule.join('|', Arrays.asList("foo"))); 38 assertEquals("", BaseViewRule.join('|', Collections.<String>emptyList())); 39 assertEquals("foo,bar", BaseViewRule.join(',', Arrays.asList("foo", "bar"))); 40 assertEquals("foo|bar", BaseViewRule.join('|', Arrays.asList("foo", "bar")));
|
/external/v8/test/mjsunit/ |
array-join.js | 28 // Test that array join calls toString on subarrays. 30 assertEquals('1,2345,6', a.join('')); 31 assertEquals('1,2*3*4*5,6', a.join('*')); 32 assertEquals('1,2**3**4**5,6', a.join('**')); 33 assertEquals('1,2****3****4****5,6', a.join('****')); 34 assertEquals('1,2********3********4********5,6', a.join('********')); 35 assertEquals('1,2**********3**********4**********5,6', a.join('**********')); 39 assertEquals('1,2345,6', a.join('')); 40 assertEquals('1,2*3*4*5,6*', a.join('*')); 41 assertEquals('1,2**3**4**5,6**', a.join('**')); [all...] |
/external/webkit/Tools/wx/packaging/ |
build-debian-installer.py | 7 sys.path.append(os.path.abspath(os.path.join(os.path.dirname(__file__), "..", "build"))) 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, "..", "..", "..")) 17 deb_dir = os.path.join(wxwk_root, 'wxwebkit') 23 src_root = os.path.join(deb_dir, 'webkitwx-0.1') 29 shutil.copytree(os.path.join(script_dir, 'debian'), os.path.join(src_root, 'debian')) 36 shutil.rmtree(os.path.join(src_root, 'debian'))
|
/dalvik/tests/078-polymorphic-virtual/src/ |
Main.java | 28 derived1.join(); 29 derived2.join(); 30 derived3.join();
|
/external/clang/bindings/python/tests/cindex/ |
test_index.py | 4 kInputsDir = os.path.join(os.path.dirname(__file__), 'INPUTS') 14 tu = index.parse(os.path.join(kInputsDir, 'hello.cpp'))
|
/external/webkit/Source/WebCore/platform/graphics/ |
GraphicsTypes.cpp | 94 bool parseLineJoin(const String& s, LineJoin& join) 97 join = MiterJoin; 101 join = RoundJoin; 105 join = BevelJoin; 111 String lineJoinName(LineJoin join) 113 ASSERT(join >= 0); 114 ASSERT(join < 3); 116 return names[join];
|
/external/webkit/Tools/Scripts/webkitpy/tool/ |
grammar.py | 53 return only_two_separator.join(list_of_strings) 54 return "%s%s%s" % (separator.join(list_of_strings[:-1]), last_separator, list_of_strings[-1])
|
/external/webkit/Tools/wx/browser/ |
wscript | 32 include_paths = [os.path.join(wk_root, 'Source', 'WebCore', 'bindings', 'wx'), 33 os.path.join(wk_root, 'Source', 'WebKit', 'wx')] 46 includes = ' '.join(include_paths),
|
/frameworks/base/tests/DumpRenderTree2/assets/ |
run_apache2.py | 42 tmp_WebKit = os.path.join("/tmp", "WebKit") 50 android_tree_root = os.path.join(script_location, parent, parent, parent, parent, parent) 54 webkit_path = os.path.join("external", "webkit") 57 layout_tests_path = os.path.normpath(os.path.join(os.getcwd(), options.tests_root_directory)) 59 layout_tests_path = os.path.join(webkit_path, "LayoutTests") 60 http_conf_path = os.path.join(layout_tests_path, "http", "conf") 63 envvars_path = os.path.join("/etc", "apache2", "envvars") 66 error_log_path = os.path.join(tmp_WebKit, "apache2-error.log") 67 custom_log_path = os.path.join(tmp_WebKit, "apache2-access.log") 80 directives += " -c \"DocumentRoot " + os.path.join(layout_tests_path, "http", "tests/") + "\" [all...] |
/docs/source.android.com/scripts/ |
build.py | 38 t += open(os.path.join(TEMPLATE_DIR, f), 'r').read() 54 outdir = os.path.join(*outdir) 57 os.mkdir(os.path.join(outdir, subdir)) 66 sidebar = markdown(os.path.join(curdir, 'sidebar.md')) 72 sidebar2 = markdown(os.path.join(curdir, 'sidebar2.md')) 82 main = markdown(os.path.join(curdir, f)) 84 category=category, title=get_title(os.path.join(curdir, f))) 86 html = file(os.path.join(outdir, f.replace('.md', '.html')), 'w') 89 shutil.copy(os.path.join(curdir, f), os.path.join(outdir, f) [all...] |
/external/webkit/Tools/BuildSlaveSupport/ |
built-product-archive | 28 buildDirectory = os.path.abspath(os.path.join(os.path.dirname(__file__), "..", "..", "WebKitBuild")) 53 archiveFile = os.path.join(buildDirectory, configuration + ".zip") 61 configurationBuildDirectory = os.path.join(buildDirectory, configuration.title()) 66 binDirectory = os.path.join(configurationBuildDirectory, "bin") 67 thinDirectory = os.path.join(configurationBuildDirectory, "thin") 68 thinBinDirectory = os.path.join(thinDirectory, "bin") 77 if subprocess.call("rm -f %s" % os.path.join(thinBinDirectory, "*.ilk"), shell=True): 86 thinDirectory = os.path.join(configurationBuildDirectory, "thin") 93 fromDir = os.path.join(configurationBuildDirectory, dirname, "*") 94 toDir = os.path.join(thinDirectory, dirname [all...] |
/external/icu4c/stubdata/ |
icu_dat_generator.py | 54 command_list = [os.path.join(ICU_PREBUILT_DIR, tool)] 58 command = "[%s] %s" % (working_dir, " ".join(command_list)) 68 src_dat = os.path.join(ICU4C_DIR, "stubdata", ICUDATA + "-all.dat") 69 dst_dat = os.path.join(ICU4C_DIR, "stubdata", ICUDATA + ".dat") 174 print "%s includes %s." % (input_basename, ", ".join(sorted(every_language))) 180 p = os.path.join(ICU4C_DIR, "data", kind, locale + ".txt") 186 relative_path = "/".join(missing_file.split("/")[-2:]) 190 WriteIndex(os.path.join(TMP_DAT_PATH, res_index), locales, CLDR_VERSION) 194 WriteIndex(os.path.join(TMP_DAT_PATH, kind, res_index), locales) 201 InvokeIcuTool("genrb", os.path.join(TMP_DAT_PATH, kind), [res_index] [all...] |
/external/webkit/Source/JavaScriptCore/JavaScriptCore.vcproj/JavaScriptCore/ |
react-to-vsprops-changes.py | 14 vsprops_directory = os.path.join(top_level_directory, 'WebKitLibraries', 'win', 'tools', 'vsprops') 15 vsprops_files = glob.glob(os.path.join(vsprops_directory, '*.vsprops')) 19 obj_directory = os.path.join(os.environ['CONFIGURATIONBUILDDIR'], 'obj') 25 for filepath in glob.iglob(os.path.join(obj_directory, '*', '*.%s' % extension)): 30 wtf_platform_h = os.path.join(top_level_directory, 'Source', 'JavaScriptCore', 'wtf', 'Platform.h')
|
/external/webkit/Tools/Scripts/webkitpy/thirdparty/ |
__init__.py | 52 autoinstalled_dir = os.path.join(thirdparty_dir, "autoinstalled") 63 clientform_dir = os.path.join(autoinstalled_dir, "clientform") 83 irc_dir = os.path.join(autoinstalled_dir, "irc") 88 pywebsocket_dir = os.path.join(autoinstalled_dir, "pywebsocket") 93 readme_path = os.path.join(autoinstalled_dir, "README")
|
/development/testrunner/ |
coverage.py | 41 _EMMA_JAR = os.path.join("external", "emma", "lib", "emma.jar") 44 _COVERAGE_REPORT_PATH = os.path.join("out", "emma") 46 _CORE_TARGET_PATH = os.path.join("development", "testrunner", 50 _VENDOR_TARGET_PATH = os.path.join("vendor", "*", "tests", "testinfo", 54 _TARGET_INTERMEDIATES_BASE_PATH = os.path.join("out", "target", "common", 59 self._output_root_path = os.path.join(self._root_path, 61 self._emma_jar_path = os.path.join(self._root_path, self._EMMA_JAR) 87 output_path = os.path.join(self._root_path, 94 coverage_local_path = os.path.join(output_path, 98 report_path = os.path.join(output_path [all...] |
/cts/tests/src/android/os/cts/ |
TestThread.java | 75 this.join(runTime); 78 this.join(runTime);
|
/external/webkit/Source/JavaScriptCore/ |
wscript | 54 includes.append(os.path.join(jscore_dir, 'icu')) 59 includes = '. .. assembler DerivedSources ForwardingHeaders ' + ' '.join(includes), 70 includes = '. .. assembler DerivedSources ForwardingHeaders ' + ' '.join(includes), 84 bld.install_files(os.path.join(output_dir, 'JavaScriptCore'), 'API/*.h')
|