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

1 2 3 4 5 6 7 8 91011>>

  /external/llvm/utils/llvm-lit/
llvm-lit.in 11 sys.path.insert(0, os.path.join(llvm_source_root, 'utils', 'lit'))
17 'llvm_site_config' : os.path.join(llvm_obj_root, 'test', 'lit.site.cfg')
20 clang_obj_root = os.path.join(llvm_obj_root, 'tools', 'clang')
24 os.path.join(clang_obj_root, 'test', 'lit.site.cfg')
25 clang_tools_extra_obj_root = os.path.join(clang_obj_root, 'tools', 'extra')
28 os.path.join(clang_tools_extra_obj_root, 'test', 'lit.site.cfg')
  /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/mockito/src/org/mockito/internal/util/
StringJoiner.java 10 public static String join(Object ... linesToBreak) { method in class:StringJoiner
12 return join(out, linesToBreak);
15 private static String join(StringBuilder out, Object[] linesToBreak) { method in class:StringJoiner
  /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/chromium-trace/trace-viewer/third_party/pywebsocket/src/test/
set_sys_path.py 42 sys.path.insert(0, os.path.join(os.path.split(__file__)[0], '..'))
  /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/mockito/src/org/mockito/exceptions/
Reporter.java 31 import static org.mockito.internal.util.StringJoiner.join;
47 throw new MockitoException(join(
54 throw new MockitoException(join(
61 throw new UnfinishedStubbingException(join(
78 throw new MockitoException(join(
91 throw new MissingMethodInvocationException(join(
107 UnfinishedVerificationException exception = new UnfinishedVerificationException(join(
123 throw new NotAMockException(join(
134 throw new NullInsteadOfMockException(join(
145 throw new NotAMockException(join(
369 throw new NeverWantedButInvoked(join( method
    [all...]
  /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'))
  /dalvik/tests/078-polymorphic-virtual/src/
Main.java 28 derived1.join();
29 derived2.join();
30 derived3.join();
  /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...]
  /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/skia/src/utils/
SkThreadUtils.h 33 void 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...]

Completed in 807 milliseconds

1 2 3 4 5 6 7 8 91011>>