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

<<11121314151617181920>>

  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/
test_startfile.py 27 empty = path.join(path.dirname(__file__), "empty.vbs")
36 empty = path.join(path.dirname(__file__), "empty.vbs")
  /external/lldb/test/functionalities/load_unload/
TestLoadUnload.py 17 mydir = os.path.join("functionalities", "load_unload")
40 new_dir = os.path.join(os.getcwd(), "hidden")
42 old_dylib = os.path.join(os.getcwd(), dylibName)
43 new_dylib = os.path.join(new_dir, dylibName)
45 exe = os.path.join(os.getcwd(), "a.out")
90 exe = os.path.join(os.getcwd(), "a.out")
99 new_dir = os.path.join(os.getcwd(), special_dir)
101 old_dylib = os.path.join(os.getcwd(), dylibName)
102 new_dylib = os.path.join(new_dir, dylibName)
103 old_dSYM = os.path.join(os.getcwd(), dsymName
    [all...]
  /external/chromium-trace/trace-viewer/tracing/build/
update_gypi.py 10 tracing_path = os.path.abspath(os.path.join(os.path.dirname(__file__),
93 regexp_str = "'(%s)': \[\n(.+?) +\],?\n" % "|".join(self._file_groups)
99 return "".join(["'".join([prefix, filename, suffix + '\n'])
125 os.path.join(tvp.tracing_root_path, 'trace_viewer.gypi'), GypiFile)
  /external/deqp/framework/delibs/decpp/
deFilePath.hpp 64 static FilePath join (const FilePath& a, const FilePath& b);
65 FilePath& join (const FilePath& b);
106 inline FilePath& FilePath::join (const FilePath& b) function in class:de::FilePath
115 inline FilePath FilePath::join (const FilePath& a, const FilePath& b) function in class:de::FilePath
117 return FilePath(a).join(b);
  /external/guava/guava-gwt/test-super/com/google/common/primitives/super/com/google/common/primitives/
SignedBytesTest.java 125 assertEquals("", SignedBytes.join(",", EMPTY));
126 assertEquals("1", SignedBytes.join(",", ARRAY1));
127 assertEquals("1,2", SignedBytes.join(",", (byte) 1, (byte) 2));
128 assertEquals("123", SignedBytes.join("", (byte) 1, (byte) 2, (byte) 3));
129 assertEquals("-128,-1", SignedBytes.join(",", (byte) -128, (byte) -1));
  /external/libcxx/test/libcxx/android/test/
config.py 35 test_config_file = os.path.join(self.build_cmds_dir, 'testconfig.mk')
43 self.build_cmds_dir = os.path.join(self.libcxx_src_root, 'buildcmds')
49 cxx_under_test_file = os.path.join(self.build_cmds_dir,
53 cxx_template_file = os.path.join(self.build_cmds_dir, 'cxx.cmds')
56 link_template_file = os.path.join(self.build_cmds_dir, 'link.cmds')
  /external/lldb/test/functionalities/thread/break_after_join/
TestBreakAfterJoin.py 13 mydir = os.path.join("functionalities", "thread", "break_after_join")
19 """Test breakpoint handling after a thread join."""
27 """Test breakpoint handling after a thread join."""
38 """Test breakpoint handling after a thread join."""
39 exe = os.path.join(os.getcwd(), "a.out")
  /external/nist-sip/java/gov/nist/javax/sip/header/extensions/
Join.java 14 * Join SIPHeader.
23 public class Join
31 public static final String NAME = "Join";
42 public Join() {
50 public Join(String callId) throws IllegalArgumentException {
  /external/owasp/sanitizer/src/main/org/owasp/html/
ElementPolicy.java 67 public static final ElementPolicy join(ElementPolicy... policies) { method in class:ElementPolicy.Util
73 void join(ElementPolicy p) { method in class:ElementPolicy.Util.PolicyJoiner
79 join(jep.first);
80 join(jep.second);
96 pu.join(policy);
  /external/robolectric/src/test/java/com/xtremelabs/robolectric/shadows/
AsyncTaskTest.java 13 import com.xtremelabs.robolectric.util.Join;
129 transcript.add("doInBackground " + Join.join(", ", (Object[]) strings));
134 transcript.add("onProgressUpdate " + Join.join(", ", (Object[]) values));
  /external/skia/gm/
nonclosedpaths.cpp 85 static const SkPaint::Join kJoin[] = {
101 for (size_t join = 0; join < SK_ARRAY_COUNT(kJoin); ++join) {
111 paint.setStrokeJoin(kJoin[join]);
  /external/skia/include/core/
SkStrokeRec.h 41 SkPaint::Join getJoin() const { return fJoin; }
61 void setStrokeParams(SkPaint::Cap cap, SkPaint::Join join, SkScalar miterLimit) {
63 fJoin = join;
121 SkPaint::Join fJoin;
  /external/skia/tests/
OSPathTest.cpp 13 * Test SkOSPath::Join, SkOSPath::Basename, and SkOSPath::Dirname.
14 * Will use SkOSPath::Join to append filename to dir, test that it works correctly,
27 // Tests for SkOSPath::Join and SkOSPath::Basename
30 SkString fullName = SkOSPath::Join(dir.c_str(), filename.c_str());
103 SkString emptyPath = SkOSPath::Join(NULL, NULL);
  /external/v8/test/mjsunit/
testcfg.py 53 testname = os.path.join(dirname[len(self.root) + 1:], filename[:-3])
74 files = [ os.path.normpath(os.path.join(self.root, '..', '..', f))
76 testfilename = os.path.join(self.root, testcase.path + self.suffix())
80 files.append(os.path.join(self.root, "mjsunit.js"))
91 filename = os.path.join(self.root, testcase.path + self.suffix())
  /frameworks/compile/slang/lit-tests/
lit.cfg 23 config.test_exec_root = os.path.join(config.base_path, 'out', 'tests', 'slang', 'lit-tests')
45 config.slang = inferTool('llvm-rs-cc', 'SLANG', os.path.join(config.base_path, 'out', 'host', 'linux-x86', 'bin')).replace('\\', '/')
48 config.rs_filecheck_wrapper = inferTool('rs-filecheck-wrapper.sh', 'RS_FILECHECK_WRAPPER', os.path.join(config.base_path, 'frameworks', 'compile', 'slang', 'lit-tests'))
51 config.slang_includes = "-I " + os.path.join(config.base_path, 'frameworks', 'rs', 'scriptc') + " " \
52 + "-I " + os.path.join(config.base_path, 'external', 'clang', 'lib', 'Headers')
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/bsddb/test/
test_join.py 1 """TestCases for using the DB.join and DBCursor.join_item methods.
75 jCursor = priDB.join([sCursor])
78 self.fail("join cursor positioned wrong")
82 self.fail("join cursor returned wrong thing")
84 self.fail("join cursor returned too many items")
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/distutils/tests/
test_install_lib.py 40 f = os.path.join(pkg_dir, 'foo.py')
49 self.assertTrue(os.path.exists(os.path.join(pkg_dir, 'foo.pyc')))
51 self.assertTrue(os.path.exists(os.path.join(pkg_dir, 'foo.pyo')))
60 f = os.path.join(pkg_dir, 'foo.py')
77 f = os.path.join(pkg_dir, 'foo.py')
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/bsddb/test/
test_join.py 1 """TestCases for using the DB.join and DBCursor.join_item methods.
75 jCursor = priDB.join([sCursor])
78 self.fail("join cursor positioned wrong")
82 self.fail("join cursor returned wrong thing")
84 self.fail("join cursor returned too many items")
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/distutils/tests/
test_install_lib.py 40 f = os.path.join(pkg_dir, 'foo.py')
49 self.assertTrue(os.path.exists(os.path.join(pkg_dir, 'foo.pyc')))
51 self.assertTrue(os.path.exists(os.path.join(pkg_dir, 'foo.pyo')))
60 f = os.path.join(pkg_dir, 'foo.py')
77 f = os.path.join(pkg_dir, 'foo.py')
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/site-packages/setoolsgui/networkx/readwrite/tests/
test_shp.py 37 testdir = os.path.join(tempfile.gettempdir(), 'shpdir')
38 shppath = os.path.join(tempfile.gettempdir(), 'tmpshp.shp')
91 tpath = os.path.join(tempfile.gettempdir(), 'shpdir')
110 tpath = os.path.join(tempfile.gettempdir(), 'shpdir')
120 tpath = os.path.join(tempfile.gettempdir(), 'shpdir')
  /external/chromium-trace/trace-viewer/tracing/third_party/vinn/vinn/
d8_runner.py 17 os.path.join(os.path.dirname(__file__), os.path.pardir, 'third_party',
23 os.path.join(os.path.dirname(__file__), os.path.pardir, 'third_party',
28 os.path.join(os.path.dirname(__file__), 'd8_bootstrap.js'))
31 os.path.join(os.path.dirname(__file__), 'path_utils.js'))
34 os.path.join(os.path.dirname(__file__), 'html_to_js_generator.js'))
78 return os.path.join(_V8_DIR, 'linux', 'x86_64', 'd8')
80 return os.path.join(_V8_DIR, 'mac', 'x86_64', 'd8')
134 temp_boostrap_file = os.path.join(temp_dir, '_tmp_boostrap.js')
164 temp_file = os.path.join(temp_dir, '%s.js' % name)
166 temp_file = os.path.join(temp_dir, 'temp_program.js'
    [all...]
  /external/jsoncpp/
doxybuild.py 21 full_path = os.path.join(directory, name)
56 print 'Running:', ' '.join( cmd )
60 if os.system( ' '.join( cmd ) ) != 0:
92 tarball_path = os.path.join( 'dist', html_output_dirname + '.tar.gz' )
93 warning_log_path = os.path.join( output_dir, '../jsoncpp-doxygen-warning.log' )
94 html_output_path = os.path.join( output_dir, html_output_dirname )
101 '%HTML_OUTPUT%': os.path.join( '..', output_dir, html_output_dirname ),
106 '%WARNING_LOG_PATH%': os.path.join( '..', warning_log_path )
119 index_path = os.path.abspath(os.path.join(subst_keys['%HTML_OUTPUT%'], 'index.html'))
134 tarball_basedir = os.path.join( output_dir, html_output_dirname
    [all...]
  /external/skia/
gyp_skia 21 gyp_source_dir = os.path.join(script_dir, 'third_party', 'externals', 'gyp')
24 gyp_config_dir = os.path.join(script_dir, 'gyp')
32 sys.path.insert(0, os.path.join(gyp_source_dir, 'pylib'))
58 AddInclude(os.path.join(gyp_config_dir, 'common.gypi'))
69 return os.path.join(os.path.abspath(script_dir), 'out')
74 return os.path.join(os.path.abspath(script_dir), output_dir)
99 sys.path.append(os.path.join(chrome_path, 'build'))
100 sys.path.append(os.path.join(chrome_path, 'tools'))
156 print gyp_source_dir, ' '.join(args)
168 os.path.join(os.getenv('CHROME_PATH'), get_output_dir())
    [all...]
  /external/v8/test/benchmarks/
testcfg.py 111 result.append(os.path.join(self.testroot, "%s-data.js" % testcase.path))
112 result.append(os.path.join(self.testroot, "%s.js" % testcase.path))
114 result.append(os.path.join(self.testroot, "octane/base.js"))
115 result.append(os.path.join(self.testroot, "%s.js" % testcase.path))
117 result.append(os.path.join(self.testroot, "octane/gbemu-part2.js"))
119 result.append(os.path.join(self.testroot,
121 result.append(os.path.join(self.testroot, "octane/typescript-input.js"))
123 result.append(os.path.join(self.testroot, "octane/zlib-data.js"))
126 result.append(os.path.join(self.testroot, "%s.js" % testcase.path))
130 filename = os.path.join(self.testroot, testcase.path + ".js"
    [all...]
  /libcore/harmony-tests/src/test/java/org/apache/harmony/tests/org/apache/harmony/kernel/dalvik/
ThreadsTest.java 61 waiterThread.join();
62 parkerThread.join();
76 waiterThread.join();
77 parkerThread.join();
89 parkerThread.join();
103 waiterThread.join();
104 parkerThread.join();
118 waiterThread.join();
119 parkerThread.join();
131 parkerThread.join();
    [all...]

Completed in 430 milliseconds

<<11121314151617181920>>