HomeSort by relevance Sort by last modified time
    Searched defs:join (Results 401 - 425 of 637) sorted by null

<<11121314151617181920>>

  /pdk/apps/TestingCamera2/src/com/android/testingcamera2/
CameraRecordingStream.java 222 mRecordingThread.join();
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/bsddb/
dbobj.py 170 def join(self, *args, **kwargs): member in class:DB
171 return self._cobj.join(*args, **kwargs)
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/bsddb/test/
test_all.py 374 def join(self, cursor_list) : member in class:DB_py3k
376 return dup_cursor_py3k(self._db.join(cursor_list))
504 path=os.path.join(get_new_path.prefix,
531 get_new_path.prefix=os.path.join(os.environ.get("TMPDIR",
532 os.path.join(os.sep,"tmp")), "z-Berkeley_DB")
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/
test_os.py 182 self.fname = os.path.join(test_support.TESTFN, "f1")
388 from os.path import join namespace
402 walk_path = join(test_support.TESTFN, "TEST1")
403 sub1_path = join(walk_path, "SUB1")
404 sub11_path = join(sub1_path, "SUB11")
405 sub2_path = join(walk_path, "SUB2")
406 tmp1_path = join(walk_path, "tmp1")
407 tmp2_path = join(sub1_path, "tmp2")
408 tmp3_path = join(sub2_path, "tmp3")
409 link_path = join(sub2_path, "link"
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
threading.py 651 # allowing .join() to return.
866 # notify anyway (join() is forbidden on them).
909 def join(self, timeout=None): member in class:Thread
1144 def join(self, timeout=None): member in class:_DummyThread
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/bsddb/
dbobj.py 170 def join(self, *args, **kwargs): member in class:DB
171 return self._cobj.join(*args, **kwargs)
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/bsddb/test/
test_all.py 374 def join(self, cursor_list) : member in class:DB_py3k
376 return dup_cursor_py3k(self._db.join(cursor_list))
504 path=os.path.join(get_new_path.prefix,
531 get_new_path.prefix=os.path.join(os.environ.get("TMPDIR",
532 os.path.join(os.sep,"tmp")), "z-Berkeley_DB")
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/
test_os.py 182 self.fname = os.path.join(test_support.TESTFN, "f1")
388 from os.path import join namespace
402 walk_path = join(test_support.TESTFN, "TEST1")
403 sub1_path = join(walk_path, "SUB1")
404 sub11_path = join(sub1_path, "SUB11")
405 sub2_path = join(walk_path, "SUB2")
406 tmp1_path = join(walk_path, "tmp1")
407 tmp2_path = join(sub1_path, "tmp2")
408 tmp3_path = join(sub2_path, "tmp3")
409 link_path = join(sub2_path, "link"
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/
threading.py 651 # allowing .join() to return.
866 # notify anyway (join() is forbidden on them).
909 def join(self, timeout=None): member in class:Thread
1144 def join(self, timeout=None): member in class:_DummyThread
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/actions/
AddSupportJarAction.java 474 fix.join();
493 job.join();
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/descriptors/
CustomViewDescriptorService.java 204 attributes = join(attrList, attributes);
209 layoutAttributes = join(paramList, layoutAttributes);
242 private static AttributeDescriptor[] join( method in class:CustomViewDescriptorService
605 attributes = join(attrList, attributes);
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/launch/junit/runtime/
RemoteAdtTestRunner.java 167 job.join();
215 job.join();
  /cts/tests/tests/media/src/android/media/cts/
MediaCodecTest.java 275 videoDecodingThread.join(DECODING_TIMEOUT_MS);
458 videoEncodingThread.join();
460 audioEncodingThread.join();
AudioEffectTest.java     [all...]
EncodeVirtualDisplayTest.java 146 th.join();
  /external/apache-harmony/luni/src/test/api/common/org/apache/harmony/luni/tests/java/net/
SocketTest.java 131 serverThread.join();
132 clientThread.join();
    [all...]
  /cts/tests/tests/os/src/android/os/cts/
DebugTest.java 106 t.join();
  /cts/tests/tests/webkit/src/android/webkit/cts/
GeolocationTest.java 228 mLocationUpdateThread.join();
  /development/samples/LunarLander/src/com/example/android/lunarlander/
LunarView.java     [all...]
  /external/chromium_org/chrome/third_party/mock4js/
mock4js.js 91 join: function(list) {
261 return "and("+Mock4JSUtil.join(this._constraints)+")";
278 return "or("+Mock4JSUtil.join(this._constraints)+")";
345 return this._expectedMethodName+"("+Mock4JSUtil.join(this._expectedArgs)+")";
612 var failMsg = "unexpected invocation: "+methodName+"("+Mock4JSUtil.join(arguments)+")"+this.mock._describeMockSetup();
  /external/chromium_org/net/test/android/javatests/src/org/chromium/net/test/util/
TestWebServer.java 144 mServerThread.join();
  /external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/thirdparty/irc/
irclib.py 636 self.send_raw(" ".join(["ADMIN", server]).strip())
674 self.send_raw(" ".join(["INFO", server]).strip())
678 self.send_raw(" ".join(["INVITE", nick, channel]).strip())
687 self.send_raw("ISON " + " ".join(nicks))
689 def join(self, channel, key=""): member in class:ServerConnection
690 """Send a JOIN command."""
691 self.send_raw("JOIN %s%s" % (channel, (key and (" " + key))))
710 command = command + " " + ",".join(channels)
729 self.send_raw("NAMES" + (channels and (" " + ",".join(channels)) or ""))
749 self.send_raw("PART " + ",".join(channels) + (message and (" " + message))
    [all...]
  /external/emma/core/java12/com/vladium/emma/rt/
AppRunner.java 512 try {appThread.join (); } catch (InterruptedException ignore) {}
    [all...]
  /external/replicaisland/src/com/replica/replicaisland/
AndouKun.java 254 mEventReporterThread.join();
  /external/wpa_supplicant_8/src/drivers/
driver_bsd.c 780 struct ieee80211_join_event *join; local
826 join = (struct ieee80211_join_event *) &ifan[1];
827 bsd_new_sta(drv, drv->hapd, join->iev_addr);
1212 struct ieee80211_join_event *join; local
1289 join = (struct ieee80211_join_event *) &ifan[1];
1290 bsd_new_sta(drv, ctx, join->iev_addr);
    [all...]

Completed in 460 milliseconds

<<11121314151617181920>>