HomeSort by relevance Sort by last modified time
    Searched refs:priority (Results 101 - 125 of 1753) sorted by null

1 2 3 45 6 7 8 91011>>

  /development/samples/browseable/BasicMultitouch/src/com.example.android.common.logger/
LogNode.java 31 * @param priority Log level of the data being logged. Verbose, Error, etc.
37 public void println(int priority, String tag, String msg, Throwable tr);
  /development/samples/browseable/BasicNetworking/src/com.example.android.common.logger/
LogNode.java 31 * @param priority Log level of the data being logged. Verbose, Error, etc.
37 public void println(int priority, String tag, String msg, Throwable tr);
  /development/samples/browseable/BasicSyncAdapter/src/com.example.android.common/logger/
LogNode.java 31 * @param priority Log level of the data being logged. Verbose, Error, etc.
37 public void println(int priority, String tag, String msg, Throwable tr);
  /development/samples/browseable/BorderlessButtons/src/com.example.android.common.logger/
LogNode.java 31 * @param priority Log level of the data being logged. Verbose, Error, etc.
37 public void println(int priority, String tag, String msg, Throwable tr);
  /development/samples/browseable/CustomChoiceList/src/com.example.android.common.logger/
LogNode.java 31 * @param priority Log level of the data being logged. Verbose, Error, etc.
37 public void println(int priority, String tag, String msg, Throwable tr);
  /development/samples/browseable/ImmersiveMode/src/com.example.android.common/logger/
LogNode.java 31 * @param priority Log level of the data being logged. Verbose, Error, etc.
37 public void println(int priority, String tag, String msg, Throwable tr);
  /development/samples/browseable/NetworkConnect/src/com.example.android.common.logger/
LogNode.java 31 * @param priority Log level of the data being logged. Verbose, Error, etc.
37 public void println(int priority, String tag, String msg, Throwable tr);
  /development/samples/browseable/StorageClient/src/com.example.android.common/logger/
LogNode.java 31 * @param priority Log level of the data being logged. Verbose, Error, etc.
37 public void println(int priority, String tag, String msg, Throwable tr);
  /development/samples/browseable/StorageProvider/src/com.example.android.common/logger/
LogNode.java 31 * @param priority Log level of the data being logged. Verbose, Error, etc.
37 public void println(int priority, String tag, String msg, Throwable tr);
  /development/samples/browseable/TextLinkify/src/com.example.android.common.logger/
LogNode.java 31 * @param priority Log level of the data being logged. Verbose, Error, etc.
37 public void println(int priority, String tag, String msg, Throwable tr);
  /development/samples/browseable/TextSwitcher/src/com.example.android.common.logger/
LogNode.java 31 * @param priority Log level of the data being logged. Verbose, Error, etc.
37 public void println(int priority, String tag, String msg, Throwable tr);
  /development/samples/browseable/repeatingAlarm/src/com.example.android.common/logger/
LogNode.java 31 * @param priority Log level of the data being logged. Verbose, Error, etc.
37 public void println(int priority, String tag, String msg, Throwable tr);
  /external/chromium/net/http/
http_request_info.cc 11 priority(LOWEST),
  /external/chromium_org/net/cookies/
cookie_constants.cc 18 NET_EXPORT const std::string CookiePriorityToString(CookiePriority priority) {
19 switch(priority) {
32 NET_EXPORT CookiePriority StringToCookiePriority(const std::string& priority) {
33 std::string priority_comp(priority);
cookie_constants.h 21 // Returns the Set-Cookie header priority token corresponding to |priority|.
22 NET_EXPORT const std::string CookiePriorityToString(CookiePriority priority);
24 // Converts the Set-Cookie header priority token |priority| to a CookiePriority.
26 NET_EXPORT CookiePriority StringToCookiePriority(const std::string& priority);
  /external/nist-sip/java/gov/nist/javax/sip/header/
Priority.java 35 * the Priority header.
43 public class Priority extends SIPHeader implements PriorityHeader {
65 /** priority field
67 protected String priority; field in class:Priority
71 public Priority() {
80 return priority;
84 * get the priority value.
88 return priority;
92 * Set the priority member
99 + "Priority, setPriority(), the priority parameter is null")
    [all...]
  /frameworks/base/tools/layoutlib/bridge/src/android/util/
Log_Delegate.java 23 private static char priorityChar(int priority) {
24 switch (priority) {
43 static int println_native(int bufID, int priority, String tag, String msgs) {
44 String prefix = priorityChar(priority) + "/" + tag + ": ";
  /external/chromium_org/base/process/
process_win.cc 41 DWORD priority = GetPriority();
42 if (priority == 0)
44 return ((priority == BELOW_NORMAL_PRIORITY_CLASS) ||
45 (priority == IDLE_PRIORITY_CLASS));
52 // sets the priority class on the threads but also on the IO generated
54 DWORD priority;
57 priority = value ? PROCESS_MODE_BACKGROUND_BEGIN :
60 priority = value ? BELOW_NORMAL_PRIORITY_CLASS : NORMAL_PRIORITY_CLASS;
63 return (::SetPriorityClass(process_, priority) != 0);
  /frameworks/base/core/tests/coretests/src/android/os/
IBinderThreadPriorityService.aidl 23 void setPriorityAndCallBack(int priority, IBinderThreadPriorityService recurse);
  /packages/apps/QuickSearchBox/src/com/android/quicksearchbox/util/
PriorityThreadFactory.java 24 * A thread factory that creates threads with a given thread priority.
33 * @param priority The thread priority of the threads created by this factory.
36 public PriorityThreadFactory(int priority) {
37 mPriority = priority;
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.4.3/sysroot/usr/include/linux/
if_eql.h 45 long priority; member in struct:slave_config
50 long priority; member in struct:slaving_request
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.6/sysroot/usr/include/linux/
if_eql.h 45 long priority; member in struct:slave_config
50 long priority; member in struct:slaving_request
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.7-4.6/sysroot/usr/include/linux/
if_eql.h 45 long priority; member in struct:slave_config
50 long priority; member in struct:slaving_request
  /external/chromium/base/
process_win.cc 28 DWORD priority = GetPriority();
29 if (priority == 0)
31 return priority == BELOW_NORMAL_PRIORITY_CLASS;
37 DWORD priority = value ? BELOW_NORMAL_PRIORITY_CLASS : NORMAL_PRIORITY_CLASS;
38 return (SetPriorityClass(process_, priority) != 0);
  /external/chromium_org/chromeos/audio/
audio_device.h 18 // Ordered from the highest priority to the lowest.
36 uint8 priority; member in struct:chromeos::AudioDevice
57 if (a.priority < b.priority) {
59 } else if (b.priority < a.priority) {

Completed in 3519 milliseconds

1 2 3 45 6 7 8 91011>>