Searched defs:join (Results 1 - 25 of 87) sorted by relevance

1234

/external/clang/test/Preprocessor/
H A Dc99-6_10_3_3_p4.c6 #define join(c, d) in_between(c hash_hash d) macro
7 char p[] = join(x, y);
H A Dmacro_paste_hashhash.c5 #define join(c, d) in_between(c hash_hash d) macro
7 join(x, y);
/external/v8/test/message/
H A Doverwritten-builtins.js29 Array.prototype.join = function() { return []; };
H A Dtestcfg.py30 from os.path import join, dirname, exists, basename, isdir namespace
108 regress = [current_path + ['regress', t] for t in self.Ls(join(self.root, 'regress'))]
109 bugs = [current_path + ['bugs', t] for t in self.Ls(join(self.root, 'bugs'))]
117 file_prefix = join(self.root, reduce(join, test[1:], ""))
131 status_file = join(self.root, 'message.status')
/external/llvm/lib/Support/
H A DIntEqClasses.cpp14 // passing a representative member of each class to join().
32 void IntEqClasses::join(unsigned a, unsigned b) { function in class:IntEqClasses
33 assert(NumClasses == 0 && "join() called after compress().");
/external/v8/tools/
H A Dtest-wrapper-gypbuild.py38 from os.path import join, dirname, abspath namespace
215 workspace = abspath(join(dirname(sys.argv[0]), '..'))
234 child = subprocess.Popen(' '.join(args_for_children +
248 child = subprocess.Popen(' '.join(args_for_children +
/external/junit/src/org/junit/experimental/theories/internal/
H A DParameterizedAssertionError.java16 super(String.format("%s(%s)", methodName, join(", ", params)),
24 public static String join(String delimiter, Object... params) { method in class:ParameterizedAssertionError
25 return join(delimiter, Arrays.asList(params));
28 public static String join(String delimiter, method in class:ParameterizedAssertionError
/external/skia/src/core/
H A DSkRect.cpp12 void SkIRect::join(int32_t left, int32_t top, int32_t right, int32_t bottom) { function in class:SkIRect
148 void SkRect::join(SkScalar left, SkScalar top, SkScalar right, function in class:SkRect
H A DSkPathEffect.cpp80 SkPaint::Join join, SkPaint::Cap cap, SkScalar miter)
82 fJoin(SkToU8(join)), fCap(SkToU8(cap)) {
79 SkStrokePathEffect(SkScalar width, SkPaint::Style style, SkPaint::Join join, SkPaint::Cap cap, SkScalar miter) argument
/external/v8/test/benchmarks/
H A Dtestcfg.py31 from os.path import join, split namespace
63 result.append(join(self.root, 'run.js'))
76 return open(join(self.root, 'run.js')).read()
89 path = join(path, 'benchmarks')
/external/v8/test/cctest/
H A Dtestcfg.py30 from os.path import join, dirname, exists namespace
52 if exists(join(self.context.buildspace, 'obj', 'test', self.mode)):
53 serialization_file = join('obj', 'test', self.mode, 'serdes')
55 serialization_file = join('obj', 'serdes')
57 serialization_file = join(self.context.buildspace, serialization_file)
58 serialization_file += ''.join(self.variant_flags).replace('-', '_')
88 executable = join(self.context.buildspace, executable)
90 executable = join('obj', 'test', mode, 'cctest')
93 executable = join(self.context.buildspace, executable)
112 status_file = join(sel
[all...]
/external/v8/test/es5conform/
H A Dtestcfg.py31 from os.path import join, exists namespace
78 current_root = join(self.root, 'data', 'TestCases')
80 harness += [join(self.root, 'data', 'SimpleTestHarness', f) for f in HARNESS_FILES]
81 harness += [join(self.root, 'harness-adapt.js')]
94 test = ES5ConformTestCase(join(root, file), full_path, self.context,
103 status_file = join(self.root, 'es5conform.status')
/external/v8/test/mozilla/
H A Dtestcfg.py31 from os.path import join, exists namespace
78 [ '--expose-gc', join(self.root, 'mozilla-shell-emulation.js') ]
98 current_root = join(self.root, 'data', test_dir)
112 script = join(self.root, reduce(join, dir, ''), 'shell.js')
122 test = MozillaTestCase(join(root, file), full_path, self.context,
131 status_file = join(self.root, 'mozilla.status')
/external/webkit/Tools/Scripts/webkitpy/layout_tests/port/
H A Dtest_files_unittest.py73 def join(self, *paths): member in class:MockWinFileSystem
74 return '\\'.join(paths)
/external/guava/guava/src/com/google/common/primitives/
H A DSignedBytes.java133 * by {@code separator}. For example, {@code join(":", 0x01, 0x02, -0x01)}
140 public static String join(String separator, byte... array) { method in class:SignedBytes
H A DUnsignedBytes.java157 * {@code separator}. For example, {@code join(":", (byte) 1, (byte) 2,
164 public static String join(String separator, byte... array) { method in class:UnsignedBytes
/external/jmonkeyengine/engine/src/test/jme3test/bullet/
H A DTestRagDoll.java60 join(body, shoulders, new Vector3f(0f, 1.4f, 0));
61 join(body, hips, new Vector3f(0f, -0.5f, 0));
63 join(uArmL, shoulders, new Vector3f(-0.75f, 1.4f, 0));
64 join(uArmR, shoulders, new Vector3f(0.75f, 1.4f, 0));
65 join(uArmL, lArmL, new Vector3f(-0.75f, .4f, 0));
66 join(uArmR, lArmR, new Vector3f(0.75f, .4f, 0));
68 join(uLegL, hips, new Vector3f(-.25f, -0.5f, 0));
69 join(uLegR, hips, new Vector3f(.25f, -0.5f, 0));
70 join(uLegL, lLegL, new Vector3f(-.25f, -1.7f, 0));
71 join(uLeg
99 private PhysicsJoint join(Node A, Node B, Vector3f connectionPoint) { method in class:TestRagDoll
[all...]
/external/v8/test/sputnik/
H A Dtestcfg.py30 from os.path import join, exists namespace
86 testroot = join(self.root, 'sputniktests')
87 modroot = join(testroot, 'tools')
107 status_file = join(self.root, 'sputnik.status')
/external/v8/test/test262/
H A Dtestcfg.py31 from os.path import join, exists namespace
81 testroot = join(self.root, 'data', 'test', 'suite')
82 harness = [join(self.root, 'data', 'test', 'harness', f)
84 harness += [join(self.root, 'harness-adapt.js')]
97 test = Test262TestCase(join(root, file), test_path, self.context,
105 archive_name = join(self.root, 'test262-%s.tar.bz2' % revision)
106 directory_name = join(self.root, "test262-%s" % revision)
120 archive.extractall(join(self.root))
121 if not exists(join(self.root, 'data')):
122 os.symlink(directory_name, join(sel
[all...]
/external/webkit/Tools/CodeCoverage/
H A Dregenerate-coverage-display52 os.environ["TTFPATH"] = ":".join(["/usr/share/fonts/truetype/" + d
69 shutil.copyfile(os.path.join(base_path,css), os.path.join(dest_dir,css))
70 map(lambda x: shutil.copyfile(os.path.join(base_path,x), os.path.join(dest_dir,x)), images)
76 index = open(os.path.join(dest_dir, name), "w")
173 from string import split, join namespace
176 text = join(split(text, a), b)
294 for datapath in glob.glob(os.path.join(datadir, "*.csv")):
328 imgdir = os.path.join(outdi
[all...]
/external/apache-harmony/luni/src/test/api/common/org/apache/harmony/luni/tests/java/net/
H A DDatagramSocketImplTest.java89 protected void join(InetAddress addr) throws IOException { method in class:MockDatagramSocketImpl
/external/chromium/base/memory/
H A Dlinked_ptr.h58 void join(linked_ptr_internal const* ptr) { function in class:linked_ptr_internal
64 // last member of the circle. Once this is done, you can join() another.
158 link_.join(&ptr->link_);
/external/chromium/testing/gtest/include/gtest/internal/
H A Dgtest-linked_ptr.h109 void join(linked_ptr_internal const* ptr) { function in class:testing::internal::linked_ptr_internal
119 // last member of the circle. Once this is done, you can join() another.
206 link_.join(&ptr->link_);
/external/gtest/include/gtest/internal/
H A Dgtest-linked_ptr.h109 void join(linked_ptr_internal const* ptr) { function in class:testing::internal::linked_ptr_internal
119 // last member of the circle. Once this is done, you can join() another.
206 link_.join(&ptr->link_);
/external/guava/guava/src/com/google/common/base/
H A DJoiner.java41 * return joiner.join("Harry", null, "Ron", "Hermione");}</pre>
57 * return joiner.join("wrong", null, "wrong");}</pre>
211 * @deprecated use {@link #join(Iterator)} by casting {@code parts} to
217 public final <I extends Object & Iterable<?> & Iterator<?>> String join(I parts) { method in class:Joiner
218 return join((Iterator<?>) parts);
225 public final String join(Iterable<?> parts) { method in class:Joiner
226 return join(parts.iterator());
236 public final String join(Iterator<?> parts) { method in class:Joiner
244 public final String join(Object[] parts) { method in class:Joiner
245 return join(Array
252 public final String join(@Nullable Object first, @Nullable Object second, Object... rest) { method in class:Joiner
376 public String join(Map<?, ?> map) { method in class:Joiner.MapJoiner
494 String join(I entries) throws IOException { method in class:Joiner.MapJoiner
506 public String join(Iterable<? extends Entry<?, ?>> entries) { method in class:Joiner.MapJoiner
517 public String join(Iterator<? extends Entry<?, ?>> entries) { method in class:Joiner.MapJoiner
[all...]

Completed in 390 milliseconds

1234