/external/chromium_org/chrome/common/favicon/ |
favicon_types.h | 20 // The values of the IconTypes are used to select the priority in which favicon 22 // largest IconType takes priority if data for multiple IconTypes is available.
|
/external/chromium_org/ipc/ |
ipc_message_utils_unittest.cc | 39 EXPECT_EQ(nested_msg.priority(), result_msg.priority());
|
/external/chromium_org/net/url_request/ |
url_request_ftp_job_unittest.cc | 91 // Inherit from URLRequestFtpJob to expose the priority and some 103 using URLRequestFtpJob::priority; 118 // Fixture for priority-related tests. Priority matters when there is 139 // priority, both before and after start. 143 EXPECT_EQ(DEFAULT_PRIORITY, job->priority()); 146 EXPECT_EQ(LOWEST, job->priority()); 149 EXPECT_EQ(LOW, job->priority()); 152 EXPECT_EQ(LOW, job->priority()); 155 EXPECT_EQ(MEDIUM, job->priority()); [all...] |
/external/chromium_org/third_party/WebKit/Source/core/html/ |
LinkResource.cpp | 61 ResourceLoadPriority priority = blocking ? ResourceLoadPriorityUnresolved : ResourceLoadPriorityVeryLow; local 62 return FetchRequest(ResourceRequest(m_owner->document()->completeURL(m_url)), m_owner->localName(), m_charset, priority);
|
/external/chromium_org/third_party/WebKit/Source/core/loader/cache/ |
FetchRequest.cpp | 36 FetchRequest::FetchRequest(const ResourceRequest& resourceRequest, const AtomicString& initiator, const String& charset, ResourceLoadPriority priority) 40 , m_priority(priority)
|
/external/chromium_org/v8/src/ |
object-observe.js | 209 var priority = callbackInfo; 211 callbackInfo.priority = priority; 273 observationState.pendingObservers[callbackInfo.priority] = callback; 417 var priority = callbackInfo.priority; 418 callbackInfoMap.set(callback, priority); 420 delete observationState.pendingObservers[priority];
|
/external/dropbear/ |
dbutil.h | 37 extern void (*_dropbear_log)(int priority, const char* format, va_list param); 41 void dropbear_log(int priority, const char* format, ...);
|
/external/ipsec-tools/src/libipsec/ |
policy_parse.h | 43 PRIORITY = 259, 62 #define PRIORITY 259
|
/external/kernel-headers/original/asm-x86/ |
processor-flags.h | 64 * x86-64 Task Priority Register, CR8 66 #define X86_CR8_TPR 0x0000000F /* task priority register */
|
/external/nist-sip/java/gov/nist/javax/sip/header/ |
SIPETag.java | 72 * get the priority value. 80 * Set the priority member
|
SIPIfMatch.java | 71 * get the priority value. 79 * Set the priority member
|
/external/sfntly/cpp/src/sfntly/tools/subsetter/ |
subsetter.h | 37 // order of priority and the number parameter gives a count of how many of the 43 // This will use the list of cmap ids as an ordered priority and look for
|
/external/srtp/crypto/include/ |
kernel_compat.h | 58 #define err_report(priority, ...) \ 60 if (priority <= err_level) {\
|
/frameworks/av/include/common_time/ |
ICommonTimeConfig.h | 38 virtual status_t getMasterElectionPriority(uint8_t *priority) = 0; 39 virtual status_t setMasterElectionPriority(uint8_t priority) = 0;
|
/frameworks/base/core/java/android/view/animation/ |
GridLayoutAnimationController.java | 36 * also set the animation priority to columns or rows. The default priority is 254 * Returns the direction priority for the animation. The priority can 258 * @return the priority of the animation direction 270 * Specifies the direction priority of the animation. For instance, 271 * {@link #PRIORITY_COLUMN} will give priority to columns: the animation 274 * @param directionPriority the direction priority of the animation
|
/frameworks/base/media/java/android/media/ |
MediaInserter.java | 58 private void insert(Uri tableUri, ContentValues values, boolean priority) throws RemoteException { 59 HashMap<Uri, List<ContentValues>> rowmap = priority ? mPriorityRowMap : mRowMap;
|
/frameworks/base/telephony/java/android/telephony/ |
Rlog.java | 85 public static int println(int priority, String tag, String msg) { 86 return Log.println_native(Log.LOG_ID_RADIO, priority, tag, msg);
|
/prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.4.3/sysroot/usr/include/bits/ |
local_lim.h | 70 priority level. */ 88 /* Maximum message queue priority level. */
|
poll.h | 33 # define POLLRDBAND 0x080 /* Priority data may be read. */ 35 # define POLLWRBAND 0x200 /* Priority data may be written. */
|
/prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.6/sysroot/usr/include/bits/ |
local_lim.h | 70 priority level. */ 88 /* Maximum message queue priority level. */
|
poll.h | 33 # define POLLRDBAND 0x080 /* Priority data may be read. */ 35 # define POLLWRBAND 0x200 /* Priority data may be written. */
|
/prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.7-4.6/sysroot/usr/include/bits/ |
local_lim.h | 70 priority level. */ 88 /* Maximum message queue priority level. */
|
poll.h | 33 # define POLLRDBAND 0x080 /* Priority data may be read. */ 35 # define POLLWRBAND 0x200 /* Priority data may be written. */
|
/system/core/include/log/ |
logprint.h | 46 android_LogPriority priority; member in struct:AndroidLogEntry_t 95 * returns 1 if this log line should be printed based on its priority
|
/libcore/libart/src/main/java/java/lang/ |
Thread.java | 55 * <p>Each {@code Thread} has an integer priority that affect how the thread is 56 * scheduled by the OS. A new thread inherits the priority of its parent. 57 * A thread's priority can be set using the {@link #setPriority(int)} method. 106 * The maximum priority value allowed for a thread. 113 * The minimum priority value allowed for a thread. 120 * The normal (default) priority value assigned to the main thread. 132 volatile int priority; field in class:Thread 360 Thread(ThreadGroup group, String name, int priority, boolean daemon) { 379 this.priority = priority; [all...] |