Searched refs:right (Results 151 - 175 of 2377) sorted by relevance

1234567891011>>

/external/chromium_org/chrome/browser/resources/options/
H A Dlanguage_dictionary_overlay.css13 margin-right: 16em;
19 margin-right: auto;
24 right: 32px;
30 right: auto;
/external/chromium_org/third_party/bintrees/bintrees/
H A Dbintree.py18 __slots__ = ['key', 'value', 'left', 'right']
24 self.right = 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) """
35 self.right = value
40 self.right = None
73 _clear(node.right)
125 if (node.left is not None) and (node.right is not None):
126 # find replacment node: smallest key in right
[all...]
H A Dwalker.py74 return self._node.right is not None
80 self._node = self._node.right
86 self._node = self._node.right
92 return self._node.right is not None
94 def _next_item(self, key, left, right, less_than):
105 node = right(node)
110 if right(node) is not None:
111 # find smallest node of right subtree
112 node = right(node)
130 right
[all...]
H A Drbtree.py44 __slots__ = ['key', 'value', 'red', 'left', 'right']
51 self.right = None
55 self.right = None
60 """ x.__getitem__(key) <==> x[key], where key is 0 (left) or 1 (right) """
61 return self.left if key == 0 else self.right
64 """ x.__setitem__(key, value) <==> x[key]=value, where key is 0 (left) or 1 (right) """
68 self.right = value
130 _clear(node.right)
166 grand_grand_parent.right = self._root
167 node = grand_grand_parent.right
[all...]
/external/guava/guava/src/com/google/common/collect/
H A DBstBalancePolicy.java32 * subtrees {@code left} and {@code right}. It is guaranteed that the resulting tree will have
34 * then the subtree {@code right}.
36 N balance(BstNodeFactory<N> nodeFactory, N source, @Nullable N left, @Nullable N right); argument
39 * Constructs a locally balanced tree around the subtrees {@code left} and {@code right}. It is
41 * {@code left}, then the subtree {@code right}.
44 N combine(BstNodeFactory<N> nodeFactory, @Nullable N left, @Nullable N right); argument
/external/libcxx/test/input.output/iostreams.base/ios.base/fmtflags.state/
H A Dsetf_fmtflags.pass.cpp33 test::fmtflags f = t.setf(test::hex | test::right);
35 assert(t.flags() == (test::skipws | test::dec | test::hex | test::right));
/external/robolectric/src/main/java/com/xtremelabs/robolectric/shadows/
H A DShadowMarginLayoutParams.java20 public void setMargins(int left, int top, int right, int bottom) { argument
23 realMarginLayoutParams.rightMargin = right;
/external/tremolo/Tremolo/
H A Dmdct.h58 extern void mdct_shift_right(int n, DATA_TYPE *in, DATA_TYPE *right);
61 DATA_TYPE *in,DATA_TYPE *right,
/external/pdfium/core/src/fxcrt/
H A Dfx_basic_coords.cpp10 if (left > right) {
12 left = right;
13 right = temp;
28 right = right < src_n.right ? right : src_n.right;
30 if (left > right || top > bottom) {
31 left = top = right
[all...]
/external/chromium_org/chrome/browser/resources/chromeos/chromevox/chromevox/injected/
H A Dactive_indicator.js350 last.right != current.right ||
609 * These should already be sorted (top to bottom and left to right).
659 this.setElementCoords_(regionTop, r.left, r.top, r.right, q1,
665 this.setElementCoords_(regionMiddleNE, r.right, q1, r.right, q2,
667 this.setElementCoords_(regionMiddleSE, r.right, q2, r.right, q3,
669 this.setElementCoords_(regionBottom, r.left, q3, r.right, r.bottom,
705 middleRect.right
[all...]
/external/chromium_org/ppapi/tests/
H A Dtest_case.h368 bool CompareEQ(const U& right) const {
369 return value == right;
372 bool CompareNE(const U& right) const {
373 return value != right;
376 bool CompareLT(const U& right) const {
377 return value < right;
380 bool CompareGT(const U& right) const {
381 return value > right;
384 bool CompareLE(const U& right) const {
385 return value <= right;
527 MakeBinaryComparisonFailureMessage( const char* comparator, const T& left, const U& right, const char* left_precompiler_string, const char* right_precompiler_string, const char* file_name, int line_number) argument
581 CompareDoubleEq(ComparisonHelper<double> left, double right, const char* left_precompiler_string, const char* right_precompiler_string, const char* file_name, int linu_num) argument
[all...]
/external/chromium_org/third_party/WebKit/Source/devtools/front_end/toolbox/
H A DInspectedPagePlaceholder.js14 this._margins = { top: 0, right: 0, bottom: 0, left: 0 };
27 var margins = { top: 0, right: 0, bottom: 0, left: 0 };
30 var adjacent = { top: true, right: true, bottom: true, left: true };
46 if (this._margins.top !== margins.top || this._margins.left !== margins.left || this._margins.right !== margins.right || this._margins.bottom !== margins.bottom) {
81 var width = rect.width - (this._margins.left + this._margins.right) / zoomFactor;
109 var right = Math.min(rect.right * zoomFactor - this._margins.right, bodyRect.right * zoomFacto
[all...]
/external/chromium_org/third_party/webrtc/modules/video_render/android/java/src/org/webrtc/videoengine/
H A DViESurfaceRenderer.java55 dstRect.right = (int)(dstRect.left + dstRightScale * dstWidth);
69 " srcRect.right:" + srcRect.right +
73 " dstRect.right:" + dstRect.right +
82 changeDestRect(dst.right - dst.left, dst.bottom - dst.top);
86 " dst.right:" + dst.right +
90 " srcRect.right:" + srcRect.right
134 SetCoordinates(float left, float top, float right, float bottom) argument
[all...]
/external/chromium_org/ui/views/
H A Dborder.cc20 SidedSolidBorder(int top, int left, int bottom, int right, SkColor color);
37 int right,
40 insets_(top, left, bottom, right) {
52 canvas->FillRect(gfx::Rect(view.width() - insets_.right(), 0, insets_.right(),
77 EmptyBorder(int top, int left, int bottom, int right) argument
78 : insets_(top, left, bottom, right) {}
149 int right) {
150 return scoped_ptr<Border>(new EmptyBorder(top, left, bottom, right));
157 int right,
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/chromium_org/chrome/browser/resources/user_manager/
H A Duser_manager_tutorial.css16 right: 0;
27 margin-right: 30px;
43 right: 20px;
56 right: 60px;
67 right: 100px;
112 right: 16px;
115 .slide-buttons button.right {
122 border-right: 15px solid transparent;
136 right: 100px;
144 right
[all...]
/external/chromium_org/ui/login/
H A Dbubble.css38 right: 17px;
41 html[dir=ltr] .bubble-right::before,
58 right: 17px;
62 html[dir=rtl] .bubble-right::before {
64 right: -16px;
86 right: 17px;
89 html[dir=ltr] .bubble-right::after,
106 right: 17px;
110 html[dir=rtl] .bubble-right::after {
112 right
[all...]
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/asn1/x509/
H A DX509NameEntryConverter.java69 char right = str.charAt((index * 2) + off + 1);
79 if (right < 'a')
81 data[index] |= (byte)(right - '0');
85 data[index] |= (byte)(right - 'a' + 10);
/external/chromium-trace/trace-viewer/src/tracing/tracks/
H A Dheading_track.css17 border-right: 1px solid #8e8e8e;
22 padding-right: 5px;
/external/chromium_org/cc/resources/
H A Dshared_bitmap.h32 bool operator<(const SharedBitmap& right) const {
33 if (memory_ < right.memory_)
35 if (memory_ > right.memory_)
37 return id_ < right.id_;
/external/chromium_org/chrome/android/java/src/org/chromium/chrome/browser/
H A DChromeWebContentsDelegateAndroid.java42 private static Rect createRect(int x, int y, int right, int bottom) { argument
43 return new Rect(x, y, right, bottom);
47 private static RectF createRectF(float x, float y, float right, float bottom) { argument
48 return new RectF(x, y, right, bottom);
/external/chromium_org/chrome/browser/resources/ntp4/
H A Dguest_tab.css15 float: right;
27 margin-right: auto;
/external/chromium_org/third_party/polymer/components/paper-tabs/
H A Dpaper-tab.css19 right: 0;
37 right: 0;
/external/chromium_org/third_party/polymer/components-chromium/paper-menu-button/
H A Dpaper-menu-button-overlay-extracted.js19 * @type 'left'|'right'|'center'
40 } else if (this.halign === 'right') {
41 this.target.style.right = (window.innerWidth - rect.right) + 'px';
/external/chromium_org/third_party/polymer/components-chromium/paper-tabs/
H A Dpaper-tab.css19 right: 0;
37 right: 0;
/external/chromium_org/third_party/webrtc/modules/video_render/ios/
H A Dvideo_render_ios_impl.mm75 const float right,
83 stream_id, z_order, left, top, right, bottom);
98 float& right,
135 const float right,
137 return ptr_ios_render_->SetStreamCropping(streamId, left, top, right, bottom);
144 const float right,
160 const float right,
170 const float right,

Completed in 1119 milliseconds

1234567891011>>