HomeSort by relevance Sort by last modified time
    Searched refs:left (Results 526 - 550 of 3817) sorted by null

<<21222324252627282930>>

  /external/apache-xml/src/main/java/org/apache/xpath/operations/
Operation.java 36 /** 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); local
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)
135 /** @return the left operand of binary operation, as an Expression
    [all...]
  /external/chromium/chrome/browser/resources/net_internals/
view.js 18 View.prototype.setGeometry = function(left, top, width, height) {
19 this.left_ = left;
94 DivView.prototype.setGeometry = function(left, top, width, height) {
95 DivView.superClass_.setGeometry.call(this, left, top, width, height);
98 setNodePosition(this.node_, left, top, width, height);
130 WindowView.prototype.setGeometry = function(left, top, width, height) {
131 WindowView.superClass_.setGeometry.call(this, left, top, width, height);
132 this.childView_.setGeometry(left, top, width, height);
  /external/chromium/chrome/browser/ui/gtk/
nine_box.h 16 // in width, only pass in images for the left column (leave others NULL).
26 NineBox(int top_left, int top, int top_right, int left, int center, int right,
  /external/chromium/chrome/browser/ui/views/infobars/
infobar_button_border.h 36 SkBitmap* left; member in struct:InfoBarButtonBorder::MBBImageSet
  /external/chromium/chrome/browser/ui/
window_sizer_win.cc 45 return gfx::Point(monitor_info.rcWork.left - monitor_info.rcMonitor.left,
88 gfx::Point corner(area.left, area.top);
96 std::min(browser.left + kWindowTilePixels, area.right-size.width()),
99 // Adjust corner to now overflow the work area left and top edges, so
  /external/chromium-trace/trace-viewer/src/tcmalloc/
tcmalloc_snapshot_view.css 18 padding-left: 15px;
27 padding-left: 15px;
  /external/chromium_org/android_webview/native/
aw_picture.h 30 jint left, jint top, jint right, jint bottom);
  /external/chromium_org/chrome/browser/resources/chromeos/app_launch/
app_launch.css 38 background: left center no-repeat;
62 left: 0;
  /external/chromium_org/chrome/browser/resources/net_internals/
logs_view.css 28 float: left;
44 text-align: left;
  /external/chromium_org/chrome/browser/resources/options/
language_dictionary_overlay.css 18 margin-left: 16em;
29 left: 32px;
  /external/chromium_org/chrome/browser/resources/user_manager/
control_bar.css 12 left: 0;
48 background-position: left center;
  /external/chromium_org/chrome/browser/ui/views/infobars/
infobar_button_border.cc 22 insets.left(),
  /external/chromium_org/content/renderer/
disambiguation_popup_helper.cc 73 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/third_party/WebKit/Source/core/Resources/pagepopups/
colorSuggestionPicker.css 39 float: left;
43 float: left;
  /external/chromium_org/third_party/WebKit/Source/core/dom/
ClientRect.h 48 float left() const { return m_rect.x(); } function in class:WebCore::ClientRect
  /external/chromium_org/third_party/WebKit/Source/devtools/front_end/
profilesPanel.css 36 left: 0;
44 left: 200px;
46 border-left: 1px solid rgb(184, 184, 184);
47 margin-left: -1px;
72 left: 0;
150 text-align: left;
174 margin-left: 22px;
205 padding-left: 14px;
  /external/chromium_org/third_party/bintrees/bintrees/
rbtree.py 44 __slots__ = ['key', 'value', 'red', 'left', 'right']
50 self.left = None
54 self.left = 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) """
66 self.left = value
129 _clear(node.left)
173 elif is_red(node.left) and is_red(node.right): # Color flip
175 node.left.red = Fals
    [all...]
  /external/chromium_org/third_party/freetype/include/freetype/
ftpfr.h 110 * left :: Index of the left glyph.
130 FT_UInt left,
  /external/chromium_org/third_party/freetype/include/freetype/internal/services/
svpfr.h 41 FT_UInt left,
  /external/chromium_org/third_party/skia/include/gpu/
GrTextContext.h 25 void drawPackedGlyph(GrGlyph::PackedID, GrFixed left, GrFixed top,
  /external/chromium_org/third_party/skia/src/core/
SkBlitter.cpp 270 void SkRectClipBlitter::blitH(int left, int y, int width) {
277 int right = left + width;
279 if (left < fClipRect.fLeft) {
280 left = fClipRect.fLeft;
286 width = right - left;
288 fBlitter->blitH(left, y, width);
292 void SkRectClipBlitter::blitAntiH(int left, int y, const SkAlpha aa[],
294 if (!y_in_rect(y, fClipRect) || left >= fClipRect.fRight) {
298 int x0 = left;
299 int x1 = left + compute_anti_width(runs)
    [all...]
  /external/chromium_org/third_party/skia/src/svg/
SkSVGRect.cpp 30 SVG_ADD_ATTRIBUTE_ALIAS(left, x);
  /external/chromium_org/tools/gn/
operators.h 31 const ParseNode* left,
  /external/chromium_org/ui/gfx/
canvas_paint_win.h 52 return ps_.rcPaint.right - ps_.rcPaint.left == 0 ||
  /external/chromium_org/ui/views/controls/
focusable_border.h 26 void SetInsets(int top, int left, int bottom, int right);

Completed in 856 milliseconds

<<21222324252627282930>>