/packages/apps/SpeechRecorder/src/com/android/speechrecorder/ |
SpeechRecorderActivity.java | 212 mThread.join();
|
/packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/utils/ |
CsvUtils.java | 25 * utility class are {@link #split(String)}, {@link #split(int,String)}, {@link #join(String...)}, 26 * {@link #join(int,String...)}, and {@link #join(int,int[],String...)}. 47 * A flag for {@link #join(int,String...)} and {@link #join(int,int[],String...)}. If this 52 * A flag for {@link #join(int,String...)} and {@link #join(int,int[],String...)}. If this 278 * Join CSV text fields with comma. The column positions of the fields can be specified 281 * @param joinFlags flags for join behavior. {@link #JOIN_FLAGS_EXTRA_SPACE} will add an extra 291 public static String join(final int joinFlags, final int columnPositions[] method in class:CsvUtils 310 public static String join(final int joinFlags, final String... fields) { method in class:CsvUtils 315 public static String join(final String... fields) { method in class:CsvUtils [all...] |
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/bsddb/ |
dbshelve.py | 273 def join(self, cursorList, flags=0): member in class:DBShelf
|
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/distutils/tests/ |
test_sdist.py | 7 from os.path import join namespace 65 os.mkdir(join(self.tmp_dir, 'somecode')) 66 os.mkdir(join(self.tmp_dir, 'dist')) 98 os.mkdir(join(self.tmp_dir, 'somecode', '.svn')) 101 os.mkdir(join(self.tmp_dir, 'somecode', '.hg')) 105 os.mkdir(join(self.tmp_dir, 'somecode', '.git')) 122 dist_folder = join(self.tmp_dir, 'dist') 126 zip_file = zipfile.ZipFile(join(dist_folder, 'fake-1.0.zip')) 152 dist_folder = join(self.tmp_dir, 'dist') 157 os.remove(join(dist_folder, 'fake-1.0.tar') [all...] |
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/ |
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
|
posixpath.py | 28 __all__ = ["normcase","isabs","join","splitdrive","split","splitext", 64 # Join pathnames. 68 def join(a, *p): function 69 """Join two or more pathname components, inserting '/' as needed. 196 s2 = os.lstat(join(path, '..')) 240 name = join(top, name) 344 path = slash.join(comps) 357 path = join(cwd, path) 370 # Join two paths, normalizing ang eliminating any symbolic links 387 path = join(path, pardir, pardir [all...] |
stringold.py | 118 # Join fields with optional separator 119 def join(words, sep = ' '): function 120 """join(list [,sep]) -> string 126 (joinfields and join are synonymous) 129 return sep.join(words) 130 joinfields = join 373 word using capitalize, and join the capitalized words using 374 join. Note that this replaces runs of whitespace characters by 378 return join(map(capitalize, s.split(sep)), sep or ' ') 399 return join(L, "" [all...] |
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/multiprocessing/ |
pool.py | 204 worker.join() 454 def join(self): member in class:Pool 457 self._worker_handler.join() 458 self._task_handler.join() 459 self._result_handler.join() 461 p.join() 493 worker_handler.join(1e100) 504 task_handler.join(1e100) 508 result_handler.join(1e100) 516 p.join() [all...] |
queues.py | 214 thread.join() 288 # A queue type which also supports join() and task_done() methods 336 def join(self): member in class:JoinableQueue
|
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/bsddb/ |
dbshelve.py | 273 def join(self, cursorList, flags=0): member in class:DBShelf
|
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/distutils/tests/ |
test_sdist.py | 7 from os.path import join namespace 65 os.mkdir(join(self.tmp_dir, 'somecode')) 66 os.mkdir(join(self.tmp_dir, 'dist')) 98 os.mkdir(join(self.tmp_dir, 'somecode', '.svn')) 101 os.mkdir(join(self.tmp_dir, 'somecode', '.hg')) 105 os.mkdir(join(self.tmp_dir, 'somecode', '.git')) 122 dist_folder = join(self.tmp_dir, 'dist') 126 zip_file = zipfile.ZipFile(join(dist_folder, 'fake-1.0.zip')) 152 dist_folder = join(self.tmp_dir, 'dist') 157 os.remove(join(dist_folder, 'fake-1.0.tar') [all...] |
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/ |
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
|
posixpath.py | 28 __all__ = ["normcase","isabs","join","splitdrive","split","splitext", 64 # Join pathnames. 68 def join(a, *p): function 69 """Join two or more pathname components, inserting '/' as needed. 196 s2 = os.lstat(join(path, '..')) 240 name = join(top, name) 344 path = slash.join(comps) 357 path = join(cwd, path) 370 # Join two paths, normalizing ang eliminating any symbolic links 387 path = join(path, pardir, pardir [all...] |
stringold.py | 118 # Join fields with optional separator 119 def join(words, sep = ' '): function 120 """join(list [,sep]) -> string 126 (joinfields and join are synonymous) 129 return sep.join(words) 130 joinfields = join 373 word using capitalize, and join the capitalized words using 374 join. Note that this replaces runs of whitespace characters by 378 return join(map(capitalize, s.split(sep)), sep or ' ') 399 return join(L, "" [all...] |
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/multiprocessing/ |
pool.py | 204 worker.join() 454 def join(self): member in class:Pool 457 self._worker_handler.join() 458 self._task_handler.join() 459 self._result_handler.join() 461 p.join() 493 worker_handler.join(1e100) 504 task_handler.join(1e100) 508 result_handler.join(1e100) 516 p.join() [all...] |
queues.py | 214 thread.join() 288 # A queue type which also supports join() and task_done() methods 336 def join(self): member in class:JoinableQueue
|
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/gle2/ |
CustomViewFinder.java | 150 job.join();
|
/sdk/eclipse/plugins/com.android.ide.eclipse.tests/src/com/android/ide/eclipse/adt/internal/wizards/exportgradle/ |
ExportGradleTest.java | 124 job.join(); 201 job.join(); 238 job.join();
|
/system/core/libutils/ |
Threads.cpp | 829 status_t Thread::join() function in class:android::Thread 834 "Thread (this=%p): don't call join() from this "
|
/cts/suite/audio_quality/client/src/com/android/cts/audiotest/ |
AudioProtocol.java | 107 mThread.join(); 492 join(); method
|
/libcore/luni/src/test/java/libcore/java/sql/ |
OldStatementTest.java | [all...] |
/libcore/luni/src/test/java/tests/api/javax/net/ssl/ |
HandshakeCompletedEventTest.java | 356 serverThread.join(); 357 clientThread.join();
|
SSLSessionTest.java | 298 serverThread.join(); 303 clientThread.join();
|
/cts/tests/tests/media/src/android/media/cts/ |
BassBoostTest.java | 405 mEffectListenerLooper.join();
|
EnvReverbTest.java | 516 mEffectListenerLooper.join();
|