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

1 2 3 4 5 6 7 8 91011>>

  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/x86_64-linux/include/c++/4.8/ext/pb_ds/detail/rc_binomial_heap_/
split_join_fn_imps.hpp 63 join(PB_DS_CLASS_C_DEC& other) function in class:PB_DS_CLASS_C_DEC
70 base_type::join(other);
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/c++/4.8.3/ext/pb_ds/detail/rc_binomial_heap_/
split_join_fn_imps.hpp 63 join(PB_DS_CLASS_C_DEC& other) function in class:PB_DS_CLASS_C_DEC
70 base_type::join(other);
  /external/parameter-framework/upstream/utility/
Utility.h 42 /** Join all elements in [first, last[ with op.
44 * If their is no element to join, return empty.
50 * then join(first, last, op) == "1|2|3"
54 T join(InputIt first, InputIt last, BinaryOperation op, T empty = T{}) function in namespace:utility
  /external/skia/tools/skpbench/
_os_path.py 9 def join(*pathnames): function
10 return path.join(*pathnames)
19 pathnames.extend(glob.iglob(path.join(skp, '*.skp')))
_adb_path.py 16 def join(*pathnames): function
17 return '/'.join(pathnames)
32 done''' % ' '.join(escapedskps)).splitlines()
  /external/skqp/tools/skpbench/
_os_path.py 9 def join(*pathnames): function
10 return path.join(*pathnames)
19 pathnames.extend(glob.iglob(path.join(skp, '*.skp')))
_adb_path.py 16 def join(*pathnames): function
17 return '/'.join(pathnames)
32 done''' % ' '.join(escapedskps)).splitlines()
  /libcore/ojluni/src/test/
artrun 58 function join { local IFS="$1"; shift; echo "$*"; } function
115 export BOOTCLASSPATH=$(join ":" "${BOOT_DEXJARS_ABS[@]}") # a,b,c
  /external/clang/test/Preprocessor/
c99-6_10_3_3_p4.c 6 #define join(c, d) in_between(c hash_hash d) macro
7 char p[] = join(x, y);
macro_paste_hashhash.c 5 #define join(c, d) in_between(c hash_hash d) macro
7 join(x, y);
  /external/libyuv/files/
PRESUBMIT.py 13 def join(*args): function in function:_RunPythonTests
14 return input_api.os_path.join(input_api.PresubmitLocalPath(), *args)
17 root for root, _, files in os.walk(join('tools_libyuv'))
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/x86_64-linux/include/c++/4.8/ext/pb_ds/detail/ov_tree_map_/
split_join_fn_imps.hpp 94 join(PB_DS_CLASS_C_DEC& other) function in class:PB_DS_CLASS_C_DEC
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/x86_64-linux/include/c++/4.8/ext/pb_ds/detail/splay_tree_/
split_join_fn_imps.hpp 44 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/ov_tree_map_/
split_join_fn_imps.hpp 94 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/splay_tree_/
split_join_fn_imps.hpp 44 join(PB_DS_CLASS_C_DEC& other) function in class:PB_DS_CLASS_C_DEC
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Tools/scripts/
mkreal.py 11 join = os.path.join variable
39 linkto = join(os.pardir, linkto)
43 os.symlink(join(linkto, filename), join(name, filename))
  /external/llvm/lib/Support/
IntEqClasses.cpp 14 // passing a representative member of each class to join().
32 unsigned IntEqClasses::join(unsigned a, unsigned b) { function in class:IntEqClasses
33 assert(NumClasses == 0 && "join() called after compress().");
  /external/python/cpython2/Tools/scripts/
mkreal.py 11 join = os.path.join variable
39 linkto = join(os.pardir, linkto)
43 os.symlink(join(linkto, filename), join(name, filename))
  /external/python/cpython3/Tools/scripts/
mkreal.py 11 join = os.path.join variable
39 linkto = join(os.pardir, linkto)
43 os.symlink(join(linkto, filename), join(name, filename))
  /external/swiftshader/third_party/LLVM/lib/Support/
IntEqClasses.cpp 14 // 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().");
  /libcore/ojluni/src/main/java/java/nio/channels/
MulticastChannel.java 54 * <p> The {@link #join(InetAddress,NetworkInterface)} method is used to
55 * join a group and receive all multicast datagrams sent to the group. A channel
56 * may join several multicast groups and may join the same group on several
63 * <p> The {@link #join(InetAddress,NetworkInterface,InetAddress)} method
84 * will join. There is no guarantee that a channel to a socket in one protocol
85 * family can join and receive multicast datagrams when the address of the
88 * socket can join an {@link StandardProtocolFamily#INET IPv4} multicast group and receive
105 * // join multicast group on this interface, and also use this
116 * MembershipKey key = dc.join(group, ni)
180 MembershipKey join(InetAddress group, NetworkInterface interf) method in interface:MulticastChannel
228 MembershipKey join(InetAddress group, NetworkInterface interf, InetAddress source) method in interface:MulticastChannel
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/x86_64-linux/include/c++/4.8/ext/pb_ds/detail/pairing_heap_/
split_join_fn_imps.hpp 92 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/pairing_heap_/
split_join_fn_imps.hpp 92 join(PB_DS_CLASS_C_DEC& other) function in class:PB_DS_CLASS_C_DEC
  /art/test/144-static-field-sigquit/src/
Main.java 28 thread1.join();
29 thread2.join();
  /art/test/148-multithread-gc-annotations/src/
Main.java 25 annoThread.join();
26 gcThread.join();

Completed in 414 milliseconds

1 2 3 4 5 6 7 8 91011>>