HomeSort by relevance Sort by last modified time
    Searched defs:join (Results 276 - 300 of 1717) sorted by null

<<11121314151617181920>>

  /external/protobuf/java/util/src/test/java/com/google/protobuf/util/
TimeUtilTest.java 141 thread.join();
  /external/python/cpython2/Lib/
imputil.py 452 join = None
468 if join is None:
469 def join(a, b, sep=sep): function in function:_os_bootstrap
481 _os_path_join = join
ntpath.py 17 __all__ = ["normcase","isabs","join","splitdrive","split","splitext",
62 # Join two (or more) paths.
63 def join(path, *paths): function
64 """Join two or more pathname components, inserting "\\" as needed."""
171 # join(head, tail) == p holds.
271 name = join(top, name)
306 userhome = join(drive, os.environ['HOMEPATH'])
309 userhome = join(dirname(userhome), path[1:i])
464 return prefix + backslash.join(comps)
479 path = join(cwd, path
    [all...]
posixpath.py 21 __all__ = ["normcase","isabs","join","splitdrive","split","splitext",
57 # Join pathnames.
61 def join(a, *p): function
62 """Join two or more pathname components, inserting '/' as needed.
189 s2 = os.lstat(realpath(join(path, '..')))
233 name = join(top, name)
352 path = slash.join(comps)
365 path = join(cwd, path)
378 # Join two paths, normalizing and eliminating any symbolic links
395 path = join(path, pardir, pardir
    [all...]
  /external/python/cpython2/Lib/plat-riscos/
riscospath.py 106 def join(a, *p): function
108 Join path elements with the directory separator, replacing the entire path when
376 name= join(top, name)
  /external/python/cpython2/PC/os2emx/
getpathp.c 146 join(char *buffer, char *stuff) function
166 * 'prefix' is null terminated in bounds. join() ensures
175 join(prefix, landmark);
242 /* join() is safe for MAXPATHLEN+1 size buffer */
243 join(progpath, prog);
  /external/python/cpython3/Lib/multiprocessing/
process.py 83 ':'.join(str(i) for i in self._identity)
115 def join(self, timeout=None): member in class:BaseProcess
119 assert self._parent_pid == os.getpid(), 'can only join a child process'
120 assert self._popen is not None, 'can only join a started process'
  /external/python/cpython3/Lib/
ntpath.py 14 __all__ = ["normcase","isabs","join","splitdrive","split","splitext",
73 # Join two (or more) paths.
74 def join(path, *paths): function
114 genericpath._check_arg_types('join', path, *paths)
196 # join(head, tail) == p holds.
334 userhome = join(drive, os.environ['HOMEPATH'])
340 userhome = join(dirname(userhome), path[1:i])
518 return prefix + sep.join(comps)
534 path = join(cwd, path)
599 return join(*rel_list
    [all...]
posixpath.py 19 __all__ = ["normcase","isabs","join","splitdrive","split","splitext",
69 # Join pathnames.
73 def join(a, *p): function
74 """Join two or more pathname components, inserting '/' as needed.
92 genericpath._check_arg_types('join', a, *p)
201 parent = join(path, b'..')
203 parent = join(path, '..')
361 path = sep.join(comps)
375 path = join(cwd, path)
389 # Join two paths, normalizing and eliminating any symbolic link
    [all...]
  /external/robolectric/v1/src/test/java/com/xtremelabs/robolectric/shadows/
HandlerThreadTest.java 26 handlerThread.join();
50 handlerThread.join();
62 handlerThread.join();
  /external/robolectric-shadows/robolectric/src/test/java/org/robolectric/shadows/
ShadowHandlerThreadTest.java 30 handlerThread.join();
56 handlerThread.join();
68 handlerThread.join();
  /external/skia/experimental/svg/model/
SkSVGRenderContext.cpp 90 SkPaint::Join toSkJoin(const SkSVGLineJoin& join) {
91 switch (join.type()) {
210 const auto& join = *attrs.fStrokeLineJoin.get(); local
211 if (join.type() != SkSVGLineJoin::Type::kInherit) {
212 pctx->fStrokePaint.setStrokeJoin(toSkJoin(join));
  /external/skia/src/gpu/
GrStyle.cpp 27 // One for res scale, one for style/cap/join, one for miter limit, and one for width.
83 SkPaint::Join join = SkPaint::kDefault_Join; local
87 join = style.strokeRec().getJoin();
89 if (SkPaint::kMiter_Join == join) {
95 join << kJoinShift |
  /external/skia/src/gpu/gl/
GrGLPath.cpp 56 inline GrGLenum join_to_gl_join(SkPaint::Join join) {
62 return gSkJoinsToGrGLJoins[join];
261 GrGLenum join = join_to_gl_join(stroke.getJoin()); local
262 GR_GL_CALL(gpu->glInterface(), PathParameteri(pathID, GR_GL_PATH_JOIN_STYLE, join));
  /external/skia/src/utils/
SkMultiPictureDocument.cpp 40 static SkSize join(const SkTArray<SkSize>& sizes) { function in namespace:__anon34237
77 SkSize bigsize = join(fSizes);
  /external/skqp/experimental/svg/model/
SkSVGRenderContext.cpp 90 SkPaint::Join toSkJoin(const SkSVGLineJoin& join) {
91 switch (join.type()) {
210 const auto& join = *attrs.fStrokeLineJoin.get(); local
211 if (join.type() != SkSVGLineJoin::Type::kInherit) {
212 pctx->fStrokePaint.setStrokeJoin(toSkJoin(join));
  /external/skqp/src/gpu/
GrStyle.cpp 27 // One for res scale, one for style/cap/join, one for miter limit, and one for width.
83 SkPaint::Join join = SkPaint::kDefault_Join; local
87 join = style.strokeRec().getJoin();
89 if (SkPaint::kMiter_Join == join) {
95 join << kJoinShift |
  /external/skqp/src/gpu/gl/
GrGLPath.cpp 56 inline GrGLenum join_to_gl_join(SkPaint::Join join) {
62 return gSkJoinsToGrGLJoins[join];
261 GrGLenum join = join_to_gl_join(stroke.getJoin()); local
262 GR_GL_CALL(gpu->glInterface(), PathParameteri(pathID, GR_GL_PATH_JOIN_STYLE, join));
  /external/skqp/src/utils/
SkMultiPictureDocument.cpp 40 static SkSize join(const SkTArray<SkSize>& sizes) { function in namespace:__anon34905
77 SkSize bigsize = join(fSizes);
  /external/swiftshader/third_party/llvm-subzero/include/llvm/ADT/
StringExtras.h 232 inline std::string join(IteratorT Begin, IteratorT End, StringRef Separator) { function in namespace:llvm
  /external/testng/src/main/java/org/testng/internal/
Yaml.java 140 .append(Utils.join(t.getIncludedGroups(), ","))
146 .append(Utils.join(t.getExcludedGroups(), ","))
157 .append(Utils.join(entry.getValue(), ",")).append(" ] ");
  /external/volley/src/test/java/com/android/volley/
NetworkDispatcherTest.java 58 mDispatcher.join();
  /frameworks/base/apct-tests/perftests/core/src/android/text/
StaticLayoutMultithreadPerfTest.java 94 thread.join();
  /frameworks/base/tests/UiBench/src/com/android/test/uibench/
GlTextureViewActivity.java 78 mRenderThread.join();
  /frameworks/base/tests/WindowManagerStressTest/src/test/windowmanagerstresstest/
MainActivity.java 119 t.join();

Completed in 1530 milliseconds

<<11121314151617181920>>