HomeSort by relevance Sort by last modified time
    Searched defs:Join (Results 51 - 75 of 132) sorted by null

1 23 4 5 6

  /external/v8/src/base/platform/
platform-posix.cc 648 void Thread::Join() {
platform-win32.cc     [all...]
  /external/v8/src/js/
array.js 132 // join invocations.
166 function Join(array, length, separator, use_locale) {
336 func = this.join;
338 return Join(this, this.length, ',', false);
343 func = array.join;
353 return Join(array, TO_LENGTH(length), ',', true);
378 return Join(array, length, separator, false);
383 CHECK_OBJECT_COERCIBLE(this, "Array.prototype.join");
    [all...]
  /external/v8/testing/gtest/src/
gtest-port.cc 364 Join();
367 void ThreadWithParamBase::Join() {
369 << "Failed to join the thread with error " << ::GetLastError() << ".";
    [all...]
  /external/vulkan-validation-layers/tests/gtest-1.7.0/src/
gtest-port.cc 341 Join();
344 void ThreadWithParamBase::Join() {
346 << "Failed to join the thread with error " << ::GetLastError() << ".";
    [all...]
  /prebuilts/ndk/r16/sources/third_party/vulkan/src/tests/gtest-1.7.0/src/
gtest-port.cc 341 Join();
344 void ThreadWithParamBase::Join() {
346 << "Failed to join the thread with error " << ::GetLastError() << ".";
    [all...]
  /external/skia/include/core/
SkPaint.h 663 /** \enum SkPaint::Join
664 Join specifies how corners are drawn when a shape is stroked. Join
668 Choose miter join to draw sharp corners. Choose round join to draw a circle with a
669 radius equal to the stroke width on top of the corner. Choose bevel join to minimally
672 The fill path constructed to describe the stroked path respects the join setting but may
673 not contain the actual join. For instance, a fill path constructed with round joins does
676 enum Join {
685 kLast_Join = kBevel_Join, //!< Equivalent to the largest value for Join
    [all...]
  /external/skqp/include/core/
SkPaint.h 662 /** \enum SkPaint::Join
663 Join specifies how corners are drawn when a shape is stroked. Join
667 Choose miter join to draw sharp corners. Choose round join to draw a circle with a
668 radius equal to the stroke width on top of the corner. Choose bevel join to minimally
671 The fill path constructed to describe the stroked path respects the join setting but may
672 not contain the actual join. For instance, a fill path constructed with round joins does
675 enum Join {
684 kLast_Join = kBevel_Join, //!< Equivalent to the largest value for Join
    [all...]
  /external/tensorflow/tensorflow/compiler/tf2xla/
functionalize_control_flow.cc 99 str_util::Join(nodes, ",",
668 Status Join(const ForwardFlowNode& src_state, const Node* dst,
745 Status FunctionalizeCond::Join(const ForwardFlowNode& src_state,
    [all...]
  /external/valgrind/drd/tests/
tsan_thread_wrappers_pthread.h 355 void Join() { CHECK(0 == pthread_join(t_, NULL));}
498 // and then join all threads in the pool.
526 //! Wait workers to finish, then join all threads.
532 workers_[i]->Join();
  /prebuilts/misc/common/robolectric/3.5.1/lib/
utils-3.5.1.jar 
  /external/google-breakpad/src/testing/gtest/include/gtest/internal/
gtest-port.h     [all...]
  /external/llvm/utils/unittest/googletest/include/gtest/internal/
gtest-port.h     [all...]
  /external/mesa3d/src/gtest/include/gtest/internal/
gtest-port.h     [all...]
  /external/protobuf/gtest/include/gtest/internal/
gtest-port.h     [all...]
  /external/swiftshader/third_party/LLVM/utils/unittest/googletest/include/gtest/internal/
gtest-port.h     [all...]
  /external/vulkan-validation-layers/tests/gtest-1.7.0/include/gtest/internal/
gtest-port.h     [all...]
  /prebuilts/ndk/r16/sources/third_party/googletest/googletest/include/gtest/internal/
gtest-port.h     [all...]
  /prebuilts/ndk/r16/sources/third_party/vulkan/src/tests/gtest-1.7.0/include/gtest/internal/
gtest-port.h     [all...]
  /prebuilts/misc/common/robolectric/3.4.2/lib/
utils-3.4.2.jar 
  /prebuilts/misc/common/robolectric/3.6.1/lib/
utils-3.6.1.jar 
  /external/googletest/googletest/include/gtest/internal/
gtest-port.h     [all...]
  /external/libvpx/libvpx/third_party/googletest/src/include/gtest/internal/
gtest-port.h     [all...]
  /external/v8/testing/gtest/include/gtest/internal/
gtest-port.h     [all...]
  /frameworks/base/graphics/java/android/graphics/
Paint.java 101 static final Join[] sJoinArray = {
102 Join.MITER, Join.ROUND, Join.BEVEL
417 * The Join specifies the treatment where lines and curve segments
418 * join on a stroked path. The default is MITER.
420 public enum Join {
422 * The outer edges of a join meet at a sharp angle
426 * The outer edges of a join meet in a circular arc.
430 * The outer edges of a join meet with a straight lin
    [all...]

Completed in 1617 milliseconds

1 23 4 5 6