/external/guava/guava/src/com/google/common/collect/ |
NullsFirstOrdering.java | 34 @Override public int compare(@Nullable T left, @Nullable T right) { 35 if (left == right) { 38 if (left == null) { 44 return ordering.compare(left, right);
|
NullsLastOrdering.java | 34 @Override public int compare(@Nullable T left, @Nullable T right) { 35 if (left == right) { 38 if (left == null) { 44 return ordering.compare(left, right);
|
BstNode.java | 19 import static com.google.common.collect.BstSide.LEFT; 46 * 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) { 65 this.left = left; 83 case LEFT: 84 return left; [all...] |
/external/lzma/CPP/7zip/Common/ |
FilePathAutoRename.cpp | 39 name = fullProcessedPath.Left(dotPos);
45 unsigned left = 1, right = (1 << 30);
local 46 while (left != right)
48 unsigned mid = (left + right) / 2;
50 left = mid + 1;
|
/external/chromium_org/third_party/webrtc/modules/video_render/android/ |
video_render_android_impl.h | 59 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/ |
video_render_external_impl.cc | 51 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,
|
/external/libvpx/x86/ |
vp9_rtcd.h | 73 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/ |
picture_debugger.css | 18 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/third_party/chromevox/chromevox/background/ |
options.css | 7 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/ |
overviewGrid.css | 19 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/ |
index.css | 34 float: left; 40 float: left; 41 margin-left: 50px; 54 padding-left: 15px; 66 padding-left: 15px;
|
/external/chromium_org/ui/views/ |
border.cc | 20 SidedSolidBorder(int top, int left, int bottom, int right, SkColor color); 35 int left, 40 insets_(top, left, bottom, right) { 46 // Left border. 47 canvas->FillRect(gfx::Rect(0, 0, insets_.left(), view.height()), color_); 77 EmptyBorder(int top, int left, int bottom, int right) 78 : insets_(top, left, bottom, right) {} 147 int left, 150 return scoped_ptr<Border>(new EmptyBorder(top, left, bottom, right)); 155 int left, [all...] |
/external/lldb/examples/scripting/ |
dictionary.c | 17 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/bouncycastle/bcprov/src/main/java/org/bouncycastle/crypto/engines/ |
DESEngine.java | 408 int work, right, left; local 410 left = (in[inOff + 0] & 0xff) << 24; 411 left |= (in[inOff + 1] & 0xff) << 16; 412 left |= (in[inOff + 2] & 0xff) << 8; 413 left |= (in[inOff + 3] & 0xff); 420 work = ((left >>> 4) ^ right) & 0x0f0f0f0f; 422 left ^= (work << 4); 423 work = ((left >>> 16) ^ right) & 0x0000ffff; 425 left ^= (work << 16); 426 work = ((right >>> 2) ^ left) & 0x33333333 [all...] |
/external/chromium_org/third_party/WebKit/Source/devtools/front_end/components/ |
OverviewGrid.js | 110 * @param {number} left 113 setWindow: function(left, right) 115 this._window._setWindow(left, right); 179 this._leftResizeElement.style.left = 0; 198 this._overviewWindowElement.style.left = "0%"; 200 this._overviewWindowBordersElement.style.left = "0%"; 202 this._leftResizeElement.style.left = "0%"; 203 this._rightResizeElement.style.left = "100%"; 356 var left = windowLeft; 365 left = ((windowRight + windowLeft) - width * factor) / 2 [all...] |
/external/chromium_org/third_party/skia/src/core/ |
SkRect.cpp | 12 void SkIRect::join(int32_t left, int32_t top, int32_t right, int32_t bottom) { 14 if (left >= right || top >= bottom) { 20 this->set(left, top, right, bottom); 22 if (left < fLeft) fLeft = left; 102 bool SkRect::intersect(SkScalar left, SkScalar top, SkScalar right, 104 if (left < right && top < bottom && !this->isEmpty() && // check for empties 105 fLeft < right && left < fRight && fTop < bottom && top < fBottom) 107 if (fLeft < left) fLeft = left; [all...] |
/external/guava/guava-tests/test/com/google/common/collect/ |
BstTesting.java | 18 import static com.google.common.collect.BstSide.LEFT; 39 SimpleNode(Character key, @Nullable SimpleNode left, @Nullable SimpleNode right) { 40 super(key, left, right); 53 && Objects.equal(childOrNull(LEFT), node.childOrNull(LEFT)) 61 return Objects.hashCode(getKey(), childOrNull(LEFT), childOrNull(RIGHT)); 68 SimpleNode source, @Nullable SimpleNode left, @Nullable SimpleNode right) { 69 return new SimpleNode(source.getKey(), left, right); 76 @Nullable SimpleNode left, @Nullable SimpleNode right) { 77 return checkNotNull(nodeFactory).createNode(source, left, right) [all...] |
BstNodeTest.java | 17 import static com.google.common.collect.BstSide.LEFT; 54 testLacksChild(leaf, LEFT); 61 testChildIs(node, LEFT, leaf); 68 testLacksChild(node, LEFT); 73 SimpleNode left = new SimpleNode('a', null, null); local 75 SimpleNode node = new SimpleNode('b', left, right); 76 testChildIs(node, LEFT, left); 95 for (SimpleNode left : GOOD_LEFTS) { 98 new SimpleNode(MIDDLE_KEY, left, right).orderingInvariantHolds(Ordering.natural())) [all...] |
/external/chromium_org/third_party/libwebp/enc/ |
picture_rescale.c | 44 // Adjust top-left corner to chroma sample position. 46 int* const left, int* const top) { 48 *left &= ~1; 53 // Adjust top-left corner and verify that the sub-rectangle is valid. 55 int* const left, int* const top, 57 SnapTopLeftPosition(pic, left, top); 58 if ((*left) < 0 || (*top) < 0) return 0; 60 if ((*left) + width > pic->width) return 0; 100 int left, int top, int width, int height, 105 if (!AdjustAndCheckRectangle(src, &left, &top, width, height)) return 0 [all...] |
/cts/tests/tests/graphics/src/android/graphics/cts/ |
RectFTest.java | 60 assertEquals(10.0f, mRectF.left); 66 assertEquals(5.0f, mRectF.left); 77 assertEquals(1.0f, mRectF.left); 89 assertEquals(1.0f, mRectF.left); 101 assertEquals(1.0f, mRectF.left); 112 assertEquals(0.0f, mRectF.left); 119 assertEquals(0.0f, mRectF.left); 145 assertEquals(5.0f, mRectF.left); 152 assertEquals(0.0f, mRectF.left); 166 assertEquals(5.0f, mRectF.left); [all...] |
/external/chromium_org/v8/benchmarks/spinning-balls/ |
splay-tree.js | 78 node.left = this.root_; 83 node.left = this.root_.left; 84 this.root_.left = null; 107 if (!this.root_.left) { 111 this.root_ = this.root_.left; 165 // the left subtree. 168 } else if (this.root_.left) { 169 return this.findMax(this.root_.left); 204 // the L tree of the algorithm. The left child of the dummy nod [all...] |
/external/chromium_org/third_party/bintrees/bintrees/ |
bintree.py | 18 __slots__ = ['key', 'value', 'left', 'right'] 23 self.left = None 27 """ x.__getitem__(key) <==> x[key], where key is 0 (left) or 1 (right) """ 28 return self.left if key == 0 else self.right 31 """ x.__setitem__(key, value) <==> x[key]=value, where key is 0 (left) or 1 (right) """ 33 self.left = value 39 self.left = None 72 _clear(node.left) 125 if (node.left is not None) and (node.right is not None): 130 while replacement.left is not None [all...] |
/external/chromium_org/chrome/browser/resources/downloads/ |
downloads.css | 43 left: -110px; 49 left: auto; 63 left: 9px; 70 left: auto; 84 background-position: left bottom; 98 left: 0; 105 left: auto;
|
/external/chromium_org/chrome/common/extensions/docs/examples/api/fontSettings/ |
slider.css | 11 left: -2px; /* Required to align the input element with the parent. */ 30 left and right must be equal to 1/2 of the thumb icon width. */ 31 left: 8px; 46 /* The filled portion of the slider bar to the left of the thumb. */ 48 border-left-style: none; 50 left: 0; 58 left: 100%; 66 .slider > .bar > .cap.left { 81 .slider.disabled > .bar > .cap.left {
|
/external/chromium_org/remoting/webapp/ |
menu_button.css | 18 left: 1px; 31 background-image: -webkit-gradient(linear, left top, left bottom, 40 margin-left: 7px; 73 background-position: left center; 89 margin-left: 8px; 96 left: 0;
|