HomeSort by relevance Sort by last modified time
    Searched refs:left (Results 26 - 50 of 2666) sorted by null

12 3 4 5 6 7 8 91011>>

  /bionic/libc/upstream-openbsd/lib/libc/stdlib/
tsearch.c 20 struct node_t *left, *right; member in struct:node_t
40 &(*rootp)->left : /* T3: follow left branch */
47 q->left = q->right = (struct node_t *)0;
69 &(*rootp)->left : /* follow left branch */
75 if ((q = (*rootp)->left) == (struct node_t *)0) /* Left (struct node_t *)0? */
78 if (r->left == (struct node_t *)0) { /* D2: Find successor */
79 r->left = q
    [all...]
  /external/chromium_org/chrome/browser/resources/
profile_signin_confirmation.css 7 margin-left: 0;
15 margin-left: 0;
  /external/chromium_org/third_party/skia/tests/
CanvasStateHelpers.h 22 void complex_layers_draw(SkCanvas* canvas, float left, float top,
32 float left, float top, float right, float bottom, int32_t spacer);
38 void complex_clips_draw(SkCanvas* canvas, int32_t left, int32_t top,
48 int32_t left, int32_t top, int32_t right, int32_t bottom, int32_t clipOp,
  /external/libunwind/scripts/
kernel-diff.sh 6 left=$(eval echo $l)
8 # echo $left $right
9 diff -up $left $right
  /external/chromium_org/chrome/browser/resources/chromeos/network_configuration/css/
status.css 7 padding-left: 30px;
  /external/chromium_org/chrome/browser/resources/options/
hotword_search_setting_indicator.css 8 background: url('chrome://theme/IDR_WARNING') left top no-repeat;
  /external/chromium_org/chrome/browser/resources/print_preview/settings/
other_options_settings.css 5 #other-options-settings .left-column {
  /external/chromium_org/third_party/libaddressinput/src/cpp/test/util/
string_compare_test.cc 28 TestCase(const std::string& left,
32 : left(left),
39 std::string left; member in struct:__anon17229::TestCase
56 EXPECT_TRUE(compare_.NaturalEquals(GetParam().left, GetParam().right));
58 EXPECT_FALSE(compare_.NaturalEquals(GetParam().left, GetParam().right));
64 EXPECT_TRUE(compare_.NaturalLess(GetParam().left, GetParam().right));
66 EXPECT_FALSE(compare_.NaturalLess(GetParam().left, GetParam().right));
  /external/chromium_org/ui/file_manager/file_manager/audio_player/elements/
audio_player.css 8 left: 0;
  /external/clang/test/Modules/
diamond-pch.c 12 left(&f);
24 lr.left = 17;
diamond.c 13 left(&f);
25 lr.left = 17;
  /external/libcxx/test/input.output/iostreams.base/std.ios.manip/adjustfield.manip/
left.pass.cpp 14 // ios_base& left(ios_base& str);
26 std::ios_base& r = std::left(ios);
28 assert(ios.flags() & std::ios::left);
  /external/apache-xml/src/main/java/org/apache/xpath/operations/
Equals.java 38 * @param left non-null reference to the evaluated left operand.
45 public XObject operate(XObject left, XObject right)
48 return left.equals(right) ? XBoolean.S_TRUE : XBoolean.S_FALSE;
65 XObject left = m_left.execute(xctxt, true); local
68 boolean result = left.equals(right) ? true : false;
69 left.detach();
  /external/chromium_org/third_party/webrtc/modules/desktop_capture/
desktop_geometry.cc 18 return point.x() >= left() && point.x() < right() &&
23 return rect.left() >= left() && rect.right() <= right() &&
28 left_ = std::max(left(), rect.left());
  /external/chromium_org/v8/src/compiler/
machine-operator-reducer.cc 52 if (m.right().Is(-1)) return Replace(m.left().node()); // x & -1 => x
54 return ReplaceInt32(m.left().Value() & m.right().Value());
56 if (m.LeftEqualsRight()) return Replace(m.left().node()); // x & x => x
61 if (m.right().Is(0)) return Replace(m.left().node()); // x | 0 => x
64 return ReplaceInt32(m.left().Value() | m.right().Value());
66 if (m.LeftEqualsRight()) return Replace(m.left().node()); // x | x => x
67 if (m.left().IsWord32Shl() && m.right().IsWord32Shr()) {
68 Int32BinopMatcher mleft(m.left().node());
70 if (mleft.left().node() == mright.left().node())
    [all...]
  /external/mp4parser/isoparser/src/main/java/com/googlecode/mp4parser/boxes/mp4/objectdescriptors/
BitWriterBuffer.java 20 int left = 8 - position % 8; local
21 if (numBits <= left) {
24 current += i << (left - numBits);
28 int bitsSecondWrite = numBits - left;
29 writeBits(i >> bitsSecondWrite, left);
  /external/chromium_org/chrome/browser/resources/chromeos/first_run/
bubble.css 23 border-left-color: white;
24 left: 100%;
32 .bubble .arrow.points-left {
49 .bubble .arrow.left {
50 left: 12px;
  /external/chromium_org/tools/gn/
operators.cc 122 const Token& left,
125 const Value* old_value = scope->GetValue(left.value(), false);
136 *err = Err(op_node->left()->GetRange(), "Replacing nonempty list.",
146 left.value().as_string() + " = []\nbefore reassigning."));
153 if (right.type() == Value::LIST && left.value() == kSourcesName) {
157 Value* set_value = scope->SetValue(left.value(),
163 scope->SetValue(left.value(), right, op_node->right());
169 // left value. This is set to true when doing +, and false when doing +=.
181 Value* left,
185 switch (left->type())
437 Value left = GetValueOrFillError(op_node, left_node, "left", scope, err); local
467 Value left = GetValueOrFillError(op_node, left_node, "left", scope, err); local
    [all...]
  /external/chromium_org/third_party/WebKit/Source/platform/geometry/
FloatBoxExtent.h 47 FloatBoxExtent(float top, float right, float bottom, float left)
51 , m_left(left)
64 float left() const { return m_left; } function in class:blink::FloatBoxExtent
65 void setLeft(float left) { m_left = left; }
67 bool isZero() const { return !left() && !right() && !top() && !bottom(); }
74 rect.move(-left(), -top());
75 rect.expand(left() + right(), top() + bottom());
83 m_left = std::min(m_left, other.left());
106 && a.left() == b.left()
    [all...]
  /bionic/libc/upstream-freebsd/lib/libc/stdlib/
realpath.c 48 * in which case the path which caused trouble is left in (resolved).
58 char left[PATH_MAX], next_token[PATH_MAX], symlink[PATH_MAX]; local
82 left_len = strlcpy(left, path + 1, sizeof(left));
94 left_len = strlcpy(left, path, sizeof(left));
96 if (left_len >= sizeof(left) || resolved_len >= PATH_MAX) {
104 * Iterate over path components in `left'.
108 * Extract the next path component and adjust `left'
111 p = strchr(left, '/');
    [all...]
  /external/chromium_org/chrome/browser/ui/tabs/
tab_resources.cc 17 // Windows and Ash have shadows in the left, right and top parts of the tab.
35 SkScalar left = kTabInset; local
40 // Start in the lower-left corner.
41 path->moveTo(left, bottom);
43 // Left end cap.
44 path->lineTo(left + kTabBottomCurveWidth, bottom - kTabBottomCurveWidth);
45 path->lineTo(left + kTabCapWidth - kTabTopCurveWidth,
47 path->lineTo(left + kTabCapWidth, top);
51 path->lineTo(left + kTabCapWidth, 0);
65 path->lineTo(left, bottom)
    [all...]
  /external/eclipse-windowbuilder/propertysheet/src/org/eclipse/wb/internal/core/utils/
Pair.java 22 private final L left; field in class:Pair
30 public Pair(L left, R right) {
31 this.left = left;
66 return left;
78 public static <L, R> Pair<L, R> create(L left, R right) {
79 return new Pair<L, R>(left, right);
  /external/chromium_org/third_party/libvpx/source/libvpx/vp9/common/mips/dspr2/
vp9_intrapred4_dspr2.c 18 const uint8_t *above, const uint8_t *left) {
22 "lb %[tmp1], (%[left]) \n\t"
23 "lb %[tmp2], 1(%[left]) \n\t"
24 "lb %[tmp3], 2(%[left]) \n\t"
25 "lb %[tmp4], 3(%[left]) \n\t"
40 : [left] "r" (left), [dst] "r" (dst), [stride] "r" (stride)
45 const uint8_t *above, const uint8_t *left) {
52 "lw %[left_c], (%[left]) \n\t"
81 : [above] "r" (above), [left] "r" (left)
    [all...]
  /external/libvpx/libvpx/vp9/common/mips/dspr2/
vp9_intrapred4_dspr2.c 18 const uint8_t *above, const uint8_t *left) {
22 "lb %[tmp1], (%[left]) \n\t"
23 "lb %[tmp2], 1(%[left]) \n\t"
24 "lb %[tmp3], 2(%[left]) \n\t"
25 "lb %[tmp4], 3(%[left]) \n\t"
40 : [left] "r" (left), [dst] "r" (dst), [stride] "r" (stride)
45 const uint8_t *above, const uint8_t *left) {
52 "lw %[left_c], (%[left]) \n\t"
81 : [above] "r" (above), [left] "r" (left)
    [all...]
  /external/chromium_org/ui/gfx/geometry/
insets.h 21 Insets(int top, int left, int bottom, int right);
31 static_cast<int>(left() * x_scale),
37 return InsetsF(top(), left(), bottom(), right());

Completed in 211 milliseconds

12 3 4 5 6 7 8 91011>>