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

12345

/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/mockito/src/org/mockito/internal/util/
H A DStringJoiner.java10 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/robolectric/src/main/java/com/xtremelabs/robolectric/util/
H A DJoin.java6 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/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/robolectric/src/main/java/com/xtremelabs/robolectric/shadows/
H A DShadowTextUtils.java47 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/skia/gm/
H A Dstrokerect.cpp15 SkPaint::Join join, int doFill) {
22 paint.setStrokeJoin(join);
85 SkPaint::Join join = gJoins[i]; local
86 paint.setStrokeJoin(join);
95 draw_path(canvas, fillPath, r, join, doFill);
14 draw_path(SkCanvas* canvas, const SkPath& path, const SkRect& rect, SkPaint::Join join, int doFill) argument
/external/skia/legacy/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/skia/include/core/
H A DSkStrokeRec.h57 void setStrokeParams(SkPaint::Cap cap, SkPaint::Join join, SkScalar miterLimit) { argument
59 fJoin = join;
/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
167 void SkRect::join(SkScalar left, SkScalar top, SkScalar right, function in class:SkRect
/external/skia/src/utils/
H A DSkThreadUtils_pthread.cpp90 this->join();
110 void SkThread::join() { function in class:SkThread
H A DSkThreadUtils_win.cpp67 this->join();
91 void SkThread::join() { function in class:SkThread

Completed in 479 milliseconds

12345