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

1 2 3 4 5 6 7 8 91011>>

  /external/chromium_org/chrome/common/extensions/docs/server2/
extensions_paths.py 5 from posixpath import join namespace
12 API = join(EXTENSIONS, 'api')
13 DOCS = join(EXTENSIONS, 'docs')
15 API_FEATURES = join(API, '_api_features.json')
16 MANIFEST_FEATURES = join(API, '_manifest_features.json')
17 PERMISSION_FEATURES = join(API, '_permission_features.json')
19 EXAMPLES = join(DOCS, 'examples')
20 SERVER2 = join(DOCS, 'server2')
21 STATIC_DOCS = join(DOCS, 'static')
22 TEMPLATES = join(DOCS, 'templates'
    [all...]
build_server.py 13 SRC_DIR = os.path.join(sys.path[0], os.pardir, os.pardir, os.pardir, os.pardir,
15 THIRD_PARTY_DIR = os.path.join(SRC_DIR, 'third_party')
16 LOCAL_THIRD_PARTY_DIR = os.path.join(sys.path[0], 'third_party')
17 TOOLS_DIR = os.path.join(SRC_DIR, 'tools')
25 path = os.path.join(path, '__init__.py')
26 with open(os.path.join(path), 'w') as f:
27 os.utime(os.path.join(path), None)
34 dest_path = os.path.join(LOCAL_THIRD_PARTY_DIR, dest)
47 shutil.copy(os.path.join(src, filename), os.path.join(dest_path, filename)
    [all...]
  /external/chromium_org/tools/
licenses.py 26 os.path.join('third_party','nss'),
29 os.path.join('third_party','adobe'),
32 os.path.join('third_party','widevine'),
35 os.path.join('third_party','valgrind'),
38 os.path.join('third_party','bison'),
39 os.path.join('third_party','cygwin'),
40 os.path.join('third_party','gnu_binutils'),
41 os.path.join('third_party','gold'),
42 os.path.join('third_party','gperf'),
43 os.path.join('third_party','lighttpd')
    [all...]
  /external/chromium_org/native_client_sdk/src/build_tools/
build_paths.py 10 SDK_EXAMPLE_DIR = os.path.join(SDK_SRC_DIR, 'examples')
11 SDK_LIBRARY_DIR = os.path.join(SDK_SRC_DIR, 'libraries')
12 SDK_RESOURCE_DIR = os.path.join(SDK_SRC_DIR, 'resources')
15 NACL_DIR = os.path.join(SRC_DIR, 'native_client')
16 OUT_DIR = os.path.join(SRC_DIR, 'out')
17 PPAPI_DIR = os.path.join(SRC_DIR, 'ppapi')
18 NACLPORTS_DIR = os.path.join(OUT_DIR, 'naclports')
19 GONACL_APPENGINE_DIR = os.path.join(SDK_SRC_DIR, 'gonacl_appengine')
20 GONACL_APPENGINE_SRC_DIR = os.path.join(GONACL_APPENGINE_DIR, 'src')
  /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);
  /external/chromium_org/tools/gyp/test/msvs/shared_output/
gyptest-shared_output.py 26 test.must_exist(os.path.join(test.workdir, 'foo', 'there.exe'))
27 test.must_exist(os.path.join(test.workdir, 'foo', 'bar', 'there.obj'))
30 test.must_exist(os.path.join(test.workdir, 'foo', 'hello.exe'))
31 test.must_exist(os.path.join(test.workdir, 'foo', 'bar', 'hello.obj'))
  /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/chromium_org/chrome/common/extensions/
PRESUBMIT_test.py 11 EXTENSIONS_PATH = os.path.join('chrome', 'common', 'extensions')
12 DOCS_PATH = os.path.join(EXTENSIONS_PATH, 'docs')
13 SERVER2_PATH = os.path.join(DOCS_PATH, 'server2')
14 PUBLIC_PATH = os.path.join(DOCS_PATH, 'templates', 'public')
15 PRIVATE_PATH = os.path.join(DOCS_PATH, 'templates', 'private')
16 INTROS_PATH = os.path.join(DOCS_PATH, 'templates', 'intros')
17 ARTICLES_PATH = os.path.join(DOCS_PATH, 'templates', 'articles')
22 os.path.join(EXTENSIONS_PATH, 'test.cc'),
23 os.path.join(EXTENSIONS_PATH, 'test2.cc'),
24 os.path.join('test', 'test.py'
    [all...]
  /external/chromium_org/chrome/test/chromedriver/
chrome_paths.py 15 return os.path.abspath(os.path.join(_THIS_DIR, os.pardir, os.pardir,
21 return os.path.join(GetSrc(), 'chrome', 'test', 'data')
27 rel_dirs = [os.path.join(x, 'Release') for x in dirs]
28 debug_dirs = [os.path.join(x, 'Debug') for x in dirs]
29 full_dirs = [os.path.join(GetSrc(), x) for x in rel_dirs + debug_dirs]
32 if not os.path.exists(os.path.join(build_dir, required_path)):
37 ', '.join(required_paths))
cpp_source.py 24 copyright = '\n'.join([
35 temp = '_'.join(dir_from_src.split('/') + [base_name])
37 header = '\n'.join([
43 '\n'.join(externs),
48 with open(os.path.join(output_dir, base_name + '.h'), 'w') as f:
63 definitions += ['const char %s[] =\n%s;' % (name, '\n'.join(lines))]
65 cc = '\n'.join([
70 '\n'.join(definitions)])
73 with open(os.path.join(output_dir, base_name + '.cc'), 'w') as f:
  /external/chromium_org/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/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/chromium_org/chrome/tools/
check_grd_for_unused_strings.py 88 full_path = os.path.join(root, file)
98 full_path = os.path.join(root, file)
108 print '\n'.join(' %s' % (x) for x in sorted(missing))
129 ash_base_dir = os.path.join(src_dir, 'ash')
130 chrome_dir = os.path.join(src_dir, 'chrome')
131 chrome_app_dir = os.path.join(chrome_dir, 'app')
132 chrome_app_res_dir = os.path.join(chrome_app_dir, 'resources')
133 device_base_dir = os.path.join(src_dir, 'device')
134 ui_base_dir = os.path.join(src_dir, 'ui', 'base',)
135 ui_base_strings_dir = os.path.join(ui_base_dir, 'strings'
    [all...]
  /external/chromium-trace/trace-viewer/build/
fixjsstyle 5 src_dir = os.path.join(os.path.dirname(__file__), '..')
7 sys.path.append(os.path.join(src_dir, 'third_party/python_gflags'))
8 sys.path.append(os.path.join(src_dir, 'third_party/closure_linter'))
  /external/chromium_org/webkit/tools/layout_tests/
run_webkit_tests.py 13 src_dir = os.path.abspath(os.path.join(sys.path[0], '..', '..', '..'))
14 script_dir=os.path.join(src_dir, "third_party", "WebKit", "Tools",
16 script = os.path.join(script_dir, 'run-webkit-tests')
  /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/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/chromium_org/tools/cr/cr/
autocomplete.py 27 print ' '.join(command.name for command in cr.Command.Plugins())
  /external/chromium_org/tools/gyp/test/msvs/external_builder/
external_builder.py 8 f.write(' '.join(sys.argv))
msbuild_action.py 8 f.write(' '.join(sys.argv))
  /external/chromium_org/tools/gyp/test/ninja/action_dependencies/
gyptest-action-dependencies.py 33 os.path.join('obj', 'b.b' + objext),
40 test.built_file_must_exist(os.path.join('obj', 'b.b' + objext), chdir=chdir)
43 os.path.join('obj', 'c.c' + objext),
50 test.built_file_must_exist(os.path.join('obj', 'c.c' + objext), chdir=chdir)
  /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/skia/tools/tests/
skimage_self_test.py 30 binary_full_path = os.path.join(base_dir, binary)
48 invalid_file = os.path.join(file_dir, "skimage", "input", "bad-images",
54 print "'%s' should have reported failure!" % " ".join(args)
58 expectations_dir = os.path.join(file_dir, "skimage", "input", "bad-images")
61 incorrect_expectations = os.path.join(expectations_dir,
67 print "'%s' should have reported failure!" % " ".join(args)
71 empty_expectations = os.path.join(expectations_dir, "empty-results.json")
85 ignore_expectations = os.path.join(expectations_dir, "ignore-results.json")
101 valid_file = os.path.join(file_dir, "skimage", "input",
104 expectations_dir = os.path.join(file_dir, "skimage", "input"
    [all...]

Completed in 419 milliseconds

1 2 3 4 5 6 7 8 91011>>