/external/markdown/MarkdownTest/Tests_2007/ |
Backslash escapes.html | 13 <p>Right brace: }</p> 17 <p>Right bracket: ]</p> 21 <p>Right paren: )</p> 47 Right brace: \} 51 Right bracket: \] 55 Right paren: \) 82 <p>Right brace: <code>\}</code></p> 86 <p>Right bracket: <code>\]</code></p> 90 <p>Right paren: <code>\)</code></p>
|
/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/lzma/CPP/7zip/Common/ |
FilePathAutoRename.cpp | 45 unsigned left = 1, right = (1 << 30);
local 46 while (left != right)
48 unsigned mid = (left + right) / 2;
52 right = mid;
54 return !MakeAutoName(name, extension, right, fullProcessedPath);
|
/frameworks/base/services/core/java/com/android/server/notification/ |
GlobalSortKeyComparator.java | 25 public int compare(NotificationRecord left, NotificationRecord right) { 29 if (right.getGlobalSortKey() == null) { 30 throw new IllegalStateException("Missing right global sort key: " + right); 32 return left.getGlobalSortKey().compareTo(right.getGlobalSortKey());
|
NotificationComparator.java | 27 public int compare(NotificationRecord left, NotificationRecord right) { 29 final int rightPackagePriority = right.getPackagePriority(); 36 final int rightScore = right.sbn.getScore(); 43 final float rightPeople = right.getContactAffinity(); 50 return -1 * Long.compare(left.getRankingTimeMs(), right.getRankingTimeMs());
|
/external/icu/icu4c/source/common/ |
uarrsort.c | 38 uprv_uint16Comparator(const void *context, const void *left, const void *right) { 39 return (int32_t)*(const uint16_t *)left - (int32_t)*(const uint16_t *)right; 43 uprv_int32Comparator(const void *context, const void *left, const void *right) { 44 return *(const int32_t *)left - *(const int32_t *)right; 48 uprv_uint32Comparator(const void *context, const void *left, const void *right) { 49 uint32_t l=*(const uint32_t *)left, r=*(const uint32_t *)right; 171 int32_t left, right; local 173 /* start and left are inclusive, limit and right are exclusive */ 181 right=limit; 192 while(/* x<array[right-1] * [all...] |
/external/skia/src/core/ |
SkTSort.h | 121 template <typename T, typename C> static void SkTInsertionSort(T* left, T* right, C lessThan) { 122 for (T* next = left + 1; next <= right; ++next) { 136 static T* SkTQSort_Partition(T* left, T* right, T* pivot, C lessThan) { 138 SkTSwap(*pivot, *right); 140 while (left < right) { 147 SkTSwap(*newPivot, *right); 154 * This implementation recurses on the left region after pivoting and loops on the right, 160 * @param right the end of the region to be sorted (inclusive). 163 template <typename T, typename C> void SkTIntroSort(int depth, T* left, T* right, C lessThan) { 165 if (right - left < 32) [all...] |
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/encodings/ |
mac_farsi.py | 80 u' ' # 0x20 -> SPACE, left-right 81 u'!' # 0x21 -> EXCLAMATION MARK, left-right 82 u'"' # 0x22 -> QUOTATION MARK, left-right 83 u'#' # 0x23 -> NUMBER SIGN, left-right 84 u'$' # 0x24 -> DOLLAR SIGN, left-right 85 u'%' # 0x25 -> PERCENT SIGN, left-right 86 u'&' # 0x26 -> AMPERSAND, left-right 87 u"'" # 0x27 -> APOSTROPHE, left-right 88 u'(' # 0x28 -> LEFT PARENTHESIS, left-right 89 u')' # 0x29 -> RIGHT PARENTHESIS, left-righ [all...] |
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/encodings/ |
mac_farsi.py | 80 u' ' # 0x20 -> SPACE, left-right 81 u'!' # 0x21 -> EXCLAMATION MARK, left-right 82 u'"' # 0x22 -> QUOTATION MARK, left-right 83 u'#' # 0x23 -> NUMBER SIGN, left-right 84 u'$' # 0x24 -> DOLLAR SIGN, left-right 85 u'%' # 0x25 -> PERCENT SIGN, left-right 86 u'&' # 0x26 -> AMPERSAND, left-right 87 u"'" # 0x27 -> APOSTROPHE, left-right 88 u'(' # 0x28 -> LEFT PARENTHESIS, left-right 89 u')' # 0x29 -> RIGHT PARENTHESIS, left-righ [all...] |
/external/clang/test/CodeGenCXX/ |
microsoft-abi-multiple-nonvirtual-inheritance.cpp | 7 struct Right { 8 virtual void right(); 11 struct ChildNoOverride : Left, Right { 14 struct ChildOverride : Left, Right { 16 virtual void right(); 68 child->right(); 69 // When calling a right base's virtual method, one needs to adjust 'this' at 74 // CHECK: %[[RIGHT:.*]] = bitcast i8* %[[RIGHT_i8]] to %struct.Right* 76 // CHECK: %[[VFPTR:.*]] = bitcast %struct.Right* %[[RIGHT]] to void (%struct.Right*)** 84 void ChildOverride::right() { function in class:ChildOverride 129 void GrandchildOverride::right() { function in class:GrandchildOverride [all...] |
microsoft-abi-methods.cpp | 20 // Make sure that the call uses the right calling convention: 24 // Make sure that the definition uses the right calling convention: 32 // Make sure that the call uses the right calling convention: 36 // Make sure that the definition uses the right calling convention: 44 // Make sure that the call uses the right calling convention: 48 // Make sure that the definition uses the right calling convention: 54 // Make sure that the call uses the right calling convention: 58 // Make sure that the definition uses the right calling convention: 73 // the right calling convention: 78 // Make sure that the Base constructor definition uses the right CC [all...] |
/cts/tests/tests/graphics/src/android/graphics/cts/ |
RectFTest.java | 62 assertEquals(5.0f, mRectF.right); 68 assertEquals(10.0f, mRectF.right); 79 assertEquals(3.0f, mRectF.right); 91 assertEquals(3.0f, mRectF.right); 103 assertEquals(3.0f, mRectF.right); 114 assertEquals(10.0f, mRectF.right); 121 assertEquals(10.0f, mRectF.right); 147 assertEquals(10.0f, mRectF.right); 154 assertEquals(10.0f, mRectF.right); 168 assertEquals(10.0f, mRectF.right); [all...] |
RegionIteratorTest.java | 44 assertEquals(10, rect.right); 50 assertEquals(1, rect.right); 61 assertEquals(10, rect.right); 66 assertEquals(15, rect.right); 71 assertEquals(15, rect.right); 77 assertEquals(1, rect.right); 88 assertEquals(10, rect.right); 93 assertEquals(5, rect.right); 99 assertEquals(1, rect.right); 110 assertEquals(10, rect.right); [all...] |
/frameworks/native/libs/ui/ |
Rect.cpp | 35 right = -1; 49 if (right < rhs.right) { 59 right -= left - x; 69 right += x; 75 const Rect result(left + rhs.x, top + rhs.y, right + rhs.x, bottom + rhs.y); 80 const Rect result(left - rhs.x, top - rhs.y, right - rhs.x, bottom - rhs.y); 87 result->right = min(right, with.right); 105 int right = height - result.top; local [all...] |
/frameworks/support/v7/gridlayout/tests/src/android/support/v7/widget/test/ |
GridLayoutTest.java | 53 int right = getActivity().findViewById(R.id.rightView).getWidth(); local 56 assertTrue("right item should get some width", right > 0); 58 assertTrue("left view should be almost two times right view " + left + " vs " + right, 59 Math.abs(right * 2 - left) < 2); 66 int right = getActivity().findViewById(R.id.rightView).getWidth(); local 69 assertTrue("right item should get some width", right > 0); 71 assertTrue("left view should be almost two times right view " + left + " vs " + right 79 final int right = getActivity().findViewById(R.id.rightView).getWidth(); local 102 final int right = getActivity().findViewById(R.id.rightView).getHeight(); local [all...] |
/packages/apps/Settings/src/com/android/settings/applications/ |
LinearColorBar.java | 194 int right = left + (int)(width*mRedRatio); local 195 int right2 = right + (int)(width*mYellowRatio); 203 indicatorLeft = right; 242 if (left < right) { 244 mRect.right = right; 247 width -= (right-left); 248 left = right; 251 mLastLeftDiv = right; 254 right = right2 [all...] |
/external/llvm/test/Transforms/CorrelatedValuePropagation/ |
2010-09-02-Trunc.ll | 7 br i1 %c, label %left, label %right 9 right: 20 %f = phi i1 [%b, %left], [%d, %right]
|
/external/valgrind/helgrind/tests/ |
tc14_laog_dinphils.c | 19 long right = (left + 1) % 5; local 22 pthread_mutex_lock(&chop[right].m); 25 pthread_mutex_unlock(&chop[right].m);
|
/sdk/testapps/basicProjectWithAidl/src/com/android/tests/basicprojectwithaidl/ |
Rect.java | 9 public int right; field in class:Rect 32 out.writeInt(right); 39 right = in.readInt();
|
/development/samples/ApiDemos/src/com/example/android/apis/graphics/kube/ |
Cube.java | 22 public Cube(GLWorld world, float left, float bottom, float back, float right, float top, float front) { 25 GLVertex rightBottomBack = addVertex(right, bottom, back); 27 GLVertex rightTopBack = addVertex(right, top, back); 29 GLVertex rightBottomFront = addVertex(right, bottom, front); 31 GLVertex rightTopFront = addVertex(right, top, front); 40 // right
|
/external/replicaisland/res/values/ |
arrays.xml | 3 <!-- This came right out of frameworks/base/include/ui/KeycodeLabels.h --> 6 <item>SOFT RIGHT</item> 26 <item>DPAD RIGHT</item> 62 <item>ALT RIGHT</item> 64 <item>SHIFT RIGHT</item> 76 <item>RIGHT BRACKET</item>
|
/external/toybox/toys/other/ |
mix.c | 12 usage: mix [-d DEV] [-c CHANNEL] [-l VOL] [-r RIGHT] 19 -r RIGHT Volume of right stereo channel (with -r, -l sets left volume) 27 long right; 57 xprintf("%s:%s = left:%d\t right:%d\n", 62 if (!(toys.optflags & FLAG_r)) level = TT.right | (level<<8);
|
/ndk/tests/device/issue42891-boost-1_52/jni/boost/boost/utility/ |
swap.hpp | 30 void swap_impl(T& left, T& right) 33 swap(left,right); 37 void swap_impl(T (& left)[N], T (& right)[N]) 41 ::boost_swap_impl::swap_impl(left[i], right[i]); 49 void swap(T1& left, T2& right) 51 ::boost_swap_impl::swap_impl(left, right);
|
/external/lldb/www/python_reference/ |
_lldb'-module.html | 31 <th class="navbar" align="right" width="100%"> 48 <tr><td align="right"><span class="options">[<a href="javascript:void(0);" class="privatelink" 50 <tr><td align="right"><span class="options" 69 <td align="right" valign="top" 78 <td width="15%" align="right" valign="top" class="summary"> 85 <td align="right" valign="top"> 95 <td width="15%" align="right" valign="top" class="summary"> 102 <td align="right" valign="top"> 112 <td width="15%" align="right" valign="top" class="summary"> 119 <td align="right" valign="top" [all...] |
/external/clang/test/Parser/ |
objcxx11-protocol-in-template.mm | 10 // expected-error@14{{a space is required between consecutive right angle brackets}} 11 // expected-error@15{{a space is required between consecutive right angle brackets}}
|