HomeSort by relevance Sort by last modified time
    Searched refs:left (Results 151 - 175 of 5035) sorted by null

1 2 3 4 5 67 8 91011>>

  /prebuilts/ndk/current/platforms/android-24/arch-x86_64/usr/include/android/
rect.h 31 int32_t left; member in struct:ARect
  /prebuilts/ndk/current/platforms/android-9/arch-arm/usr/include/android/
rect.h 31 int32_t left; member in struct:ARect
  /prebuilts/ndk/current/platforms/android-9/arch-mips/usr/include/android/
rect.h 31 int32_t left; member in struct:ARect
  /prebuilts/ndk/current/platforms/android-9/arch-x86/usr/include/android/
rect.h 31 int32_t left; member in struct:ARect
  /prebuilts/ndk/current/sources/cxx-stl/gnu-libstdc++/4.9/include/ext/pb_ds/detail/binary_heap_/
erase_fn_imps.hpp 108 const size_type left = partition(pred_t(pred)); local
109 _GLIBCXX_DEBUG_ASSERT(m_size >= left);
110 const size_type ersd = m_size - left;
111 for (size_type i = left; i < m_size; ++i)
117 resize_policy::get_new_size_for_arbitrary(left);
120 std::copy(m_a_entries, m_a_entries + left, new_entries);
128 m_size = left;
187 size_type left = 0; local
190 while (right + 1 != left)
192 _GLIBCXX_DEBUG_ASSERT(left <= m_size)
    [all...]
  /toolchain/binutils/binutils-2.25/gas/testsuite/gas/pe/
set.d 4 # Ensure that we stick an entry for the left hand side of a set directive
5 # depending on the name of the left hand side.
  /external/avahi/avahi-core/
prioq.c 69 n = n->left;
97 if (a->parent->left == b)
98 a->parent->left = a;
104 if (b->left == a) {
105 if ((b->left = a->left))
106 b->left->parent = b;
107 a->left = b;
120 l = a->left;
121 if ((a->left = b->left)
    [all...]
  /external/apache-xml/src/main/java/org/apache/xpath/operations/
Gt.java 37 * @param left non-null reference to the evaluated left operand.
44 public XObject operate(XObject left, XObject right)
47 return left.greaterThan(right) ? XBoolean.S_TRUE : XBoolean.S_FALSE;
Gte.java 37 * @param left non-null reference to the evaluated left operand.
44 public XObject operate(XObject left, XObject right)
47 return left.greaterThanOrEqual(right)
Lt.java 37 * @param left non-null reference to the evaluated left operand.
44 public XObject operate(XObject left, XObject right)
47 return left.lessThan(right) ? XBoolean.S_TRUE : XBoolean.S_FALSE;
Lte.java 37 * @param left non-null reference to the evaluated left operand.
44 public XObject operate(XObject left, XObject right)
47 return left.lessThanOrEqual(right) ? XBoolean.S_TRUE : XBoolean.S_FALSE;
NotEquals.java 37 * @param left non-null reference to the evaluated left operand.
44 public XObject operate(XObject left, XObject right)
47 return (left.notEquals(right)) ? XBoolean.S_TRUE : XBoolean.S_FALSE;
Quo.java 40 * @param left non-null reference to the evaluated left operand.
47 public XObject operate(XObject left, XObject right)
50 return new XNumber((int) (left.num() / right.num()));
  /external/autotest/client/site_tests/documentscan_AppTestWithFakeLorgnette/document_scan_test_app/
scan.css 8 left: 0px;
22 left: 50%;
23 margin-left: -30px;
27 border-left:6px solid rgba(180,174,239,.15);
  /external/guava/guava/src/com/google/common/collect/
UsingToStringOrdering.java 32 @Override public int compare(Object left, Object right) {
33 return left.toString().compareTo(right.toString());
  /external/skia/tests/
CanvasStateHelpers.cpp 16 void complex_layers_draw(SkCanvas* canvas, float left, float top,
22 SkRect rect = SkRect::MakeLTRB(left, top, right, bottom);
29 float left, float top, float right, float bottom, int32_t spacer) {
34 complex_layers_draw(canvas, left, top, right, bottom, spacer);
39 void complex_clips_draw(SkCanvas* canvas, int32_t left, int32_t top,
42 SkRect clipRect = SkRect::MakeLTRB(SkIntToScalar(left), SkIntToScalar(top),
53 int32_t left, int32_t top, int32_t right, int32_t bottom, int32_t clipOp,
67 complex_clips_draw(canvas, left, top, right, bottom, clipOp, localRegion);
  /frameworks/data-binding/extensions/baseAdapters/src/main/java/android/databinding/adapters/
CardViewBindingAdapter.java 37 public static void setContentPaddingLeft(CardView view, int left) {
41 view.setContentPadding(left, top, right, bottom);
46 int left = view.getContentPaddingLeft(); local
49 view.setContentPadding(left, top, right, bottom);
54 int left = view.getContentPaddingLeft(); local
57 view.setContentPadding(left, top, right, bottom);
62 int left = view.getContentPaddingLeft(); local
65 view.setContentPadding(left, top, right, bottom);
  /prebuilts/go/darwin-x86/test/bench/shootout/
binary-tree.c 45 struct tn* left; member in struct:tn
51 treeNode* NewTreeNode(treeNode* left, treeNode* right, long item)
57 new->left = left;
67 if (tree->left == NULL)
70 return tree->item + ItemCheck(tree->left) - ItemCheck(tree->right);
90 if (tree->left != NULL)
92 DeleteTree(tree->left);
  /prebuilts/go/linux-x86/test/bench/shootout/
binary-tree.c 45 struct tn* left; member in struct:tn
51 treeNode* NewTreeNode(treeNode* left, treeNode* right, long item)
57 new->left = left;
67 if (tree->left == NULL)
70 return tree->item + ItemCheck(tree->left) - ItemCheck(tree->right);
90 if (tree->left != NULL)
92 DeleteTree(tree->left);
  /external/libvpx/libvpx/vpx_dsp/mips/
intrapred16_dspr2.c 15 const uint8_t *above, const uint8_t *left) {
20 "lb %[tmp1], (%[left]) \n\t"
21 "lb %[tmp2], 1(%[left]) \n\t"
22 "lb %[tmp3], 2(%[left]) \n\t"
23 "lb %[tmp4], 3(%[left]) \n\t"
24 "lb %[tmp5], 4(%[left]) \n\t"
25 "lb %[tmp6], 5(%[left]) \n\t"
26 "lb %[tmp7], 6(%[left]) \n\t"
27 "lb %[tmp8], 7(%[left]) \n\t"
28 "lb %[tmp9], 8(%[left]) \n\t
    [all...]
  /external/lzma/CPP/7zip/Common/
UniqBlocks.cpp 9 unsigned left = 0, right = Sorted.Size(); local
10 while (left != right)
12 unsigned mid = (left + right) / 2;
19 left = mid + 1;
28 left = mid + 1;
32 Sorted.Insert(left, index);
  /external/toybox/toys/lsb/
seq.c 63 int i, len, dot, left = 0, right = 0; local
71 if (left<dot) left = dot;
74 } else if (len>left) left = len;
77 sprintf(fmt_str = toybuf, "%%0%d.%df", left+right+!!right, right);
  /external/v8/test/mjsunit/regress/
regress-416730.js 9 function Crash(left, right) {
11 x: right.x - left.x,
12 y: right.y - left.y
  /external/webrtc/webrtc/modules/video_render/external/
video_render_external_impl.h 47 const float left, const float top,
56 float& left, float& top,
92 const float left, const float top,
97 const float left, const float top,
107 const float left, const float top,
112 const void* colorKey, const float left,
  /external/webrtc/webrtc/modules/video_render/
i_video_render.h 41 const float left,
52 float& left,
94 const float left,
101 const float left,
113 const float left,
121 const float left,

Completed in 3148 milliseconds

1 2 3 4 5 67 8 91011>>