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

1 2 34 5 6 7 8 91011>>

  /external/owasp/sanitizer/src/main/org/owasp/html/
AttributePolicy.java 69 public static final AttributePolicy join(AttributePolicy... policies) { method in class:AttributePolicy.Util
  /external/owasp/sanitizer/src/tests/org/owasp/html/
CssGrammarTest.java 43 CssTokens tokens = CssTokens.lex(Joiner.on('\n').join(
63 Joiner.on('\n').join(
100 Joiner.on('\n').join(actualTokens)); method
  /external/robolectric/v1/src/main/java/com/xtremelabs/robolectric/shadows/
ShadowTextUtils.java 6 import com.xtremelabs.robolectric.util.Join;
47 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/robolectric-shadows/processor/src/main/java/org/robolectric/annotation/processing/validator/
RealObjectValidator.java 24 public static String join(List<?> params) { method in class:RealObjectValidator
46 String typeString = join(typeParams);
47 String parentString = join(parentTypeParams);
  /external/skia/gm/
strokerect.cpp 16 SkPaint::Join join, int doFill) {
23 paint.setStrokeJoin(join);
67 constexpr SkPaint::Join gJoins[] = {
90 SkPaint::Join join = gJoins[i]; variable
91 paint.setStrokeJoin(join);
100 draw_path(canvas, fillPath, r, join, doFill);
  /external/skqp/gm/
strokerect.cpp 16 SkPaint::Join join, int doFill) {
23 paint.setStrokeJoin(join);
67 constexpr SkPaint::Join gJoins[] = {
90 SkPaint::Join join = gJoins[i]; variable
91 paint.setStrokeJoin(join);
100 draw_path(canvas, fillPath, r, join, doFill);
  /external/sl4a/Utils/src/com/googlecode/android_scripting/interpreter/
ExternalClassLoader.java 29 String joinedDexPaths = join(dexPaths, ":");
30 String joinedNativeLibPaths = nativePaths != null ? join(nativePaths, ":") : null;
38 private static String join(Collection<String> collection, String delimiter) { method in class:ExternalClassLoader
  /external/swiftshader/src/Common/
Thread.cpp 35 join(); // Make threads exit before deleting them to not block here
38 void Thread::join() function in class:sw::Thread
  /frameworks/base/libs/hwui/thread/
ThreadBase.h 48 void join() { Thread::join(); } function in class:android::uirenderer::ThreadBase
  /frameworks/native/cmds/lshal/
utils.h 58 std::string join(const A &components, const std::string &separator) { function in namespace:android::lshal
  /libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/net/
InetAddressThreadTest.java 155 thread1.join();
156 thread2.join();
157 thread3.join();
158 thread4.join();
  /packages/apps/Messaging/src/com/android/messaging/util/
ConversationIdSet.java 59 public static String join(final String conversationIdSet1, final String conversationIdSet2) { method in class:ConversationIdSet
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/x86_64-linux/include/c++/4.8/ext/pb_ds/detail/binary_heap_/
split_join_fn_imps.hpp 113 join(PB_DS_CLASS_C_DEC& other) function in class:PB_DS_CLASS_C_DEC
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/c++/4.8.3/ext/pb_ds/detail/binary_heap_/
split_join_fn_imps.hpp 113 join(PB_DS_CLASS_C_DEC& other) function in class:PB_DS_CLASS_C_DEC
  /prebuilts/go/darwin-x86/src/cmd/fix/
typecheck.go 170 err = ioutil.WriteFile(filepath.Join(dir, "in.go"), txt, 0600)
174 cmd := exec.Command(filepath.Join(runtime.GOROOT(), "bin", "go"), "tool", "cgo", "-objdir", dir, "-srcdir", dir, "in.go")
179 out, err := ioutil.ReadFile(filepath.Join(dir, "_cgo_gotypes.go"))
515 typeof[n] = join(out)
755 outs = " (" + join(out) + ")"
757 return "func(" + join(in) + ")" + outs
798 // join is the inverse of split.
799 func join(x []string) string { func
800 return strings.Join(x, ", ")
  /prebuilts/go/darwin-x86/src/path/filepath/
path_windows.go 117 func join(elem []string) string { func
126 // joinNonEmpty is like join, but it assumes that the first element is non-empty.
131 return Clean(elem[0] + strings.Join(elem[1:], string(Separator)))
133 // The following logic prevents Join from inadvertently creating a
134 // UNC path on Windows. Unless the first element is a UNC path, Join
136 p := Clean(strings.Join(elem, string(Separator)))
147 tail := Clean(strings.Join(elem[1:], string(Separator)))
  /prebuilts/go/linux-x86/src/cmd/fix/
typecheck.go 170 err = ioutil.WriteFile(filepath.Join(dir, "in.go"), txt, 0600)
174 cmd := exec.Command(filepath.Join(runtime.GOROOT(), "bin", "go"), "tool", "cgo", "-objdir", dir, "-srcdir", dir, "in.go")
179 out, err := ioutil.ReadFile(filepath.Join(dir, "_cgo_gotypes.go"))
515 typeof[n] = join(out)
755 outs = " (" + join(out) + ")"
757 return "func(" + join(in) + ")" + outs
798 // join is the inverse of split.
799 func join(x []string) string { func
800 return strings.Join(x, ", ")
  /prebuilts/go/linux-x86/src/path/filepath/
path_windows.go 117 func join(elem []string) string { func
126 // joinNonEmpty is like join, but it assumes that the first element is non-empty.
131 return Clean(elem[0] + strings.Join(elem[1:], string(Separator)))
133 // The following logic prevents Join from inadvertently creating a
134 // UNC path on Windows. Unless the first element is a UNC path, Join
136 p := Clean(strings.Join(elem, string(Separator)))
147 tail := Clean(strings.Join(elem[1:], string(Separator)))
  /system/tools/hidl/utils/include/hidl-util/
Formatter.h 105 // out.join(v.begin(), v.end(), ",", [&](const auto &e) {
109 Formatter& join(
163 Formatter& Formatter::join( function in class:android::Formatter
  /art/test/050-sync-test/src/
Main.java 68 one.join();
69 two.join();
  /art/test/084-class-init/src/
Main.java 92 fieldThread.join();
93 methodThread.join();
  /art/test/165-lock-owner-proxy/src/
Main.java 46 t.join();
49 garbageThread.join();
  /art/test/911-get-stack-trace/src/art/
AllTraces.java 35 deadThread.join();
68 threads[i].join(); method
  /cts/tools/vm-tests-tf/src/dot/junit/opcodes/monitor_enter/
Test_monitor_enter.java 42 tr1.join();
43 tr2.join();
62 tr1.join();
63 tr2.join();
  /external/icu/android_icu4j/src/main/tests/android/icu/dev/test/translit/
ThreadTest.java 46 thread.join();
97 th.join();

Completed in 658 milliseconds

1 2 34 5 6 7 8 91011>>