/frameworks/base/services/core/java/com/android/server/notification/ |
NotificationComparator.java | 27 public int compare(NotificationRecord left, NotificationRecord right) { 29 final int rightImportance = right.getImportance(); 37 final int rightPackagePriority = right.getPackagePriority(); 44 final int rightPriority = right.sbn.getNotification().priority; 51 final float rightPeople = right.getContactAffinity(); 58 return -1 * Long.compare(left.getRankingTimeMs(), right.getRankingTimeMs());
|
/art/test/550-checker-multiply-accumulate/src/ |
Main.java | 41 /// CHECK: <<Right:i\d+>> ParameterValue 42 /// CHECK: <<Mul:i\d+>> Mul [<<Left>>,<<Right>>] 49 /// CHECK: <<Right:i\d+>> ParameterValue 50 /// CHECK: <<MulAdd:i\d+>> MultiplyAccumulate [<<Acc>>,<<Left>>,<<Right>>] kind:Add 63 /// CHECK: <<Right:i\d+>> ParameterValue 64 /// CHECK: <<Mul:i\d+>> Mul [<<Left>>,<<Right>>] 71 /// CHECK: <<Right:i\d+>> ParameterValue 72 /// CHECK: <<MulAdd:i\d+>> MultiplyAccumulate [<<Acc>>,<<Left>>,<<Right>>] kind:Add 82 public static int $opt$noinline$mulAdd(int acc, int left, int right) { 84 return acc + left * right; [all...] |
/art/tools/ahat/src/ |
style.css | 22 * Most of the columns show numbers of bytes. Numbers should be right aligned. 27 padding-right: 4px; 32 padding-right: 8px;
|
/external/androidplot/AndroidPlot-Core/src/test/java/com/androidplot/mock/ |
MockRectF.java | 28 //public float right;
42 it.right = rhs.right;
47 public void $init(float left, float top, float right, float bottom) {
50 it.right = right;
62 it.right = it.right + dx;
71 it.right = left + width();
87 return it.right - it.left; [all...] |
/external/apache-xml/src/main/java/org/apache/xpath/operations/ |
Bool.java | 38 * @param right non-null reference to the evaluated right operand. 44 public XObject operate(XObject right) throws javax.xml.transform.TransformerException 47 if (XObject.CLASS_BOOLEAN == right.getType()) 48 return right; 50 return right.bool() ? XBoolean.S_TRUE : XBoolean.S_FALSE;
|
Number.java | 38 * @param right non-null reference to the evaluated right operand. 44 public XObject operate(XObject right) throws javax.xml.transform.TransformerException 47 if (XObject.CLASS_NUMBER == right.getType()) 48 return right; 50 return new XNumber(right.num());
|
String.java | 37 * @param right non-null reference to the evaluated right operand. 43 public XObject operate(XObject right) throws javax.xml.transform.TransformerException 45 return (XString)right.xstr(); // semi-safe cast.
|
Equals.java | 39 * @param right non-null reference to the evaluated right operand. 45 public XObject operate(XObject left, XObject right) 48 return left.equals(right) ? XBoolean.S_TRUE : XBoolean.S_FALSE; 66 XObject right = m_right.execute(xctxt, true); local 68 boolean result = left.equals(right) ? true : false; 70 right.detach();
|
/external/libbrillo/brillo/ |
unittest_utils.h | 34 // The left and right sockets are bi-directional connected and 35 // indistinguishable file descriptor. We named them left/right for easier 38 int right{-1};
|
/external/libunwind/scripts/ |
kernel-diff.sh | 7 right=$(eval echo $r) 8 # echo $left $right 9 diff -up $left $right
|
/external/skia/tests/ |
CanvasStateHelpers.h | 23 float right, float bottom, int32_t spacer); 32 float left, float top, float right, float bottom, int32_t spacer); 39 int32_t right, int32_t bottom, int32_t clipOp, const SkRegion& localRegion); 48 int32_t left, int32_t top, int32_t right, int32_t bottom, int32_t clipOp,
|
/frameworks/compile/mclinker/include/mcld/ADT/ |
TreeBase.h | 23 NodeBase* right; member in class:mcld::NodeBase 26 NodeBase() : left(NULL), right(NULL) {} 57 bool isRoot() const { return (m_pNode->right == m_pNode); } 60 return ((m_pNode->right) != (m_pNode->right->right)); 64 return ((m_pNode->left) != (m_pNode->left->right)); 83 this->m_pNode = this->m_pNode->right; 95 this->m_pNode->right = pOther;
|
/external/robolectric/v1/src/main/java/com/xtremelabs/robolectric/shadows/ |
ShadowRect.java | 14 public void __constructor__(int left, int top, int right, int bottom) { 17 realRect.right = right; 24 realRect.right = otherRect.right; 30 set(rect.left, rect.top, rect.right, rect.bottom); 34 public void set(int left, int top, int right, int bottom) { 37 realRect.right = right; 43 return realRect.right - realRect.left [all...] |
/external/libcxx/test/std/input.output/iostreams.base/std.ios.manip/adjustfield.manip/ |
right.pass.cpp | 14 // ios_base& right(ios_base& str); 26 std::ios_base& r = std::right(ios); 28 assert(ios.flags() & std::ios::right);
|
/external/parameter-framework/upstream/test/tmpfile/ |
TmpFile.hpp | 58 TmpFile(TmpFile &&right) : mPath(std::move(right.mPath)) { right.mPath.clear(); } 62 TmpFile(const TmpFile &right) = delete; member in class:parameterFramework::utility::TmpFile 63 TmpFile &operator=(const TmpFile &right) = delete; member in class:parameterFramework::utility::TmpFile 66 TmpFile &operator=(TmpFile &&right) 69 mPath = std::move(right.mPath); 70 right.mPath.clear();
|
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/input.output/iostreams.base/std.ios.manip/adjustfield.manip/ |
right.pass.cpp | 14 // ios_base& right(ios_base& str); 26 std::ios_base& r = std::right(ios); 28 assert(ios.flags() & std::ios::right);
|
/packages/apps/Settings/src/com/android/settings/drawable/ |
InsetBoundsDrawable.java | 34 public void setBounds(int left, int top, int right, int bottom) { 35 super.setBounds(left + mInsetBoundsSides, top, right - mInsetBoundsSides, bottom);
|
/external/javassist/src/main/javassist/compiler/ast/ |
ASTList.java | 22 * The right subtree must be an ASTList object or null. 26 private ASTList right; field in class:ASTList 30 right = _tail; 35 right = null; 44 public ASTree getRight() { return right; } 49 right = (ASTList)_right; 64 public ASTList tail() { return right; } 67 right = _tail; 82 list = list.right; 102 list = list.right; [all...] |
/external/opencv3/modules/calib3d/perf/opencl/ |
perf_stereobm.cpp | 57 UMat left, right, disp; local 60 imread(getDataPath("gpu/stereobm/aloe-R.png"), IMREAD_GRAYSCALE).copyTo(right); 62 ASSERT_FALSE(right.empty()); 64 declare.in(left, right); 70 OCL_TEST_CYCLE() bm->compute(left, right, disp);
|
/external/webrtc/webrtc/modules/desktop_capture/ |
desktop_geometry.cc | 18 return point.x() >= left() && point.x() < right() && 23 return rect.left() >= left() && rect.right() <= right() && 30 right_ = std::min(right(), rect.right());
|
/frameworks/base/packages/SystemUI/src/com/android/systemui/recents/misc/ |
RectFEvaluator.java | 33 * (left, top, right, and bottom). 47 float right = startValue.right + ((endValue.right - startValue.right) * fraction); local 49 mRect.set(left, top, right, bottom);
|
/frameworks/native/libs/ui/ |
Rect.cpp | 36 right = -1; 50 if (right < rhs.right) { 60 right -= left - x; 70 right += x; 76 const Rect result(left + rhs.x, top + rhs.y, right + rhs.x, bottom + rhs.y); 81 const Rect result(left - rhs.x, top - rhs.y, right - rhs.x, bottom - rhs.y); 88 result->right = min(right, with.right); 106 int right = height - result.top; local [all...] |
/packages/apps/Messaging/src/com/android/messaging/ui/animation/ |
RectEvaluatorCompat.java | 41 int right = startValue.right + (int) ((endValue.right - startValue.right) * fraction); local 43 return new Rect(left, top, right, bottom);
|
/hardware/qcom/display/msm8996/sdm/libs/utils/ |
rect.cpp | 39 return ((rect.bottom > rect.top) && (rect.right > rect.left)); 45 (rect1.right == rect2.right) && 50 DLOGV_IF(debug_tag, "%s: left = %.0f, top = %.0f, right = %.0f, bottom = %.0f", 51 prefix, roi.left, roi.top, roi.right, roi.bottom); 56 rect->right = ROUND_UP_ALIGN_DOWN(rect->right, align_x); 70 res.right = MIN(rect1.right, rect2.right); [all...] |
/external/eclipse-windowbuilder/propertysheet/src/org/eclipse/wb/internal/core/utils/ |
Pair.java | 23 private final R right;
field in class:Pair 30 public Pair(L left, R right) {
32 this.right = right;
70 return right;
78 public static <L, R> Pair<L, R> create(L left, R right) {
79 return new Pair<L, R>(left, right);
|