HomeSort by relevance Sort by last modified time
    Searched full:statuses (Results 1 - 25 of 72) sorted by null

1 2 3

  /external/webkit/WebKitTools/QueueStatusServer/templates/
patch.html 10 </h1>{% for queue_name, statuses in queue_status.items %}
13 <ul>{% for status in statuses %}
recentstatus.html 8 <h1>WebKit Queue Status</h1>{% for queue_name, statuses in queue_status.items %}
11 <ul>{% for status in statuses %}
  /external/webkit/WebKitTools/QueueStatusServer/handlers/
patchstatus.py 36 statuses = QueueStatus.all().filter('queue_name =', queue_name).filter('active_patch_id =', int(attachment_id)).order('-date').fetch(1)
37 if not statuses:
40 self.response.out.write(statuses[0].message)
recentstatus.py 49 statuses = QueueStatus.all().filter("queue_name =", queue).order("-date").fetch(6)
50 if not statuses:
52 queue_status[queue] = statuses
gc.py 36 statuses = QueueStatus.all().order("-date")
38 for status in statuses:
patch.py 38 statuses = QueueStatus.all().filter("active_patch_id =", attachment_id).order("-date")
42 for status in statuses:
  /development/samples/SampleSyncAdapter/src/com/example/android/samplesync/syncadapter/
SyncAdapter.java 66 List<Status> statuses; local
83 statuses = NetworkUtilities.fetchFriendStatuses(account, authtoken);
84 ContactManager.insertStatuses(mContext, account.name, statuses);
  /external/chromium/net/base/
cert_status_flags.h 24 // Bits 16 to 30 are for non-error statuses.
  /external/webkit/WebKitTools/QueueStatusServer/model/
attachment.py 44 statuses = QueueStatus.all().order("-date")
48 for status in statuses:
  /hardware/ti/wlan/wl1271/stad/src/Sta_Management/
ScanCncnPrivate.h 49 * \brief enumerates the different connection statuses
ScanCncn.h 74 * Enumerates the possible scan result statuses
  /system/wlan/ti/wilink_6_1/stad/src/Sta_Management/
ScanCncnPrivate.h 49 * \brief enumerates the different connection statuses
ScanCncn.h 72 * Enumerates the possible scan result statuses
  /external/webkit/JavaScriptCore/tests/mozilla/ecma_3/RegExp/
shell.js 44 function testRegExp(statuses, patterns, strings, actualmatches, expectedmatches)
58 status = statuses[i];
  /prebuilt/linux-x86/toolchain/i686-linux-glibc2.7-4.4.3/sysroot/usr/include/
sysexits.h 39 * exit statuses for system programs, notably delivermail
43 * clashing with other exit statuses that random programs may
  /development/samples/SampleSyncAdapter/src/com/example/android/samplesync/client/
NetworkUtilities.java 290 final JSONArray statuses = new JSONArray(response); local
291 for (int i = 0; i < statuses.length(); i++) {
292 statusList.add(User.Status.valueOf(statuses.getJSONObject(i)));
  /external/webkit/JavaScriptCore/tests/mozilla/ecma_3/
shell.js 45 * Statuses current section of a test
  /external/webkit/JavaScriptCore/tests/mozilla/js1_5/
shell.js 45 * Statuses current section of a test
  /development/samples/SampleSyncAdapter/src/com/example/android/samplesync/platform/
ContactManager.java 99 * @param statuses the list of statuses to store
  /development/samples/SampleSyncAdapter/samplesyncadapter_server/
main.py 99 """Handles requests fetching friend statuses.
  /packages/apps/Contacts/src/com/android/contacts/util/
DataStatus.java 30 * exists. Statuses with timestamps, or with newer timestamps win.
  /packages/apps/Phone/src/com/android/phone/
NetworkQueryService.java 51 // error statuses that will be retured in the callback.
  /system/wlan/ti/sta_dk_4_0_4_32/common/src/Management/scan/inc/
ScanCncnApi.h 52 * \brief enumerates the different connection statuses
76 * \brief enumerates the different scan result statuses
  /packages/inputmethods/PinyinIME/jni/include/
dicttrie.h 86 // Parsing mark list used to mark the detailed extended statuses.
  /packages/inputmethods/PinyinIME/src/com/android/inputmethod/pinyin/
ComposingView.java 37 * There are three statuses for the composing view.

Completed in 330 milliseconds

1 2 3