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

1 2 3 4

  /external/llvm/include/llvm/Transforms/Utils/
ModuleUtils.h 22 /// Append F to the list of global ctors of module M with the given Priority.
26 void appendToGlobalCtors(Module &M, Function *F, int Priority);
29 void appendToGlobalDtors(Module &M, Function *F, int 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...]
  /frameworks/volley/tests/src/com/android/volley/
RequestTest.java 21 import com.android.volley.Request.Priority;
34 TestRequest low = new TestRequest(Priority.LOW);
36 TestRequest low2 = new TestRequest(Priority.LOW);
38 TestRequest high = new TestRequest(Priority.HIGH);
40 TestRequest immediate = new TestRequest(Priority.IMMEDIATE);
52 private Priority mPriority = Priority.NORMAL;
53 public TestRequest(Priority priority) {
55 mPriority = priority;
    [all...]
RequestQueueTest.java 19 import com.android.volley.Request.Priority;
54 Request.Priority[] allPriorities = Request.Priority.values();
60 Request.Priority priority = allPriorities[random.nextInt(allPriorities.length)]; local
62 request.setPriority(priority);
136 private Priority mLastPriority = Priority.IMMEDIATE;
155 Priority thisPriority = request.getPriority();
160 // Should never experience a higher priority after a lower priorit
    [all...]
  /cts/tests/tests/renderscript/src/android/renderscript/cts/
RenderScriptTest.java 57 mRS.setPriority(RenderScript.Priority.LOW);
58 mRS.setPriority(RenderScript.Priority.NORMAL);
63 * Verify Priority enum properties.
66 assertEquals(RenderScript.Priority.LOW,
67 RenderScript.Priority.valueOf("LOW"));
68 assertEquals(RenderScript.Priority.NORMAL,
69 RenderScript.Priority.valueOf("NORMAL"));
70 assertEquals(2, RenderScript.Priority.values().length);
  /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/llvm/lib/Transforms/Utils/
ModuleUtils.cpp 23 Module &M, Function *F, int Priority) {
30 Ty, IRB.getInt32(Priority), F, NULL);
58 void llvm::appendToGlobalCtors(Module &M, Function *F, int Priority) {
59 appendToGlobalArray("llvm.global_ctors", M, F, Priority);
62 void llvm::appendToGlobalDtors(Module &M, Function *F, int Priority) {
63 appendToGlobalArray("llvm.global_dtors", M, F, Priority);
  /frameworks/support/v8/renderscript/java/src/android/support/v8/renderscript/
RenderScriptThunker.java 38 public void setPriority(Priority p) {
39 if (p == Priority.LOW) mN.setPriority(android.renderscript.RenderScript.Priority.LOW);
40 if (p == Priority.NORMAL) mN.setPriority(android.renderscript.RenderScript.Priority.NORMAL);
  /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/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...]
  /frameworks/volley/src/com/android/volley/toolbox/
ClearCacheRequest.java 58 public Priority getPriority() {
59 return Priority.IMMEDIATE;
ImageRequest.java 81 public Priority getPriority() {
82 return Priority.LOW;
  /external/llvm/include/llvm/Target/
TargetLoweringObjectFile.h 131 getStaticCtorSection(unsigned Priority = 65535) const {
132 (void)Priority;
136 getStaticDtorSection(unsigned Priority = 65535) const {
137 (void)Priority;
  /frameworks/volley/tests/src/com/android/volley/mock/
MockRequest.java 84 private Priority mPriority = super.getPriority();
86 public void setPriority(Priority priority) {
87 mPriority = priority;
91 public Priority getPriority() {
WaitableQueue.java 59 public Priority getPriority() {
60 return Priority.LOW;
  /external/llvm/include/llvm/CodeGen/
TargetLoweringObjectFileImpl.h 72 getStaticCtorSection(unsigned Priority = 65535) const;
74 getStaticDtorSection(unsigned Priority = 65535) const;
  /frameworks/volley/src/com/android/volley/
Request.java 430 * Priority values. Requests will be processed from higher priorities to
433 public enum Priority {
441 * Returns the {@link Priority} of this request; {@link Priority#NORMAL} by default.
443 public Priority getPriority() {
444 return Priority.NORMAL;
522 * Our comparator sorts from high to low priority, and secondarily by
527 Priority left = this.getPriority();
528 Priority right = other.getPriority();
530 // High-priority requests are "lesser" so they are sorted to the front
    [all...]
  /external/llvm/lib/CodeGen/
TargetLoweringObjectFileImpl.cpp 347 TargetLoweringObjectFileELF::getStaticCtorSection(unsigned Priority) const {
348 // The default scheme is .ctor / .dtor, so we have to invert the priority
350 if (Priority == 65535)
354 std::string Name = std::string(".init_array.") + utostr(Priority);
359 std::string Name = std::string(".ctors.") + utostr(65535 - Priority);
367 TargetLoweringObjectFileELF::getStaticDtorSection(unsigned Priority) const {
368 // The default scheme is .ctor / .dtor, so we have to invert the priority
370 if (Priority == 65535)
374 std::string Name = std::string(".fini_array.") + utostr(Priority);
379 std::string Name = std::string(".dtors.") + utostr(65535 - Priority);
    [all...]
  /hardware/ti/omap3/omx/system/src/openmax_il/lcml/inc/
LCML_Types.h 279 OMX_S32 Priority;
  /packages/wallpapers/MusicVisualization/src/com/android/musicvis/
RenderScriptWallpaper.java 109 mRs.setPriority(RenderScript.Priority.LOW);
  /external/clang/lib/Sema/
CodeCompleteConsumer.cpp 192 unsigned Priority,
199 Priority(Priority), Availability(Availability),
339 Priority, Availability,
  /packages/wallpapers/Basic/src/com/android/wallpaper/
RenderScriptWallpaper.java 101 mRs.setPriority(RenderScript.Priority.LOW);
  /packages/wallpapers/Galaxy4/src/com/android/galaxy4/
Galaxy4Wallpaper.java 82 mRenderScript.setPriority(RenderScript.Priority.LOW);
  /packages/wallpapers/HoloSpiral/src/com/android/wallpaper/holospiral/
HoloSpiralView.java 65 mRenderScript.setPriority(RenderScript.Priority.LOW);
HoloSpiralWallpaper.java 73 mRenderScript.setPriority(RenderScript.Priority.LOW);

Completed in 845 milliseconds

1 2 3 4