/external/chromium_org/remoting/base/ |
auto_thread.h | 37 scoped_refptr<AutoThreadTaskRunner> joiner, 41 scoped_refptr<AutoThreadTaskRunner> joiner); 49 scoped_refptr<AutoThreadTaskRunner> joiner, 80 AutoThread(const char* name, AutoThreadTaskRunner* joiner);
|
auto_thread.cc | 58 scoped_refptr<AutoThreadTaskRunner> joiner, 60 AutoThread* thread = new AutoThread(name, joiner.get()); 69 const char* name, scoped_refptr<AutoThreadTaskRunner> joiner) { 70 return CreateWithType(name, joiner, base::MessageLoop::TYPE_DEFAULT); 77 scoped_refptr<AutoThreadTaskRunner> joiner, 80 AutoThread* thread = new AutoThread(name, joiner); 100 AutoThread::AutoThread(const char* name, AutoThreadTaskRunner* joiner) 108 joiner_(joiner) {
|
/external/guava/guava-tests/test/com/google/common/base/ |
JoinerTest.java | 21 import com.google.common.base.Joiner.MapJoiner; 39 * Unit test for {@link Joiner}. 45 private static final Joiner J = Joiner.on("-"); 91 Joiner onChar = Joiner.on('-'); 99 Joiner skipNulls = J.skipNulls(); 113 Joiner zeroForNull = J.useForNull("0"); 126 private static void checkNoOutput(Joiner joiner, Iterable<Integer> set) [all...] |
/external/guava/guava/src/com/google/common/base/ |
Joiner.java | 39 * Joiner joiner = Joiner.on("; ").skipNulls(); 41 * return joiner.join("Harry", null, "Ron", "Hermione");}</pre> 49 * <p><b>Warning: joiner instances are always immutable</b>; a configuration method such as {@code 50 * useForNull} has no effect on the instance it is invoked on! You must store and use the new joiner 55 * Joiner joiner = Joiner.on(','); 56 * joiner.skipNulls(); // does nothing [all...] |
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/email/ |
base64mime.py | 118 # specify the leading whitespace in the joiner? 119 joiner = eol + ' ' 120 return joiner.join(lines)
|
header.py | 375 joiner = NL + self._continuation_ws 376 return joiner.join(chunks) 453 joiner = eol + ' ' 454 joinlen = len(joiner) 470 lines.append(joiner.join(this) + eol) 488 lines.append(joiner.join(this))
|
quoprimime.py | 174 # the joiner? 175 joiner = eol + ' ' 176 return joiner.join(['=?%s?q?%s?=' % (charset, line) for line in quoted])
|
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/email/ |
base64mime.py | 118 # specify the leading whitespace in the joiner? 119 joiner = eol + ' ' 120 return joiner.join(lines)
|
header.py | 375 joiner = NL + self._continuation_ws 376 return joiner.join(chunks) 453 joiner = eol + ' ' 454 joinlen = len(joiner) 470 lines.append(joiner.join(this) + eol) 488 lines.append(joiner.join(this))
|
quoprimime.py | 174 # the joiner? 175 joiner = eol + ' ' 176 return joiner.join(['=?%s?q?%s?=' % (charset, line) for line in quoted])
|
/external/chromium/chrome/browser/extensions/ |
extension_proxy_api_helpers.h | 82 // Joins a list of URLs (stored as StringValues) in |list| with |joiner| 85 const std::string& joiner,
|
extension_proxy_api_helpers.cc | 228 const std::string& joiner, 234 result.append(joiner);
|
/external/chromium_org/chrome/browser/extensions/api/proxy/ |
proxy_api_helpers.h | 101 // Joins a list of URLs (stored as StringValues) in |list| with |joiner| 104 const std::string& joiner,
|
proxy_api_helpers.cc | 259 const std::string& joiner, 266 result.append(joiner);
|
/libcore/luni/src/main/java/java/util/concurrent/ |
ForkJoinPool.java | 358 * reassign the joiner's run-time stack with another and replace 364 * Helping: Arranging for the joiner to execute some task that it 389 * In essence, the joiner executes a task that would be on its own [all...] |
/external/valgrind/main/drd/ |
drd_thread.c | 378 const ThreadId joiner = DRD_(DrdThreadIdToVgThreadId)(drd_joiner); local 385 "drd_post_thread_join joiner = %d, joinee = %d", 387 if (joiner) [all...] |
drd_thread.h | 172 void DRD_(thread_combine_vc_join)(const DrdThreadId joiner,
|
/external/valgrind/main/drd/tests/ |
fp_race_xml.stderr.exp | 82 <trace><text>drd_post_thread_join joiner = 1, joinee = 2, new vc: [ ... ]</text></trace>
|
/external/guava/guava-tests/test/com/google/common/collect/ |
ImmutableBiMapTest.java | 23 import com.google.common.base.Joiner; 153 private static final Joiner joiner = Joiner.on(", "); field in class:ImmutableBiMapTest.AbstractMapTests 165 assertEquals("{" + joiner.join(map.entrySet()) + "}", 167 assertEquals("[" + joiner.join(map.entrySet()) + "]", 169 assertEquals("[" + joiner.join(map.keySet()) + "]", 171 assertEquals("[" + joiner.join(map.values()) + "]",
|
ImmutableMapTest.java | 23 import com.google.common.base.Joiner; 152 private static final Joiner joiner = Joiner.on(", "); field in class:ImmutableMapTest.AbstractMapTests 161 assertEquals("{" + joiner.join(map.entrySet()) + "}", 163 assertEquals("[" + joiner.join(map.entrySet()) + "]", 165 assertEquals("[" + joiner.join(map.keySet()) + "]", 167 assertEquals("[" + joiner.join(map.values()) + "]",
|
ImmutableSortedMapTest.java | 23 import com.google.common.base.Joiner; 166 private static final Joiner joiner = Joiner.on(", "); field in class:ImmutableSortedMapTest.AbstractMapTests 175 assertEquals("{" + joiner.join(map.entrySet()) + "}", 177 assertEquals("[" + joiner.join(map.entrySet()) + "]", 179 assertEquals("[" + joiner.join(map.keySet()) + "]", 181 assertEquals("[" + joiner.join(map.values()) + "]",
|
/external/chromium/chrome/browser/sync/syncable/ |
directory_backing_store.cc | 150 const char* joiner = " "; local 153 output->append(joiner); 155 joiner = ", "; [all...] |
/external/chromium_org/chrome/browser/sync/test/integration/ |
sync_test.cc | 723 char joiner = '?'; local 728 "%ctype=%d", joiner, 730 joiner = '&';
|
/external/chromium_org/sync/syncable/ |
directory_backing_store.cc | 140 const char* joiner = " "; local 143 output->append(joiner); 145 joiner = ", "; [all...] |
/frameworks/base/core/java/android/app/ |
DownloadManager.java | [all...] |