HomeSort by relevance Sort by last modified time
    Searched full:priority (Results 426 - 450 of 3413) sorted by null

<<11121314151617181920>>

  /external/chromium_org/sync/protocol/
client_debug_info.proto 108 // downloading data of all types in the priority group of
112 // Waiting time for higher priority types to finish association. This
114 // association manager to associate this batch of types. High priority types
118 // Waiting time for other types with same priority during association.
119 // Data type manger sends types of same priority to association manager to
131 // Higher priority type that's configured before this type.
134 // Same priority type that's configured before this type.
  /packages/apps/Email/src/com/android/email/service/
AttachmentDownloadService.java 81 // Low priority will be used for opportunistic downloads
83 // Normal priority is for forwarded downloads in outgoing mail
85 // High priority is for user requests
176 final int priority; field in class:AttachmentDownloadService.DownloadRequest
198 priority = getPriority(attachment);
219 * Comparator class for the download set; we first compare by priority. Requests with equal
220 * priority are compared by the time the request was created (older requests come first)
226 if (req1.priority != req2.priority) {
227 res = (req1.priority < req2.priority) ? -1 : 1
268 long priority = getPriority(att); local
    [all...]
  /external/chromium_org/third_party/libxslt/libxslt/
pattern.c 101 float priority; /* the priority */ member in struct:_xsltCompMatch
2038 float priority; \/* the priority *\/ local
2244 float priority; local
    [all...]
  /external/libxslt/libxslt/
pattern.c 101 float priority; /* the priority */ member in struct:_xsltCompMatch
2034 float priority; \/* the priority *\/ local
2240 float priority; local
    [all...]
  /libcore/luni/src/main/java/java/util/concurrent/
PriorityBlockingQueue.java 23 * {@code null} elements. A priority queue relying on {@linkplain
35 * can be used to <em>remove</em> some or all elements in priority
39 * of elements with equal priority. If you need to enforce an
41 * secondary key to break ties in primary priority values. For
104 * Priority queue represented as a balanced binary heap: the two
106 * priority queue is ordered by comparator, or by the elements'
114 * The number of elements in the priority queue.
119 * The comparator, or null if priority queue uses elements'
160 * @param initialCapacity the initial capacity for this priority queue
173 * @param initialCapacity the initial capacity for this priority queu
    [all...]
  /external/wpa_supplicant_8/src/rsn_supp/
preauth.c 29 int priority; member in struct:rsn_pmksa_candidate
291 /* TODO: drop priority for old candidate entries */
342 * @prio: Priority (the smaller number, the higher priority)
364 /* If BSSID already on candidate list, update the priority of the old
365 * entry. Do not override priority based on normal scan results. */
378 cand->priority = prio;
384 cand->priority = prio;
387 /* Add candidate to the list; order by increasing priority value. i.e.,
388 * highest priority (smallest value) first. *
    [all...]
  /prebuilts/tools/common/m2/internal/com/google/code/findbugs/annotations/2.0.1/
annotations-2.0.1.jar 
  /external/chromium_org/cc/resources/
worker_pool.cc 68 GraphNode::GraphNode(internal::WorkerPoolTask* task, unsigned priority)
70 priority_(priority),
105 // In this system, numerically lower priority is run first.
106 if (a->priority() != b->priority())
107 return a->priority() > b->priority();
109 // Run task with most dependents first when priority is the same.
324 // Take top priority task from |ready_to_run_tasks_|.
tile.h 47 const TilePriority& priority(WhichTree tree) const { function in class:cc::Tile
56 void SetPriority(WhichTree tree, const TilePriority& priority) {
57 priority_[tree] = priority;
tile_manager_perftest.cc 80 void CreateBinTiles(int count, TilePriority priority, TileVector* tiles) {
92 tile->SetPriority(ACTIVE_TREE, priority);
93 tile->SetPriority(PENDING_TREE, priority);
worker_pool.h 54 GraphNode(internal::WorkerPoolTask* task, unsigned priority);
65 unsigned priority() const { return priority_; } function in class:cc::internal::GraphNode
114 // need to be assigned a unique priority and a run count that matches
  /external/wpa_supplicant_8/src/utils/
wpa_debug.h 57 * @level: priority level (MSG_*) of the message
71 * @level: priority level (MSG_*) of the message
91 * @level: priority level (MSG_*) of the message
113 * @level: priority level (MSG_*) of the message
129 * @level: priority level (MSG_*) of the message
167 * @level: priority level (MSG_*) of the message
183 * @level: priority level (MSG_*) of the message
198 * @level: priority level (MSG_*) of the message
214 * @level: priority level (MSG_*) of the message
  /frameworks/av/media/common_time/
ICommonTimeConfig.cpp 56 virtual status_t getMasterElectionPriority(uint8_t *priority) {
65 *priority = static_cast<uint8_t>(reply.readInt32());
72 virtual status_t setMasterElectionPriority(uint8_t priority) {
75 data.writeInt32(static_cast<int32_t>(priority));
331 uint8_t priority; local
332 status_t status = getMasterElectionPriority(&priority);
335 reply->writeInt32(static_cast<int32_t>(priority));
342 uint8_t priority = static_cast<uint8_t>(data.readInt32()); local
343 status_t status = setMasterElectionPriority(priority);
  /external/chromium_org/base/threading/
platform_thread_win.cc 179 ThreadPriority priority) {
182 SetThreadPriority(*thread_handle, priority);
220 ThreadPriority priority) {
221 switch (priority) {
229 NOTREACHED() << "Unknown priority.";
  /external/chromium_org/ui/message_center/
notification_list.h 92 // Returns the recent notifications of the priority higher then LOW,
94 // used to limit the number of notifications for the DEFAULT priority.
99 // Marks the popups for the |priority| as shown.
100 void MarkPopupsAsShown(int priority);
125 // Returns all notifications, in a (priority-timestamp) order. Suitable for
  /external/replicaisland/src/com/replica/replicaisland/
LevelBuilder.java 119 public void addTileMapLayer(GameObject background, int priority, float scrollSpeed,
142 priority = SortConstants.OVERLAY; //hack!
152 backgroundRender.setPriority(priority);
182 // We want the foreground layer to be render priority FOREGROUND, but
185 // its render priority is set.
RenderSystem.java 53 public void scheduleForDraw(DrawableObject object, Vector2 position, int priority, boolean cameraRelative) {
56 element.set(object, position, priority, cameraRelative);
104 public void set(DrawableObject drawable, Vector2 position, int priority, boolean isCameraRelative) {
109 final int sortBucket = priority * TEXTURE_SORT_BUCKET_SIZE;
114 sortOffset = (tex.resource % TEXTURE_SORT_BUCKET_SIZE) * Utils.sign(priority);
  /packages/inputmethods/OpenWnn/
README.txt 34 Index 0: English dictionary for normal prediction (high priority)
35 Index 1: English dictionary for normal prediction (middle priority)
36 Index 2: English dictionary for normal prediction (low priority)
41 Index 0: Japanese dictionary for normal prediction (high priority)
42 Index 1: Japanese dictionary for normal prediction (low priority)
  /packages/apps/Calendar/tests/src/com/android/calendar/alerts/
AlertServiceTest.java 181 public NotificationInstance(int alertId, int priority) {
183 mPriority = priority;
186 public NotificationInstance(int[] alertIdsInDigest, int priority) {
188 mPriority = priority;
277 public void expectTestNotification(int notificationId, int[] alertIds, int priority) {
278 mExpectedNotifications[notificationId] = new NotificationInstance(alertIds, priority);
308 assertEquals("Priority not as expected for notification " + id + debugStr,
309 expected.mPriority, actual.mNotification.priority);
351 s.append("priority:" + actual.mNotification.priority);
    [all...]
  /external/bluetooth/bluedroid/gki/ulinux/
gki_int.h 28 /* The base priority used for pthread based GKI task. below value is to keep it retro compatible.
49 /* the GKI_timer_update() thread should have the highest real time priority to ensue correct
63 * -19 to +19. a negative value give higher priority to btld compared to the default nice value
  /external/chromium/chrome/browser/net/
preconnect.cc 62 // priority here, as we won't make a request, and will surrender the created
64 // speculative socket as such, and IF we use a net::LOWEST priority, and if
72 request_info.priority = net::HIGHEST;
  /external/chromium_org/chrome/browser/policy/
policy_map.h 36 // Returns true if |this| has higher priority than |other|.
79 // overridden by those in |other| if they have a higher priority, as defined
81 // maps with the same priority, the current value in |this| is preserved.
policy_service_impl.h 30 // must be sorted in decreasing order of priority; the first provider will
31 // have the highest priority. The PolicyServiceImpl does not take ownership of
74 // The providers passed in the constructor, in order of decreasing priority.
  /external/chromium_org/chrome/browser/prerender/
prerender_local_predictor.h 133 // by a new prerender of the priority indicated, or NULL, if the priority
135 PrerenderProperties* GetIssuedPrerenderSlotForPriority(double priority);
  /external/chromium_org/chrome/common/extensions/api/
notifications.idl 56 // Priority ranges from -2 to 2. -2 is lowest priority. 2 is highest. Zero
58 long? priority;

Completed in 874 milliseconds

<<11121314151617181920>>