Searched defs:left (Results 151 - 175 of 1025) sorted by relevance

1234567891011>>

/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...]
/external/apache-xml/src/main/java/org/apache/xpath/operations/
H A DOperation.java36 /** The left operand expression.
80 * Set the left and right operand expressions for this operation.
83 * @param l The left expression operand.
109 XObject left = m_left.execute(xctxt, true);
112 XObject result = operate(left, right);
113 left.detach();
122 * @param left non-null reference to the evaluated left operand.
129 public XObject operate(XObject left, XObject right) argument
135 /** @return the left operan
[all...]
/external/chromium/chrome/browser/chromeos/options/
H A Dtake_photo_dialog.cc122 int left = views::kPanelHorizMargin; local
124 int contents_width = width() - 2 * left;
126 take_photo_view_->SetBounds(left, top, contents_width, contents_height);
/external/chromium/chrome/browser/ui/views/
H A Dchrome_views_delegate.cc66 window_preferences->SetInteger("left", bounds.x());
92 int left, top, right, bottom; local
93 if (!dictionary || !dictionary->GetInteger("left", &left) ||
99 bounds->SetRect(left, top, right - left, bottom - top);
/external/chromium/webkit/glue/
H A Dcpp_bound_class_unittest.cc128 // Constructs a JavaScript snippet that evaluates and compares the left and
135 std::string BuildJSCondition(std::string left, std::string right) { argument
136 return "var leftval = " + left + ";" +
142 left + " [\" + leftval + \"] != " +
191 // The property on the left will be set to the value on the right, then
202 std::string left = tests[i]; local
204 // left = right;
205 std::string js = left;
209 js.append(BuildJSCondition(left, right));
234 // The expression on the left i
262 std::string left = tests[i]; local
[all...]
/external/chromium_org/android_webview/java/src/org/chromium/android_webview/
H A DAwPicture.java75 mClipBoundsTemporary.left, mClipBoundsTemporary.top,
92 int left, int top, int right, int bottom);
91 nativeDraw(long nativeAwPicture, Canvas canvas, int left, int top, int right, int bottom) argument
/external/chromium_org/ash/shell/
H A Dwidgets.cc104 int left = 5; local
109 view->SetBounds(left, top, preferred.width(), preferred.height());
/external/chromium_org/cc/resources/
H A Dlayer_tiling_data.cc70 int* left,
80 *left = tiling_data_.TileXIndexFromSrcCoord(content_rect.x());
98 int left, top, right, bottom; local
99 ContentRectToTileIndices(content_rect, &left, &top, &right, &bottom);
101 for (int i = left; i <= right; ++i) {
123 int left, top, right, bottom; local
125 gfx::Rect(size), &left, &top, &right, &bottom); local
69 ContentRectToTileIndices(gfx::Rect content_rect, int* left, int* top, int* right, int* bottom) const argument
/external/chromium_org/chrome/browser/sync_file_system/drive_backend/
H A Dregister_app_task.cc26 bool CompareOnCTime(const FileTracker& left, argument
28 return left.synced_details().creation_time() <
/external/chromium_org/chrome/browser/sync_file_system/drive_backend_v1/
H A Dremote_change_handler.cc21 const ChangeQueueItem& left,
23 if (left.changestamp != right.changestamp)
24 return left.changestamp < right.changestamp;
25 return fileapi::FileSystemURL::Comparator()(left.url, right.url);
49 const RemoteChange& left,
51 // This should return true if |right| has higher priority than |left|.
54 if (left.changestamp != right.changestamp)
55 return left.changestamp > right.changestamp;
20 operator ()( const ChangeQueueItem& left, const ChangeQueueItem& right) argument
48 operator ()( const RemoteChange& left, const RemoteChange& right) argument
/external/chromium_org/chrome/browser/web_applications/
H A Dweb_app.cc28 bool IconPrecedes(const WebApplicationInfo::IconInfo& left, argument
30 return left.width < right.width;
/external/chromium_org/chrome/installer/util/
H A Dlanguage_selector.cc126 bool operator<(const LangToOffset& left, const std::wstring& right) { argument
127 return left.language < right;
132 bool operator<(const std::wstring& left, const LangToOffset& right) { argument
133 return left < right.language;
137 bool operator<(const LangToOffset& left, const LangToOffset& right) { argument
138 return std::wstring(left.language) < right.language;
142 bool IsOffsetLessThan(const LangToOffset& left, const LangToOffset& right) { argument
143 return left.offset < right.offset;
/external/chromium_org/content/renderer/
H A Dcpp_bound_class_unittest.cc150 // The property on the left will be set to the value on the right, then
161 std::string left = tests[i]; local
163 // left = right;
164 std::string js = left;
169 std::string expression = left;
192 // The expression on the left is expected to return the value on the right.
H A Ddisambiguation_popup_helper.cc73 int left = touch_point.x() - zoom_rect.x(); local
77 TrimEdges(&left, &right, max_size.width());
80 return gfx::Rect(touch_point.x() - left,
82 left + right,
/external/chromium_org/gpu/command_buffer/tests/
H A Dgl_depth_texture_unittest.cc204 const uint8* left = actual - 4; local
210 EXPECT_GT(actual[0], left[0])
213 << " left[0] =" << static_cast<unsigned>(left[0])
215 << " left =" << reinterpret_cast<const void*>(left);
216 bad_count += (actual[0] > left[0] ? 0 : 1);
226 // Check that bottom left corner is vastly different thatn top right.
/external/chromium_org/mojo/public/tests/
H A Dbindings_type_conversion_unittest.cc13 int32_t left; member in struct:mojo::__anon9048::RedmondRect
31 rect.set_x(input.left);
33 rect.set_width(input.right - input.left);
39 rect.left = input.x();
139 EXPECT_EQ(10, rr.left);
168 rr.left += static_cast<int32_t>(i);
212 rect.left += static_cast<int32_t>(i);
225 EXPECT_EQ(redmond_region.rects[i].left, redmond_region2.rects[i].left);
/external/chromium_org/ppapi/cpp/
H A Drect.cc26 void Rect::Inset(int32_t left, int32_t top, int32_t right, int32_t bottom) { argument
27 Offset(left, top);
28 set_width(std::max<int32_t>(width() - left - right, 0));
/external/chromium_org/ppapi/examples/2d/
H A Dpaint_manager_example.cc28 int left, int top, int width, int height,
33 for (int x = std::max(0, left);
34 x < std::min(image->size().width() - 1, left + width);
27 FillRect(pp::ImageData* image, int left, int top, int width, int height, uint32_t color) argument
/external/chromium_org/ppapi/examples/input/
H A Dpointer_event_input.cc28 int left, int top, int width, int height,
33 for (int x = std::max(0, left);
34 x < std::min(image->size().width() - 1, left + width);
27 FillRect(pp::ImageData* image, int left, int top, int width, int height, uint32_t color) argument
/external/chromium_org/third_party/WebKit/PerformanceTests/SunSpider/tests/v8-v4/
H A Dv8-splay.js52 left: GeneratePayloadTree(depth - 1, key),
167 node.left = this.root_;
172 node.left = this.root_.left;
173 this.root_.left = null;
196 if (!this.root_.left) {
200 this.root_ = this.root_.left;
239 // the left subtree.
242 } else if (this.root_.left) {
243 return this.findMax(this.root_.left);
[all...]
/external/chromium_org/third_party/WebKit/PerformanceTests/SunSpider/tests/v8-v5/
H A Dv8-splay.js52 left: GeneratePayloadTree(depth - 1, key),
167 node.left = this.root_;
172 node.left = this.root_.left;
173 this.root_.left = null;
196 if (!this.root_.left) {
200 this.root_ = this.root_.left;
239 // the left subtree.
242 } else if (this.root_.left) {
243 return this.findMax(this.root_.left);
[all...]
/external/chromium_org/third_party/WebKit/PerformanceTests/SunSpider/tests/v8-v6/
H A Dv8-splay.js52 left: GeneratePayloadTree(depth - 1, tag),
168 node.left = this.root_;
173 node.left = this.root_.left;
174 this.root_.left = null;
197 if (!this.root_.left) {
201 this.root_ = this.root_.left;
255 // the left subtree.
258 } else if (this.root_.left) {
259 return this.findMax(this.root_.left);
[all...]
/external/chromium_org/third_party/WebKit/Source/core/css/
H A DCSSBasicShapes.cpp261 static String buildInsetRectangleString(const String& top, const String& right, const String& bottom, const String& left, const String& radiusX, const String& radiusY) argument
267 result.reserveCapacity((sizeof(opening) - 1) + (5 * (sizeof(separator) - 1)) + 1 + top.length() + right.length() + bottom.length() + left.length() + radiusX.length() + radiusY.length());
275 result.append(left);
H A DRect.h35 CSSPrimitiveValue* left() const { return m_left.get(); } function in class:WebCore::RectBase
40 void setLeft(PassRefPtr<CSSPrimitiveValue> left) { m_left = left; } argument
85 return generateCSSString(top()->cssText(), right()->cssText(), bottom()->cssText(), left()->cssText());
93 left()->customSerializeResolvingVariables(variables));
99 static String generateCSSString(const String& top, const String& right, const String& bottom, const String& left) argument
101 return "rect(" + top + ' ' + right + ' ' + bottom + ' ' + left + ')';
113 return generateCSSString(top()->cssText(), right()->cssText(), bottom()->cssText(), left()->cssText());
121 left()->customSerializeResolvingVariables(variables));
127 static String generateCSSString(const String& top, const String& right, const String& bottom, const String& left) argument
[all...]
/external/chromium_org/third_party/WebKit/Source/core/rendering/
H A DRenderVTTCue.cpp156 LayoutUnit left = x(); local
158 LayoutUnit right = left + firstLineBox->width();
169 // 12. Vertical: If step is negative and the left edge of the first line
170 // box in boxes is now to the left of the left edge of the video's
175 if (m_cue->getWritingDirection() != VTTCue::Horizontal && ((step < 0 && left < 0) || (step > 0 && right > parentWidth)))

Completed in 3383 milliseconds

1234567891011>>