HomeSort by relevance Sort by last modified time
    Searched refs:Priority (Results 1 - 25 of 118) sorted by null

1 2 3 4 5

  /external/glide/library/src/main/java/com/bumptech/glide/
Priority.java 4 * Priorities for completing loads. If more than one load is queued at a time, the load with the higher priority will be
8 public enum Priority {
  /external/clang/test/Index/
complete-type-factors.m 7 enum Priority {
13 enum Priority func2(int);
15 enum Priority test1(enum Priority priority, enum Color color, int integer) {
18 return priority;
26 + (void)method:(enum Color)color priority:(enum Priority)priority;
27 - (void)method:(enum Color)color priority:(enum Priority)priority
    [all...]
  /external/glide/library/src/main/java/com/bumptech/glide/load/data/
DataFetcher.java 3 import com.bumptech.glide.Priority;
9 * load by {@link ModelLoader}. {@link #loadData(Priority)} may or may not be called for any given load depending on
11 * {@link #loadData(Priority)} is called, then so {@link #cleanup()} will be called.
25 * @param priority The priority with which the request should be completed.
27 public T loadData(Priority priority) throws Exception;
31 * after the data returned by {@link #loadData(Priority)} has been decoded by the {@link ResourceDecoder}.
ByteArrayFetcher.java 3 import com.bumptech.glide.Priority;
22 public InputStream loadData(Priority priority) throws Exception {
LocalUriFetcher.java 7 import com.bumptech.glide.Priority;
29 * is cleared before {@link #loadData(Priority)}} is called.
39 public final T loadData(Priority priority) throws Exception {
  /external/llvm/include/llvm/Transforms/Utils/
ModuleUtils.h 25 /// Append F to the list of global ctors of module M with the given Priority.
29 void appendToGlobalCtors(Module &M, Function *F, int Priority);
32 void appendToGlobalDtors(Module &M, Function *F, int Priority);
  /cts/tests/tests/renderscript/src/android/renderscript/cts/
RenderScriptTest.java 54 mRS.setPriority(RenderScript.Priority.LOW);
55 mRS.setPriority(RenderScript.Priority.NORMAL);
60 * Verify Priority enum properties.
63 assertEquals(RenderScript.Priority.LOW,
64 RenderScript.Priority.valueOf("LOW"));
65 assertEquals(RenderScript.Priority.NORMAL,
66 RenderScript.Priority.valueOf("NORMAL"));
67 assertEquals(2, RenderScript.Priority.values().length);
  /external/chromium_org/net/base/
prioritized_dispatcher.h 15 // A priority-based dispatcher of jobs. Dispatch order is by priority (highest
21 // non-thread-safe PriorityQueue. All operations are O(p) time for p priority
28 typedef PriorityQueue<Job*>::Priority Priority;
32 // for at most 30 running jobs in total. Jobs at priority 0 can't use slots
35 // jobs at priority 1 or below can start. After one more job starts, no jobs
36 // at priority 2 or below can start, since the remaining 5 slots are reserved
37 // for priority 3 or above.
39 Limits(Priority num_priorities, size_t total_jobs)
    [all...]
priority_queue.h 22 // A simple priority queue. The order of values is by priority and then FIFO.
24 // from the queue, and all operations are O(p) time for p priority levels.
25 // The queue is agnostic to priority ordering (whether 0 precedes 1).
26 // If the highest priority is 0, FirstMin() returns the first in order.
42 typedef uint32 Priority;
80 Priority priority() const { return priority_; } function in class:net::PriorityQueue::Pointer
106 static const Priority kNullPriority = static_cast<Priority>(-1)
254 Priority priority = pointer.priority_; local
    [all...]
  /external/chromium_org/net/spdy/
spdy_priority_forest.h 25 // there can be multiple lists, with each list root having its own priority.
30 // The NodeId and Priority types must be POD that support comparison (most
32 template <typename NodeId, typename Priority>
44 // Add a new root node to the forest, with the given priority. Returns true
46 bool AddRootNode(NodeId node_id, Priority priority);
57 // Get the priority of the given node. If the node doesn't exist, or is not
58 // a root node (and thus has no priority), returns Priority().
59 Priority GetPriority(NodeId node_id) const
121 Priority priority; \/\/ used for root nodes member in union:net::SpdyPriorityForest::Node::__anon14223
    [all...]
  /external/nist-sip/java/gov/nist/javax/sip/parser/
PriorityParser.java 33 * Parser for Priority header.
48 * @param priority the header to parse
50 public PriorityParser(String priority) {
51 super(priority);
64 * @return SIPHeader (Priority object)
71 Priority priority = new Priority(); local
73 headerName(TokenTypes.PRIORITY);
75 priority.setHeaderName(SIPHeaderNames.PRIORITY)
    [all...]
  /external/glide/library/src/main/java/com/bumptech/glide/volley/
VolleyStreamFetcher.java 8 import com.bumptech.glide.Priority;
37 public InputStream loadData(Priority priority) throws Exception {
38 GlideRequest request = new GlideRequest(url, requestFuture, glideToVolleyPriority(priority));
63 private static Request.Priority glideToVolleyPriority(Priority priority) {
64 switch (priority) {
66 return Request.Priority.LOW;
68 return Request.Priority.HIGH
79 private Priority priority; field in class:VolleyStreamFetcher.GlideRequest
    [all...]
  /external/chromium_org/third_party/WebKit/public/platform/
WebURLLoader.h 69 // Notifies the loader that the priority of a WebURLRequest has changed from
71 // priority, but may increase when the resource is needed for rendering.
72 virtual void didChangePriority(WebURLRequest::Priority newPriority) { }
73 virtual void didChangePriority(WebURLRequest::Priority newPriority, int intraPriorityValue) { didChangePriority(newPriority); }
  /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...]
  /external/chromium_org/third_party/webrtc/modules/pacing/include/mock/
mock_paced_sender.h 26 MOCK_METHOD6(SendPacket, bool(Priority priority,
  /external/chromium_org/third_party/WebKit/Source/core/animation/
Animation.h 51 enum Priority { DefaultPriority, TransitionPriority };
53 static PassRefPtrWillBeRawPtr<Animation> create(Element*, PassRefPtrWillBeRawPtr<AnimationEffect>, const Timing&, Priority = DefaultPriority, PassOwnPtrWillBeRawPtr<EventDelegate> = nullptr);
69 Priority priority() const { return m_priority; } function in class:blink::FINAL
98 Animation(Element*, PassRefPtrWillBeRawPtr<AnimationEffect>, const Timing&, Priority, PassOwnPtrWillBeRawPtr<EventDelegate>);
104 Priority m_priority;
SampledEffect.h 31 Animation::Priority priority() const { return m_priority; } function in class:blink::SampledEffect
46 Animation::Priority m_priority;
AnimationStack.h 56 static WillBeHeapHashMap<CSSPropertyID, RefPtrWillBeMember<Interpolation> > activeInterpolations(AnimationStack*, const WillBeHeapVector<RawPtrWillBeMember<InertAnimation> >* newAnimations, const WillBeHeapHashSet<RawPtrWillBeMember<const AnimationPlayer> >* cancelledAnimationPlayers, Animation::Priority, double timelineCurrentTime);
63 // Effects sorted by priority. Lower priority at the start of the list.
  /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...]
  /external/llvm/lib/Transforms/Utils/
ModuleUtils.cpp 24 Module &M, Function *F, int Priority) {
52 CSVals[0] = IRB.getInt32(Priority);
72 void llvm::appendToGlobalCtors(Module &M, Function *F, int Priority) {
73 appendToGlobalArray("llvm.global_ctors", M, F, Priority);
76 void llvm::appendToGlobalDtors(Module &M, Function *F, int Priority) {
77 appendToGlobalArray("llvm.global_dtors", M, F, Priority);
  /external/glide/library/src/main/java/com/bumptech/glide/load/resource/gif/
GifFrameModelLoader.java 3 import com.bumptech.glide.Priority;
23 public GifDecoder loadData(Priority priority) throws Exception {
  /external/llvm/lib/Target/R600/
AMDGPUAsmPrinter.h 30 Priority(0),
41 uint32_t Priority;
  /external/chromium_org/chrome/browser/sync_file_system/drive_backend/
sync_task_manager.h 48 enum Priority {
81 // Schedules a task at the given priority.
84 Priority priority,
88 Priority priority,
127 Priority priority; member in struct:sync_file_system::drive_backend::SyncTaskManager::PendingTask
131 PendingTask(const base::Closure& task, Priority pri, int seq);
160 void PushPendingTask(const base::Closure& closure, Priority priority)
    [all...]
  /external/llvm/include/llvm/CodeGen/
TargetLoweringObjectFileImpl.h 70 const MCSection *getStaticCtorSection(unsigned Priority,
72 const MCSection *getStaticDtorSection(unsigned Priority,
144 const MCSection *getStaticCtorSection(unsigned Priority,
146 const MCSection *getStaticDtorSection(unsigned Priority,
  /external/chromium_org/net/quic/
quic_utils.h 18 enum Priority {
31 // FindMutualTag sets |out_result| to the first tag in the priority list that
35 // Which list has priority is determined by |priority|.
42 Priority priority,

Completed in 342 milliseconds

1 2 3 4 5