Searched defs:join (Results 76 - 100 of 164) sorted by relevance

1234567

/external/chromium_org/tools/telemetry/third_party/pyserial/serial/tools/
H A Dminiterm.py195 self.receiver_thread.join()
209 def join(self, transmit_only=False): member in class:Miniterm
210 self.transmitter_thread.join()
212 self.receiver_thread.join()
684 miniterm.join(True)
689 miniterm.join()
/external/chromium_org/v8/tools/
H A Dpresubmit.py40 from os.path import abspath, join, dirname, basename, exists namespace
196 all_files += self.FindFilesIn(join(path, file))
216 result.append(join(root, file))
239 return ['src', 'include', 'samples', join('test', 'cctest')]
244 cpplint = os.path.join(path, "cpplint.py")
258 filt = '-,' + ",".join(['+' + n for n in ENABLED_LINT_RULES])
260 cpplint = self.GetCpplintScript(join(path, "tools"))
268 commands = join([command + [file] for file in files])
311 result.append(join(path, file))
369 linenumbers = ', '.join(line
[all...]
/external/google-tv-pairing-protocol/java/src/com/google/polo/json/
H A DJSONArray.java392 public String join(String separator) throws JSONException { method in class:JSONArray
858 return '[' + join(",") + ']';
/external/guava/guava/src/com/google/common/primitives/
H A DBooleans.java234 * by {@code separator}. For example, {@code join("-", false, true, false)}
241 public static String join(String separator, boolean... array) { method in class:Booleans
H A DChars.java352 * by {@code separator}. For example, {@code join("-", '1', '2', '3')} returns
359 public static String join(String separator, char... array) { method in class:Chars
H A DDoubles.java292 * by {@code separator}. For example, {@code join("-", 1.0, 2.0, 3.0)} returns
303 public static String join(String separator, double... array) { method in class:Doubles
H A DFloats.java289 * {@code separator}. For example, {@code join("-", 1.0f, 2.0f, 3.0f)}
300 public static String join(String separator, float... array) { method in class:Floats
H A DShorts.java358 * by {@code separator}. For example, {@code join("-", (short) 1, (short) 2,
365 public static String join(String separator, short... array) { method in class:Shorts
H A DInts.java361 * by {@code separator}. For example, {@code join("-", 1, 2, 3)} returns
368 public static String join(String separator, int... array) { method in class:Ints
H A DLongs.java345 * by {@code separator}. For example, {@code join("-", 1L, 2L, 3L)} returns
352 public static String join(String separator, long... array) { method in class:Longs
/external/guava/guava-gwt/src-super/com/google/common/primitives/super/com/google/common/primitives/
H A DChars.java301 * by {@code separator}. For example, {@code join("-", '1', '2', '3')} returns
308 public static String join(String separator, char... array) { method in class:Chars
H A DInts.java305 * by {@code separator}. For example, {@code join("-", 1, 2, 3)} returns
312 public static String join(String separator, int... array) { method in class:Ints
H A DLongs.java278 * by {@code separator}. For example, {@code join("-", 1L, 2L, 3L)} returns
285 public static String join(String separator, long... array) { method in class:Longs
H A DShorts.java306 * by {@code separator}. For example, {@code join("-", (short) 1, (short) 2,
313 public static String join(String separator, short... array) { method in class:Shorts
/external/owasp/sanitizer/src/main/org/owasp/html/
H A DHtmlLexer.java174 collapsed = join(collapsed, next);
218 private static HtmlToken join(HtmlToken a, HtmlToken b) { method in class:HtmlLexer
/external/robolectric/src/main/java/com/xtremelabs/robolectric/shadows/
H A DShadowPaint.java21 private Paint.Join join; field in class:ShadowPaint
99 public void setStrokeJoin(Paint.Join join) { argument
100 this.join = join;
105 return join;
174 * @return join
177 return join;
/external/skia/src/core/
H A DSkStrokerPriv.cpp189 check if we're trying to join an upright right angle
252 SkStrokerPriv::JoinProc SkStrokerPriv::JoinFactory(SkPaint::Join join) argument
258 SkASSERT((unsigned)join < SkPaint::kJoinCount);
259 return gJoiners[join];
/external/bluetooth/bluedroid/embdrv/sbc/decoder/include/
H A Doi_codec_sbc.h144 OI_UINT8 join; /**< Whether joint stereo has been used. */ member in struct:__anon1107
/external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/common/system/
H A Dfilesystem_mock.py81 return self.abspath(self.join(self.cwd, path))
182 return re.sub(re.escape(os.path.sep), self.sep, os.path.join(*comps))
184 def join(self, *comps): member in class:MockFileSystem
238 self.last_tmpdir = self.join(dir, '%s_%u_%s' % (prefix, curno, suffix))
265 norm_path = self.normpath(self.join(*path))
400 destination_path = self.join(destination, self.relpath(source_file, source))
/external/chromium_org/third_party/skia/gm/
H A Ddegeneratesegments.cpp197 const SkRect& clip, SkPaint::Cap cap, SkPaint::Join join,
204 paint.setStrokeJoin(join);
196 drawPath(SkPath& path, SkCanvas* canvas, SkColor color, const SkRect& clip, SkPaint::Cap cap, SkPaint::Join join, SkPaint::Style style, SkPath::FillType fill, SkScalar strokeWidth) argument
/external/chromium_org/tools/telemetry/telemetry/unittest/
H A Dsystem_stub.py227 def join(self, *paths): member in class:OsModuleStub.OsPathModuleStub
242 tmp = os.path.join(*paths)
245 tmp = os.path.join(*paths)
/external/guava/guava/src/com/google/common/io/
H A DByteStreams.java864 public static InputSupplier<InputStream> join( method in class:ByteStreams
873 /** Varargs form of {@link #join(Iterable)}. */
874 public static InputSupplier<InputStream> join( method in class:ByteStreams
876 return join(Arrays.asList(suppliers));
/external/skia/gm/
H A Ddegeneratesegments.cpp197 const SkRect& clip, SkPaint::Cap cap, SkPaint::Join join,
204 paint.setStrokeJoin(join);
196 drawPath(SkPath& path, SkCanvas* canvas, SkColor color, const SkRect& clip, SkPaint::Cap cap, SkPaint::Join join, SkPaint::Style style, SkPath::FillType fill, SkScalar strokeWidth) argument
/external/srec/srec/Vocabulary/src/
H A DVocabularyImpl.c302 void join(LCHAR* toJoin, LCHAR* end, LCHAR join_char) function
/external/antlr/antlr-3.4/tool/src/test/java/org/antlr/test/
H A DBaseTest.java378 stdoutVacuum.join();
379 stderrVacuum.join();
527 public void join() throws InterruptedException { method in class:BaseTest.StreamVacuum
528 sucker.join();

Completed in 914 milliseconds

1234567