HomeSort by relevance Sort by last modified time
    Searched full:join (Results 26 - 50 of 5294) sorted by null

12 3 4 5 6 7 8 91011>>

  /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/libcxx/test/
lit.site.cfg 5 config.libcxx_src_root = os.path.join(config.android_root, 'external/libcxx')
12 config, os.path.join(config.libcxx_src_root, 'test/lit.cfg'))
  /external/mockftpserver/MockFtpServer/src/test/groovy/org/mockftpserver/core/util/
StringUtilTest.groovy 50 assert StringUtil.join([], ' ') == ''
51 assert StringUtil.join([], 'x') == ''
52 assert StringUtil.join(['a'], 'x') == 'a'
53 assert StringUtil.join(['a', 'b'], '') == 'ab'
54 assert StringUtil.join(['a', 'b'], ',') == 'a,b'
55 assert StringUtil.join(['a', 'b', 'c'], ':') == 'a:b:c'
57 shouldFailWithMessageContaining('parts') { StringUtil.join(null, '') }
58 shouldFailWithMessageContaining('delimiter') { StringUtil.join([], null) }
  /external/v8/test/mjsunit/
array-tostring.js 28 // Array's toString should call the object's own join method, if one exists and
44 assertEquals(a1.join(), a1.toString());
46 // Non-standard "join" function is called correctly.
48 a2.join = testJoin;
52 // Non-callable join function is ignored and Object.prototype.toString is
55 a3.join = "not callable";
58 // Non-existing join function is treated same as non-callable.
61 // No join on Array.
70 join: Array.prototype.join};
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/distutils/tests/
test_dep_util.py 16 new_file = os.path.join(tmpdir, 'new')
34 sources = os.path.join(tmpdir, 'sources')
35 targets = os.path.join(tmpdir, 'targets')
38 one = os.path.join(sources, 'one')
39 two = os.path.join(sources, 'two')
41 four = os.path.join(targets, 'four')
51 sources = os.path.join(tmpdir, 'sources')
53 one = os.path.join(sources, 'one')
54 two = os.path.join(sources, 'two')
55 three = os.path.join(sources, 'three'
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/distutils/tests/
test_dep_util.py 16 new_file = os.path.join(tmpdir, 'new')
34 sources = os.path.join(tmpdir, 'sources')
35 targets = os.path.join(tmpdir, 'targets')
38 one = os.path.join(sources, 'one')
39 two = os.path.join(sources, 'two')
41 four = os.path.join(targets, 'four')
51 sources = os.path.join(tmpdir, 'sources')
53 one = os.path.join(sources, 'one')
54 two = os.path.join(sources, 'two')
55 three = os.path.join(sources, 'three'
    [all...]
  /external/libcxx/
lit.site.cfg 20 config.cxx_under_test = os.path.join(
23 config.libcxx_src_root = os.path.join(top, "external/libcxx")
24 config.libcxx_obj_root = os.path.join(top, "external/libcxx")
25 config.cxx_library_root = os.path.join(out_dir, 'system/lib')
36 config.sysroot = os.path.join(ndk, "platforms/android-21/arch-arm/")
37 config.gcc_toolchain = os.path.join(
42 config, os.path.join(top, "external/libcxx/test/lit.cfg"))
  /external/owasp/sanitizer/src/tests/org/owasp/html/
ElementPolicyTest.java 17 import static org.owasp.html.ElementPolicy.Util.join;
66 ElementPolicy a_b = join(a, b);
67 ElementPolicy b_a = join(b, a);
70 assertPassed(join(b_a, b_a), "abacus", "abracadabra", "bar"); method
71 assertPassed(join(a_b, c), "abacus", "abracadabra"); method
72 assertPassed(join(c, REJECT_ALL_ELEMENT_POLICY)); method
73 assertPassed(join(REJECT_ALL_ELEMENT_POLICY, a_b)); method
  /external/robolectric/src/main/java/com/xtremelabs/robolectric/shadows/
ShadowTextUtils.java 6 import com.xtremelabs.robolectric.util.Join;
47 public static String join(CharSequence delimiter, Iterable tokens) { method in class:ShadowTextUtils
48 return Join.join((String) delimiter, (Collection) tokens);
52 public static String join(CharSequence delimiter, Object[] tokens) { method in class:ShadowTextUtils
53 return Join.join((String) delimiter, tokens);
  /external/deqp/external/
fetch_sources.py 25 srcPath = os.path.join(EXTERNAL_DIR, pkg.dstDir)
31 fullPath = os.path.join(srcPath, entry)
44 dstPath = os.path.join(EXTERNAL_DIR, pkg.filename)
56 srcPath = os.path.join(EXTERNAL_DIR, pkg.filename)
57 tmpPath = os.path.join(EXTERNAL_DIR, ".extract-tmp-%s" % pkg.dstDir)
58 dstPath = os.path.join(EXTERNAL_DIR, pkg.dstDir)
70 if len(extractedEntries) != 1 or not os.path.isdir(os.path.join(tmpPath, extractedEntries[0])):
73 topLevelPath = os.path.join(tmpPath, extractedEntries[0])
76 if os.path.exists(os.path.join(dstPath, entry)):
80 shutil.move(os.path.join(topLevelPath, entry), dstPath
    [all...]
  /external/chromium-trace/trace-viewer/tracing/third_party/vinn/vinn/
path_utils_test.js 25 assert.equal(path_utils.join('a', 'b'), 'a/b');
26 assert.equal(path_utils.join('/a', 'b'), '/a/b');
27 assert.equal(path_utils.join('/a/', 'b/'), '/a/b/');
28 assert.equal(path_utils.join('/a', '/b/'), '/b/');
29 assert.equal(path_utils.join('/a', './b/'), '/a/./b/');
30 assert.equal(path_utils.join('/a/', './b/'), '/a/./b/');
31 assert.equal(path_utils.join('../', 'b'), '../b');
32 assert.equal(path_utils.join('../', 'b/'), '../b/');
33 assert.equal(path_utils.join('a', 'b'), 'a/b');
  /build/tools/droiddoc/templates-pdk/assets/
microtemplate.js 24 .split("<%").join("\t")
27 .split("\t").join("');")
28 .split("%>").join("p.push('")
29 .split("\r").join("\\'")
30 + "');}return p.join('');");
  /external/chromium-trace/trace-viewer/tracing/
tracing_project.py 20 x = os.path.abspath(os.path.join(dirpath, f))
42 tracing_path = os.path.abspath(os.path.join(os.path.dirname(__file__), '..'))
43 tracing_root_path = os.path.abspath(os.path.join(tracing_path, 'tracing'))
44 tracing_src_path = os.path.abspath(os.path.join(tracing_root_path, 'tracing'))
45 extras_path = os.path.join(tracing_src_path, 'extras')
47 tracing_third_party_path = os.path.abspath(os.path.join(
50 jszip_path = os.path.abspath(os.path.join(tracing_third_party_path, 'jszip'))
52 glmatrix_path = os.path.abspath(os.path.join(
55 ui_path = os.path.abspath(os.path.join(tracing_src_path, 'ui'))
56 d3_path = os.path.abspath(os.path.join(tracing_third_party_path, 'd3')
    [all...]
__init__.py 9 tvcm_path = os.path.abspath(os.path.join(os.path.dirname(__file__),
13 vinn_path = os.path.abspath(os.path.join(os.path.dirname(__file__),
  /external/chromium-trace/trace-viewer/tracing/build/
fixjsstyle.py 8 tracing_path = os.path.abspath(os.path.join(os.path.dirname(__file__),
19 sys.path.append(os.path.join(
21 sys.path.append(os.path.join(
  /external/llvm/bindings/python/llvm/tests/
base.py 26 path = os.path.join(d, lib)
35 return os.path.join(os.path.dirname(os.path.abspath(__file__)), "test_file")
38 return os.path.join(os.path.dirname(os.path.abspath(__file__)), "test.bc")
  /external/robolectric/src/main/java/com/xtremelabs/robolectric/util/
Join.java 5 public class Join {
6 public static String join(String delimiter, Collection collection) { method in class:Join
19 public static String join(String delimiter, Object... collection) { method in class:Join
  /external/skia/tests/
RefCntTest.cpp 34 thing1.join();
35 thing2.join();
76 thing1.join();
77 thing2.join();
78 thing3.join();
79 thing4.join();
  /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/chromium-trace/trace-viewer/third_party/Paste/tests/
test_import_string.py 9 assert func('os.path.join') is os.path.join
  /external/compiler-rt/test/tsan/libcxx/
std_shared_ptr.cc 18 t1.join();
19 t2.join();
  /external/pdfium/testing/tools/
run_javascript_tests.py 23 input_path = os.path.join(source_dir, input_root + '.in')
24 pdf_path = os.path.join(working_dir, input_root + '.pdf')
25 txt_path = os.path.join(working_dir, input_root + '.txt')
26 expected_path = os.path.join(source_dir, input_root + '_expected.txt')
42 parser.add_option('--build-dir', default=os.path.join('out', 'Debug'),
48 source_dir = finder.TestingDir(os.path.join('resources', 'javascript'))
54 working_dir = finder.WorkingDir(os.path.join('testing', 'javascript'))
62 input_path = os.path.join(source_dir, input_filename)
  /external/skia/gm/
strokerect.cpp 15 SkPaint::Join join, int doFill) {
22 paint.setStrokeJoin(join);
66 static const SkPaint::Join gJoins[] = {
86 SkPaint::Join join = gJoins[i]; variable
87 paint.setStrokeJoin(join);
96 draw_path(canvas, fillPath, r, join, doFill);
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/
test_ntpath.py 68 tester('ntpath.join("")', '')
69 tester('ntpath.join("", "", "")', '')
70 tester('ntpath.join("a")', 'a')
71 tester('ntpath.join("/a")', '/a')
72 tester('ntpath.join("\\a")', '\\a')
73 tester('ntpath.join("a:")', 'a:')
74 tester('ntpath.join("a:", "b")', 'a:b')
75 tester('ntpath.join("a:", "/b")', 'a:/b')
76 tester('ntpath.join("a:", "\\b")', 'a:\\b')
77 tester('ntpath.join("a", "/b")', '/b'
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/
test_ntpath.py 68 tester('ntpath.join("")', '')
69 tester('ntpath.join("", "", "")', '')
70 tester('ntpath.join("a")', 'a')
71 tester('ntpath.join("/a")', '/a')
72 tester('ntpath.join("\\a")', '\\a')
73 tester('ntpath.join("a:")', 'a:')
74 tester('ntpath.join("a:", "b")', 'a:b')
75 tester('ntpath.join("a:", "/b")', 'a:/b')
76 tester('ntpath.join("a:", "\\b")', 'a:\\b')
77 tester('ntpath.join("a", "/b")', '/b'
    [all...]

Completed in 561 milliseconds

12 3 4 5 6 7 8 91011>>