/cts/tests/tests/graphics/src/android/graphics/cts/ |
Paint_JoinTest.java | 24 import android.graphics.Paint.Join; 27 @TestTargetClass(Paint.Join.class) 36 assertEquals(Join.BEVEL, Join.valueOf("BEVEL")); 37 assertEquals(Join.MITER, Join.valueOf("MITER")); 38 assertEquals(Join.ROUND, Join.valueOf("ROUND")); 50 args = {android.graphics.Paint.Join.class} 60 Join[] actual = Join.values() [all...] |
/external/webkit/JavaScriptCore/tests/mozilla/ecma/Array/ |
15.4.4.3-1.js | 24 ECMA Section: 15.4.4.3-1 Array.prototype.join() 27 characters. The result is the same as if the built-in join 33 ECMA-262 Ed.3 Section 15.4.4.5 Array.prototype.join() 43 writeHeaderToLog( SECTION + " Array.prototype.join()"); 54 array[item++] = new TestCase( SECTION, "Array.prototype.join.length", 1, Array.prototype.join.length ); 55 array[item++] = new TestCase( SECTION, "delete Array.prototype.join.length", false, delete Array.prototype.join.length ); 56 array[item++] = new TestCase( SECTION, "delete Array.prototype.join.length; Array.prototype.join.length", 1, eval("delete Array.prototype.join.length; Array.prototype.join.length") ) [all...] |
/external/webkit/WebKit/wx/ |
wscript | 33 os.path.join(wk_root, 'JavaScriptCore'), 34 os.path.join(wk_root, 'WebCore'), 35 os.path.join(output_dir), 36 os.path.join(wk_root, 'WebCore', 'page', 'wx'), 37 os.path.join(wk_root, 'WebCore', 'platform', 'network', 'curl'), 38 os.path.join(wk_root, 'WebCore', 'platform', 'wx'), 39 os.path.join(wk_root, 'WebCore', 'platform', 'bridge', 'wx'), 40 os.path.join(wk_root, 'WebCore', 'platform', 'graphics', 'wx'), 52 include_paths.append(os.path.join(wk_root, 'WebCore', dir)) 54 js_include_dirs = [os.path.join(wk_root, 'JavaScriptCore', 'assembler') [all...] |
/external/webkit/WebKitTools/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'))
|
build-mac-installer.py | 39 sys.path.append(os.path.abspath(os.path.join(script_dir, "..", "build"))) 45 wxwk_root = os.path.abspath(os.path.join(script_dir, "..", "..", "..")) 46 wxwebkit_dir = os.path.abspath(os.path.join(wxwk_root, "WebKitBuild", get_config(wxwk_root) + git_branch_name())) 63 installroot = os.path.join(tempdir, "install-root") 64 installapps = os.path.join(tempdir, "install-apps") 96 dest_filename = os.path.join(prefix, basename) 97 copyname = os.path.join(copydir, basename) 123 files = glob.glob(os.path.join(wxwebkit_dir, wildcard)) 128 dylib_path = os.path.join(wxpythonroot, "libwxwebkit.dylib") 129 os.system("install_name_tool -id %s %s" % (os.path.join(prefix, "libwxwebkit.dylib"), dylib_path) [all...] |
/external/v8/test/mjsunit/ |
array-join.js | 28 // Test that array join calls toString on subarrays. 30 assertEquals('1,2*3*4*5,6', a.join('*')); 34 assertEquals('1,2*3*4*5,6*', a.join('*')); 38 assertEquals('array*3*4*array*array', a.join('*')); 41 assertThrows("a.join('*')"); 44 assertEquals('array*3*4*array*array', a.join('*'));
|
cyclic-array-to-string.js | 33 assertEquals("1,2", a1.join()); 37 assertEquals("1,2,", a1.join()); 41 assertEquals("1,2,,1", a1.join()); 45 assertEquals("1,2,,1,", a1.join()); 53 assertEquals("1,2,3,4,3,4", a1.join()); 57 assertEquals("1,2,3,4,,3,4,", a1.join()); 64 assertEquals("", a1.join());
|
testcfg.py | 30 from os.path import join, dirname, exists namespace 73 result.append(join(dirname(self.config.root), '..', a_file)) 74 framework = join(dirname(self.config.root), 'mjsunit', 'mjsunit.js') 113 regress = [current_path + ['regress', t] for t in self.Ls(join(self.root, 'regress'))] 114 bugs = [current_path + ['bugs', t] for t in self.Ls(join(self.root, 'bugs'))] 115 third_party = [current_path + ['third_party', t] for t in self.Ls(join(self.root, 'third_party'))] 116 tools = [current_path + ['tools', t] for t in self.Ls(join(self.root, 'tools'))] 117 compiler = [current_path + ['compiler', t] for t in self.Ls(join(self.root, 'compiler'))] 122 file_path = join(self.root, reduce(join, test[1:], "") + ".js" [all...] |
array-functions-prototype-misc.js | 29 * @fileoverview Test splice, shift, unshift, slice and join on small 149 assertEquals("zero,baz,two", a.join(",")); 169 // Join with '' as separator. 170 var join = a.join(''); 171 assertEquals("con", join); 172 join = b.join(''); 173 assertEquals("cat", join); 174 join = ab.join('') [all...] |
/external/clearsilver/python/examples/base/ |
handle_error.py | 25 return string.join(tb_list,"") 48 sys.stderr.write (string.join(tb_list,"")) 50 if dump: dump_bug(lvl, "handleException", msg, string.join(tb_list, "")) 67 os.path.join (DUMP_DIR, "tmp"), 68 os.path.join (DUMP_DIR, "new")) 99 tpath = os.path.join (DUMP_DIR, "tmp", fname) 100 npath = os.path.join (DUMP_DIR, "new", fname)
|
/dalvik/libcore/concurrent/src/test/java/tests/api/java/util/concurrent/ |
ExchangerTest.java | 56 t1.join(); 57 t2.join(); 99 t1.join(); 100 t2.join(); 124 t.join(); 149 t.join(); 173 t.join(); 226 t1.join(); 227 t2.join(); 228 t3.join(); [all...] |
LockSupportTest.java | 41 t.join(); 65 t.join(); 89 t.join(); 116 t.join(); 138 t.join(); 162 t.join();
|
CyclicBarrierTest.java | 117 t.join(); 157 t1.join(); 158 t2.join(); 197 t1.join(); 198 t2.join(); 223 t.join(); 260 t1.join(); 261 t2.join(); 298 t1.join(); 299 t2.join(); [all...] |
ReentrantReadWriteLockTest.java | 178 t.join(); 201 t.join(); 226 t.join(); 249 t.join(); 269 t.join(); 289 t.join(); 310 t.join(); 341 t1.join(MEDIUM_DELAY_MS); 342 t2.join(MEDIUM_DELAY_MS); 375 t1.join(MEDIUM_DELAY_MS) [all...] |
/external/webkit/WebKitTools/DumpRenderTree/ |
wscript | 33 os.path.join(output_dir), 34 os.path.join(wk_root, 'JavaScriptCore'), 35 os.path.join(wk_root, 'WebCore'), 36 os.path.join(wk_root, 'WebKit', 'wx'), 57 includes = ' '.join(include_paths),
|
/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) 109 output_path = os.path.join(self._root_path, 116 coverage_local_path = os.path.join(output_path, 120 report_path = os.path.join(output_path [all...] |
/dalvik/tests/039-join-main/src/ |
Main.java | 4 * Make sure that a sub-thread can join the main thread. 32 mJoinMe.join();
|
/external/webkit/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/WebKitTools/wx/build/ |
wxpresets.py | 52 versionText = open(os.path.join(wx_root, "include", "wx", "version.h"), "r").read() 65 includes = [os.path.join(wx_root, 'include')] 70 libdir = os.path.join(wx_root, 'lib') 74 version_str_nodot = ''.join(get_wx_version(wx_root)) 78 libdir = os.path.join(libdir, Options.options.wx_compiler_prefix + '_dll') 80 libdir = os.path.join(libdir, Options.options.wx_compiler_prefix + '_lib') 94 configdir = os.path.join(libdir, 'msw' + ext) 97 cfg_file = os.path.join(configdir, 'build.cfg')
|
/cts/tools/utils/ |
buildCts.py | 30 return [x for x in os.listdir(root) if os.path.isdir(os.path.join(root, x))] 72 self.test_repository = os.path.join(self.out_dir, 'repository/testcases') 73 self.plan_repository = os.path.join(self.out_dir, 'repository/plans') 103 source_path = [os.path.join(self.android_root, x) for x in source_path] 105 ' -sourcepath %s ') % (output_file, self.doclet_path, ':'.join(source_path)) 110 sources.extend([os.path.join(folder, name) for name in names if name.endswith('.java')]) 112 os.path.walk(os.path.join(self.android_root, source_root), AddFile, sources) 113 cmd += ' '.join(sources) 127 description = open(os.path.join(self.test_repository, 'SignatureTest.xml'), 'w') 140 description = open(os.path.join(self.test_repository, 'ApiDemosReferenceTest.xml'), 'w' [all...] |
/external/icu4c/stubdata/ |
icu_dat_generator.py | 62 command_list = [os.path.join(GetIcuPrebuiltDir(), tool)] 66 command = "[%s] %s" % (working_dir, " ".join(command_list)) 75 return os.path.join(os.environ.get("ANDROID_EABI_TOOLCHAIN"), "..", "..", 81 source_dat = os.path.join(ANDROID_ROOT, "external", "icu4c", "stubdata", 83 dest_dat = os.path.join(ANDROID_ROOT, "external", "icu4c", "stubdata", 91 dat_list_file_path = os.path.join(icu_dat_path, ICUDATA + "-" + dat_name + 116 locale_index = open(os.path.join(TMP_DAT_PATH, res_index), "w") 118 brkitr_index = open(os.path.join(TMP_DAT_PATH, "brkitr", res_index), "w") 120 coll_index = open(os.path.join(TMP_DAT_PATH, "coll", res_index), "w") 122 rbnf_index = open(os.path.join(TMP_DAT_PATH, "rbnf", res_index), "w" [all...] |
/dalvik/tests/078-polymorphic-virtual/src/ |
Main.java | 28 derived1.join(); 29 derived2.join(); 30 derived3.join();
|
/packages/apps/Gallery/tests/src/com/android/camera/ |
BitmapManagerUnitTests.java | 90 t.join(); 102 t.join(); 115 t.join(); 131 t1.join(); 132 t2.join();
|
/external/webkit/WebCore/ |
wscript | 75 derived_sources_dir = os.path.join(webcore_dir, 'DerivedSources') 85 os.system('make -f %s/DerivedSources.make WebCore=%s SOURCE_ROOT=%s all FEATURE_DEFINES="%s"' % (wc_dir, wc_dir, wc_dir, ' '.join(feature_defines))) 95 graphics_dir = os.path.join(wk_root, 'WebCore', 'platform', 'graphics') 100 shutil.copy(os.path.join(graphics_dir, 'win', afile), os.path.join(graphics_dir, 'wx')) 109 os.path.join(wk_root, 'JavaScriptCore'), 110 os.path.join(wk_root, 'WebCore'), 130 jscore_dir = os.path.join(wk_root, 'JavaScriptCore') 132 fullpath = os.path.join(jscore_dir, item) 136 wk_includes.append(os.path.join(jscore_dir, 'wtf', 'unicode') [all...] |
/external/webkit/WebKitTools/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") 62 configurationBuildDirectory = os.path.join(buildDirectory, configuration.title()) 65 binDirectory = os.path.join(buildDirectory, "bin") 66 thinDirectory = os.path.join(buildDirectory, "thin") 67 thinBinDirectory = os.path.join(thinDirectory, "bin") 76 if subprocess.call("rm -f %s" % os.path.join(thinBinDirectory, "*.ilk"), shell=True): 87 archiveFile = os.path.join(buildDirectory, configuration + ".zip") 90 configurationBuildDirectory = os.path.join(buildDirectory, configuration.title()) 100 binDirectory = os.path.join(buildDirectory, "bin" [all...] |