HomeSort by relevance Sort by last modified time
    Searched refs:join (Results 1 - 25 of 1124) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /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);
  /frameworks/compile/libbcc/tests/debuginfo/
llvm-lit 10 llvm_source_root = os.path.join(android_source_root, 'external', 'llvm')
11 libbcc_source_root = os.path.join(android_source_root, 'frameworks', 'compile',
15 sys.path.append(os.path.join(llvm_source_root, 'utils', 'lit'))
20 'llvm_site_config' : os.path.join(libbcc_source_root, 'test', 'debuginfo',
  /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/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/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/antlr/antlr-3.4/runtime/Ruby/lib/antlr3/
version.rb 14 ANTLR_VERSION_STRING = ANTLR_VERSION.join( '.' )
25 VERSION_STRING = VERSION.join( '.' ).freeze
  /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'))
  /frameworks/compile/mclinker/unittests/
BinTreeTest.cpp 51 m_pTestee->join<TreeIteratorBase::Rightward>(pos,0);
53 m_pTestee->join<TreeIteratorBase::Rightward>(pos,1);
54 m_pTestee->join<TreeIteratorBase::Leftward>(pos,1);
56 m_pTestee->join<TreeIteratorBase::Rightward>(pos,2);
57 m_pTestee->join<TreeIteratorBase::Leftward>(pos,2);
61 mergeTree->join<TreeIteratorBase::Rightward>(pos2,1);
63 mergeTree->join<TreeIteratorBase::Rightward>(pos2,1);
64 mergeTree->join<TreeIteratorBase::Leftward>(pos2,1);
77 mergeTree->join<TreeIteratorBase::Rightward>(pos,0);
79 mergeTree->join<TreeIteratorBase::Rightward>(pos,1)
    [all...]
  /dalvik/tests/078-polymorphic-virtual/src/
Main.java 28 derived1.join();
29 derived2.join();
30 derived3.join();
  /cts/tests/tests/net/src/android/net/rtp/cts/
AudioGroupTest.java 99 mStreamA.join(mGroup);
102 mStreamB.join(mGroup);
105 mStreamA.join(null);
111 mStreamA.join(mGroup);
122 mStreamA.join(mGroup);
123 mStreamB.join(mGroup);
133 mStreamA.join(mGroup);
136 mStreamB.join(mGroup);
139 mStreamA.join(mGroup);
144 mStreamA.join(mGroup)
    [all...]
  /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...]
  /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...]
  /docs/source.android.com/scripts/
build.py 53 t += open(os.path.join(TEMPLATE_DIR, f), 'r').read()
73 outdir = os.path.join(*outdir)
77 os.mkdir(os.path.join(outdir, subdir))
89 sidebar = markdown(os.path.join(curdir, 'sidebar.md'))
95 sidebar2 = markdown(os.path.join(curdir, 'sidebar2.md'))
101 sidebar3 = markdown(os.path.join(curdir, 'sidebar3.md'))
112 absfilename = os.path.join(curdir, f)
119 html = file(os.path.join(outdir, f.replace('.md', '.html')), 'w')
122 shutil.copy(absfilename, os.path.join(outdir, f))
  /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')

Completed in 864 milliseconds

1 2 3 4 5 6 7 8 91011>>