/external/chromium_org/chrome/browser/chromeos/drive/ |
job_queue_unittest.cc | 26 // High priority jobs should be popped first. 33 // Then low priority jobs follow. 60 // The remaining jobs is of low priority, so under HIGH_PRIORITY context, it 64 // Under the low priority context, it is fine.
|
/external/chromium_org/components/webdata/ |
DEPS | 9 # TODO(caitkp): Extract unit tests from //chrome, at lower priority
|
/external/chromium_org/net/base/ |
prioritized_dispatcher_unittest.cc | 20 // We rely on the priority enum values being sequential having starting at 0, 31 typedef PrioritizedDispatcher::Priority Priority; 39 Priority priority, 43 priority_(priority), 69 EXPECT_EQ(priority_, handle_.priority()); 75 void ChangePriority(Priority priority) { 81 handle_ = dispatcher_->ChangePriority(handle_, priority); [all...] |
/external/chromium_org/ui/message_center/ |
notification.cc | 27 : priority(DEFAULT_PRIORITY), 33 : priority(other.priority), 118 optional_fields_.priority = SYSTEM_PRIORITY;
|
notification_types.cc | 9 const char kPriorityKey[] = "priority";
|
/external/eclipse-windowbuilder/propertysheet/src/org/eclipse/wb/internal/core/model/property/ |
Property.java | 194 * Gets the custom sort priority of this property 196 * @return the sort priority 203 * Sets the custom sort priority of this property 205 * @param priority the new priority to use 207 public void setPriority(int priority) { 208 this.mPriority = priority; 219 /** Sort {@link Property} instances by priority */ 220 public static final Comparator<Property> PRIORITY = new Comparator<Property>() {
|
/external/iproute2/etc/iproute2/ |
rt_dsfield | 8 0x20 priority
|
/external/iproute2/man/man8/ |
ip-rule.8 | 78 The RPDB is scanned in the order of increasing priority. The selector 95 Priority: 0, Selector: match anything, Action: lookup routing 102 high priority control routes for local and broadcast addresses. 108 Priority: 32766, Selector: match anything, Action: lookup routing 120 Priority: 32767, Selector: match anything, Action: lookup routing 205 .BI priority " PREFERENCE" 206 the priority of this rule. Each rule should have an explicitly 209 priority value. 210 The options preference and order are synonyms with priority.
|
/frameworks/base/services/common_time/ |
common_time_config_service.cpp | 38 status_t CommonTimeConfigService::getMasterElectionPriority(uint8_t *priority) { 39 return mTimeServer.getMasterElectionPriority(priority); 42 status_t CommonTimeConfigService::setMasterElectionPriority(uint8_t priority) { 43 return mTimeServer.setMasterElectionPriority(priority);
|
/frameworks/opt/mms/src/java/com/google/android/mms/pdu/ |
MultimediaMessagePdu.java | 115 * Get X-Mms-Priority value. 120 return mPduHeaders.getOctet(PduHeaders.PRIORITY); 124 * Set X-Mms-Priority value. 130 mPduHeaders.setOctet(value, PduHeaders.PRIORITY);
|
/hardware/invensense/60xx/mlsdk/platform/linux/ |
log_linux.c | 45 int _MLPrintLog (int priority, const char* tag, const char* fmt, ...) 51 result = _MLPrintVaLog(priority,tag,fmt,ap); 57 int _MLPrintVaLog(int priority, const char* tag, const char* fmt, va_list args) 68 switch (priority) {
|
/frameworks/base/docs/html/tools/debugging/ |
debugging-log.jd | 138 <p>Every Android log message has a <em>tag</em> and a <em>priority</em> associated with it.</p> 144 <li>The priority is one of the following character values, ordered from lowest to highest 145 priority:</li> 149 <li><code>V</code> — Verbose (lowest priority)</li> 161 <li><code>S</code> — Silent (highest priority, on which nothing is ever printed)</li> 168 <code><priority>/<tag></code>.</p> 170 <p>Here's an example of logcat output that shows that the message relates to priority level "I" 177 expressions</em>. Filter expressions let you indicate to the system the tags-priority 181 <p>A filter expression follows this format <code>tag:priority ...</code>, where <code>tag</code> 182 indicates the tag of interest and <code>priority</code> indicates the <em>minimum</em> level o [all...] |
/external/clang/include/clang/Sema/ |
CodeCompleteConsumer.h | 29 /// \brief Default priority values for code-completion results based 32 /// \brief Priority for the next initialization in a constructor initializer 35 /// \brief Priority for an enumeration constant inside a switch whose 38 /// \brief Priority for a send-to-super completion. 40 /// \brief Priority for a declaration that is in the local scope. 42 /// \brief Priority for a member declaration found from the current 45 /// \brief Priority for a language keyword (that isn't any of the other 48 /// \brief Priority for a code pattern. 50 /// \brief Priority for a non-type declaration. 52 /// \brief Priority for a type [all...] |
/cts/suite/pts/deviceTests/browserbench/assets/octane/ |
richards.js | 122 * @param {int} priority the task's priority 126 Scheduler.prototype.addIdleTask = function (id, priority, queue, count) { 127 this.addRunningTask(id, priority, queue, new IdleTask(this, 1, count)); 133 * @param {int} priority the task's priority 136 Scheduler.prototype.addWorkerTask = function (id, priority, queue) { 137 this.addTask(id, priority, queue, new WorkerTask(this, ID_HANDLER_A, 0)); 143 * @param {int} priority the task's priority [all...] |
/external/chromium_org/third_party/WebKit/PerformanceTests/Dromaeo/resources/dromaeo/web/tests/ |
v8-richards.html | 128 * @param {int} priority the task's priority 132 Scheduler.prototype.addIdleTask = function (id, priority, queue, count) { 133 this.addRunningTask(id, priority, queue, new IdleTask(this, 1, count)); 139 * @param {int} priority the task's priority 142 Scheduler.prototype.addWorkerTask = function (id, priority, queue) { 143 this.addTask(id, priority, queue, new WorkerTask(this, ID_HANDLER_A, 0)); 149 * @param {int} priority the task's priority [all...] |
/external/chromium_org/third_party/WebKit/PerformanceTests/SunSpider/tests/v8-v4/ |
v8-richards.js | 117 * @param {int} priority the task's priority 121 Scheduler.prototype.addIdleTask = function (id, priority, queue, count) { 122 this.addRunningTask(id, priority, queue, new IdleTask(this, 1, count)); 128 * @param {int} priority the task's priority 131 Scheduler.prototype.addWorkerTask = function (id, priority, queue) { 132 this.addTask(id, priority, queue, new WorkerTask(this, ID_HANDLER_A, 0)); 138 * @param {int} priority the task's priority [all...] |
/external/chromium_org/third_party/WebKit/PerformanceTests/SunSpider/tests/v8-v5/ |
v8-richards.js | 117 * @param {int} priority the task's priority 121 Scheduler.prototype.addIdleTask = function (id, priority, queue, count) { 122 this.addRunningTask(id, priority, queue, new IdleTask(this, 1, count)); 128 * @param {int} priority the task's priority 131 Scheduler.prototype.addWorkerTask = function (id, priority, queue) { 132 this.addTask(id, priority, queue, new WorkerTask(this, ID_HANDLER_A, 0)); 138 * @param {int} priority the task's priority [all...] |
/external/chromium_org/third_party/WebKit/PerformanceTests/SunSpider/tests/v8-v6/ |
v8-richards.js | 117 * @param {int} priority the task's priority 121 Scheduler.prototype.addIdleTask = function (id, priority, queue, count) { 122 this.addRunningTask(id, priority, queue, new IdleTask(this, 1, count)); 128 * @param {int} priority the task's priority 131 Scheduler.prototype.addWorkerTask = function (id, priority, queue) { 132 this.addTask(id, priority, queue, new WorkerTask(this, ID_HANDLER_A, 0)); 138 * @param {int} priority the task's priority [all...] |
/external/chromium_org/v8/benchmarks/ |
richards.js | 122 * @param {int} priority the task's priority 126 Scheduler.prototype.addIdleTask = function (id, priority, queue, count) { 127 this.addRunningTask(id, priority, queue, new IdleTask(this, 1, count)); 133 * @param {int} priority the task's priority 136 Scheduler.prototype.addWorkerTask = function (id, priority, queue) { 137 this.addTask(id, priority, queue, new WorkerTask(this, ID_HANDLER_A, 0)); 143 * @param {int} priority the task's priority [all...] |
/external/v8/benchmarks/ |
richards.js | 122 * @param {int} priority the task's priority 126 Scheduler.prototype.addIdleTask = function (id, priority, queue, count) { 127 this.addRunningTask(id, priority, queue, new IdleTask(this, 1, count)); 133 * @param {int} priority the task's priority 136 Scheduler.prototype.addWorkerTask = function (id, priority, queue) { 137 this.addTask(id, priority, queue, new WorkerTask(this, ID_HANDLER_A, 0)); 143 * @param {int} priority the task's priority [all...] |
/external/chromium_org/cc/resources/ |
worker_pool_unittest.cc | 50 unsigned priority) : callback(callback), 54 priority(priority) { 61 unsigned priority; member in struct:cc::__anon6547::FakeWorkerPool::Task 88 new internal::GraphNode(new_task.get(), it->priority)); 95 new internal::GraphNode(new_dependent_task.get(), it->priority)); 296 TEST_F(WorkerPoolTest, Priority) { 309 1u), // Priority 1 320 0u) // Priority 0 327 // Check if tasks ran in order of priority [all...] |
/external/chromium_org/third_party/npapi/npspy/extern/nspr/ |
prthread.h | 40 ** notably) pre-emptibility is not guaranteed. Hard priority scheduling 41 ** is not guaranteed, so programming using priority based synchronization 44 ** NSPR threads are scheduled based loosly on their client set priority. 45 ** In general, a thread of a higher priority has a statistically better 46 ** chance of running relative to threads of lower priority. However, 54 ** For scheduling, NSPR will attempt to run the highest priority LOCAL 102 PR_PRIORITY_LOW = 0, /* the lowest possible priority */ 103 PR_PRIORITY_NORMAL = 1, /* most common expected priority */ 113 ** "priority" will be created thread's priority [all...] |
/hardware/invensense/60xx/libsensors_iio/software/core/driver/include/ |
log.h | 281 #define MPL_LOG(priority, tag, fmt, ...) \ 282 MPL_LOG_PRI(priority, tag, fmt, ##__VA_ARGS__) 286 * Log macro that allows you to specify a number for the priority. 290 #define MPL_LOG_PRI(priority, tag, fmt, ...) \ 291 ALOG(priority, tag, fmt, ##__VA_ARGS__) 293 #define MPL_LOG_PRI(priority, tag, fmt, ...) \ 294 pr_debug(MPL_##priority tag fmt, ##__VA_ARGS__) 296 #define MPL_LOG_PRI(priority, tag, fmt, ...) \ 297 _MLPrintLog(MPL_##priority, tag, fmt, ##__VA_ARGS__) 306 #define MPL_LOG_PRI_VA(priority, tag, fmt, args) [all...] |
/hardware/invensense/60xx/mlsdk/platform/include/ |
log.h | 277 #define MPL_LOG(priority, tag, fmt, ...) \ 278 MPL_LOG_PRI(priority, tag, fmt, ##__VA_ARGS__) 282 * Log macro that allows you to specify a number for the priority. 286 #define MPL_LOG_PRI(priority, tag, fmt, ...) \ 287 ALOG(priority, tag, fmt, ##__VA_ARGS__) 289 #define MPL_LOG_PRI(priority, tag, fmt, ...) \ 290 pr_debug(MPL_##priority tag fmt, ##__VA_ARGS__) 292 #define MPL_LOG_PRI(priority, tag, fmt, ...) \ 293 _MLPrintLog(MPL_##priority, tag, fmt, ##__VA_ARGS__) 302 #define MPL_LOG_PRI_VA(priority, tag, fmt, args) [all...] |
/hardware/invensense/65xx/libsensors_iio/software/core/driver/include/ |
log.h | 285 #define MPL_LOG(priority, tag, fmt, ...) \ 286 MPL_LOG_PRI(priority, tag, fmt, ##__VA_ARGS__) 290 * Log macro that allows you to specify a number for the priority. 294 #define MPL_LOG_PRI(priority, tag, fmt, ...) \ 295 LOG(priority, tag, fmt, ##__VA_ARGS__) 297 #define MPL_LOG_PRI(priority, tag, fmt, ...) \ 298 pr_debug(MPL_##priority tag fmt, ##__VA_ARGS__) 300 #define MPL_LOG_PRI(priority, tag, fmt, ...) \ 301 _MLPrintLog(MPL_##priority, tag, fmt, ##__VA_ARGS__) 310 #define MPL_LOG_PRI_VA(priority, tag, fmt, args) [all...] |