Searched refs:left (Results 226 - 250 of 2877) sorted by relevance

1234567891011>>

/external/chromium_org/v8/test/webkit/
H A Dorder-of-operations.js25 function left() { function
33 shouldBe('(function(){ leftRight = ""; left() > right(); return leftRight; })()', '"LeftRight"');
34 shouldBe('(function(){ leftRight = ""; left() >= right(); return leftRight; })()', '"LeftRight"');
35 shouldBe('(function(){ leftRight = ""; left() < right(); return leftRight; })()', '"LeftRight"');
36 shouldBe('(function(){ leftRight = ""; left() <= right(); return leftRight; })()', '"LeftRight"');
37 shouldBe('(function(){ leftRight = ""; left() + right(); return leftRight; })()', '"LeftRight"');
38 shouldBe('(function(){ leftRight = ""; left() - right(); return leftRight; })()', '"LeftRight"');
39 shouldBe('(function(){ leftRight = ""; left() / right(); return leftRight; })()', '"LeftRight"');
40 shouldBe('(function(){ leftRight = ""; left() * right(); return leftRight; })()', '"LeftRight"');
41 shouldBe('(function(){ leftRight = ""; left()
[all...]
/external/clang/include/clang/Basic/
H A DTargetCXXABI.h148 /// Are arguments to a call destroyed left to right in the callee?
278 friend bool operator==(const TargetCXXABI &left, const TargetCXXABI &right) { argument
279 return left.getKind() == right.getKind();
282 friend bool operator!=(const TargetCXXABI &left, const TargetCXXABI &right) { argument
283 return !(left == right);
/external/clang/test/CodeGen/
H A D2002-02-14-EntryNodePreds.c19 QUAD_EDGE left, right; member in struct:__anon18516
/external/guava/guava/src/com/google/common/collect/
H A DNaturalOrdering.java34 @Override public int compare(Comparable left, Comparable right) { argument
35 checkNotNull(left); // for GWT
37 if (left == right) {
41 return left.compareTo(right);
H A DNullsFirstOrdering.java34 @Override public int compare(@Nullable T left, @Nullable T right) { argument
35 if (left == right) {
38 if (left == null) {
44 return ordering.compare(left, right);
H A DNullsLastOrdering.java34 @Override public int compare(@Nullable T left, @Nullable T right) { argument
35 if (left == right) {
38 if (left == null) {
44 return ordering.compare(left, right);
H A DBstNode.java46 * The key on which this binary search tree is ordered. All descendants of the left subtree of
52 * The left child of this node. A null value indicates that this node has no left child.
55 private final N left; field in class:BstNode
63 BstNode(@Nullable K key, @Nullable N left, @Nullable N right) { argument
65 this.left = left;
84 return left;
/external/icu/icu4c/source/i18n/
H A Dcollationcompare.h28 static UCollationResult compareUpToQuaternary(CollationIterator &left, CollationIterator &right,
/external/lzma/CPP/7zip/Common/
H A DFilePathAutoRename.cpp45 unsigned left = 1, right = (1 << 30); local
46 while (left != right)
48 unsigned mid = (left + right) / 2;
50 left = mid + 1;
/external/robolectric/src/main/java/com/xtremelabs/robolectric/matchers/
H A DHasCompoundDrawablesMatcher.java16 public HasCompoundDrawablesMatcher(int left, int top, int right, int bottom) { argument
17 expectedCompoundDrawables = new ShadowTextView.CompoundDrawables(left, top, right, bottom);
42 public static Matcher<TextView> hasCompoundDrawables(int left, int top, int right, int bottom) { argument
43 return new HasCompoundDrawablesMatcher(left, top, right, bottom);
/external/skia/src/core/
H A DSkBlitter_Sprite.cpp20 void SkSpriteBlitter::setup(const SkBitmap& device, int left, int top, argument
23 fLeft = left;
52 const SkBitmap& source, int left, int top, SkTBlitterAllocator* allocator) {
56 a bit of a hack, since we "could" pass in the fractional left/top for the bitmap,
79 blitter->setup(device, left, top, paint);
51 ChooseSprite(const SkBitmap& device, const SkPaint& paint, const SkBitmap& source, int left, int top, SkTBlitterAllocator* allocator) argument
/external/chromium_org/chrome/browser/resources/chromeos/
H A Dkeyboard_overlay.js10 left: 0,
17 left: 370,
55 37: 'left',
414 // Currently there is no way to identify whether the left shift or the
415 // right shift is preesed from the key event, so I assume the left shift
417 // 'Shift - Shift' (Toggle caps lock) on the left shift key, the
452 if (format == 'left' || format == 'right') {
493 keys['3A'] = {label: 'caps lock', format: 'left'};
496 keys['DISABLED'] = {label: 'disabled', format: 'left'};
519 key.style.left
[all...]
/external/chromium_org/third_party/webrtc/modules/video_render/android/
H A Dvideo_render_android_impl.h59 const float left, const float top,
68 float& left, float& top,
96 const float left, const float top,
103 const float left, const float top,
111 const float left, const float top,
116 const void* colorKey, const float left,
125 const float left,
/external/chromium_org/third_party/webrtc/modules/video_render/external/
H A Dvideo_render_external_impl.cc51 const float left,
70 float& left,
78 left = 0;
142 const float left,
154 const float left,
176 const float left,
188 const float left,
49 AddIncomingRenderStream(const uint32_t streamId, const uint32_t zOrder, const float left, const float top, const float right, const float bottom) argument
67 GetIncomingRenderStreamProperties( const uint32_t streamId, uint32_t& zOrder, float& left, float& top, float& right, float& bottom) const argument
140 SetStreamCropping( const uint32_t streamId, const float left, const float top, const float right, const float bottom) argument
151 ConfigureRenderer( const uint32_t streamId, const unsigned int zOrder, const float left, const float top, const float right, const float bottom) argument
170 SetText( const uint8_t textId, const uint8_t* text, const int32_t textLength, const uint32_t textColorRef, const uint32_t backgroundColorRef, const float left, const float top, const float right, const float bottom) argument
185 SetBitmap(const void* bitMap, const uint8_t pictureId, const void* colorKey, const float left, const float top, const float right, const float bottom) argument
/external/libvpx/x86/
H A Dvp9_rtcd.h73 void vp9_d117_predictor_16x16_c(uint8_t *dst, ptrdiff_t y_stride, const uint8_t *above, const uint8_t *left);
76 void vp9_d117_predictor_32x32_c(uint8_t *dst, ptrdiff_t y_stride, const uint8_t *above, const uint8_t *left);
79 void vp9_d117_predictor_4x4_c(uint8_t *dst, ptrdiff_t y_stride, const uint8_t *above, const uint8_t *left);
82 void vp9_d117_predictor_8x8_c(uint8_t *dst, ptrdiff_t y_stride, const uint8_t *above, const uint8_t *left);
85 void vp9_d135_predictor_16x16_c(uint8_t *dst, ptrdiff_t y_stride, const uint8_t *above, const uint8_t *left);
88 void vp9_d135_predictor_32x32_c(uint8_t *dst, ptrdiff_t y_stride, const uint8_t *above, const uint8_t *left);
91 void vp9_d135_predictor_4x4_c(uint8_t *dst, ptrdiff_t y_stride, const uint8_t *above, const uint8_t *left);
94 void vp9_d135_predictor_8x8_c(uint8_t *dst, ptrdiff_t y_stride, const uint8_t *above, const uint8_t *left);
97 void vp9_d153_predictor_16x16_c(uint8_t *dst, ptrdiff_t y_stride, const uint8_t *above, const uint8_t *left);
100 void vp9_d153_predictor_32x32_c(uint8_t *dst, ptrdiff_t y_stride, const uint8_t *above, const uint8_t *left);
[all...]
/external/chromium-trace/trace-viewer/src/cc/
H A Dpicture_debugger.css18 picture-debugger > left-panel {
23 picture-debugger > left-panel > picture-info {
28 picture-debugger > left-panel > picture-info > .title {
30 margin-left: 5px;
40 margin-left: 5px;
/external/chromium_org/chrome/browser/resources/print_preview/common/
H A Dsearch_bubble.js93 var left = owner.offsetLeft + owner.offsetWidth / 2 -
99 if (left != this.lastLeft) {
100 this.style.left = left + 'px';
101 this.lastLeft = left;
/external/chromium_org/chrome/third_party/chromevox/chromevox/background/
H A Doptions.css7 left: -10000px;
21 padding-left: 30px;
26 padding-left: 0px;
70 padding-left: 0px;
78 padding-left: 0px;
/external/chromium_org/third_party/WebKit/Source/devtools/front_end/
H A DoverviewGrid.css19 left: 0;
27 left: 0%;
41 border-left: 1px solid black;
51 margin-left: -2px;
60 margin-left: -3px;
/external/chromium_org/tools/deep_memory_profiler/visualizer/static/
H A Dindex.css34 float: left;
40 float: left;
41 margin-left: 50px;
54 padding-left: 15px;
66 padding-left: 15px;
/external/chromium_org/ui/views/
H A Dborder.cc20 SidedSolidBorder(int top, int left, int bottom, int right, SkColor color);
35 int left,
40 insets_(top, left, bottom, right) {
47 canvas->FillRect(gfx::Rect(0, 0, insets_.left(), view.height()), color_);
77 EmptyBorder(int top, int left, int bottom, int right) argument
78 : insets_(top, left, bottom, right) {}
147 int left,
150 return scoped_ptr<Border>(new EmptyBorder(top, left, bottom, right));
155 int left,
160 new SidedSolidBorder(top, left, botto
34 SidedSolidBorder(int top, int left, int bottom, int right, SkColor color) argument
146 CreateEmptyBorder(int top, int left, int bottom, int right) argument
154 CreateSolidSidedBorder(int top, int left, int bottom, int right, SkColor color) argument
[all...]
/external/lldb/examples/scripting/
H A Ddictionary.c17 struct tree_node *left; member in struct:tree_node
64 if (root->left != NULL)
65 insert (root->left, word);
70 new_node->left = NULL;
72 root->left = new_node;
83 new_node->left = NULL;
110 new_node->left = NULL;
134 return find_word (dictionary->left, word);
147 if (dictionary->left)
148 print_tree (dictionary->left);
[all...]
/external/pdfium/core/src/fxcodec/fx_zlib/zlib_v128/
H A Dfx_zlib_inftrees.c46 int left; /* number of prefix codes available */ local
131 left = 1;
133 left <<= 1;
134 left -= count[len];
135 if (left < 0) return -1; /* over-subscribed */
137 if (left > 0 && (type == CODES || max != 1))
270 left = (int)(1 << curr);
272 left -= count[curr + drop];
273 if (left <= 0) break;
275 left <<
[all...]
/external/qemu/distrib/zlib-1.2.8/
H A Dinftrees.c46 int left; /* number of prefix codes available */ local
131 left = 1;
133 left <<= 1;
134 left -= count[len];
135 if (left < 0) return -1; /* over-subscribed */
137 if (left > 0 && (type == CODES || max != 1))
270 left = (int)(1 << curr);
272 left -= count[curr + drop];
273 if (left <= 0) break;
275 left <<
[all...]
/external/zlib/src/
H A Dinftrees.c46 int left; /* number of prefix codes available */ local
131 left = 1;
133 left <<= 1;
134 left -= count[len];
135 if (left < 0) return -1; /* over-subscribed */
137 if (left > 0 && (type == CODES || max != 1))
270 left = (int)(1 << curr);
272 left -= count[curr + drop];
273 if (left <= 0) break;
275 left <<
[all...]

Completed in 716 milliseconds

1234567891011>>