HomeSort by relevance Sort by last modified time
    Searched refs:right (Results 1951 - 1975 of 4231) sorted by null

<<71727374757677787980>>

  /external/chromium_org/third_party/icu/source/i18n/
japancal.cpp 308 JapaneseCalendar& JapaneseCalendar::operator= ( const JapaneseCalendar& right)
310 GregorianCalendar::operator=(right);
  /external/chromium_org/third_party/icu/source/test/cintltst/
sorttest.c 126 linesComparator(const void *context, const void *left, const void *right) {
129 const Line *rightLine=(const Line *)right;
  /external/chromium_org/third_party/jinja2/
sandbox.py 286 def call_binop(self, context, operator, left, right):
293 return self.binop_table[operator](left, right)
  /external/chromium_org/third_party/libjingle/source/talk/media/base/
filemediaengine.h 218 virtual bool SetOutputScaling(uint32 ssrc, double left, double right) {
221 virtual bool GetOutputScaling(uint32 ssrc, double* left, double* right) {
  /external/chromium_org/third_party/mesa/src/src/mesa/main/
es1_conversion.c 186 _es_Frustumf(GLfloat left, GLfloat right, GLfloat bottom, GLfloat top,
190 (GLdouble) (right),
198 _es_Frustumx(GLfixed left, GLfixed right, GLfixed bottom, GLfixed top,
202 (GLdouble) (right / 65536.0),
653 _es_Orthof(GLfloat left, GLfloat right, GLfloat bottom, GLfloat top,
657 (GLdouble) (right),
665 _es_Orthox(GLfixed left, GLfixed right, GLfixed bottom, GLfixed top,
669 (GLdouble) (right / 65536.0),
  /external/chromium_org/third_party/skia/experimental/Intersection/
CubicReduceOrder_Test.cpp 145 if ( (!AlmostEqualUlps(reduce[0].x, bounds.left) && !AlmostEqualUlps(reduce[0].x, bounds.right))
147 || (!AlmostEqualUlps(reduce[1].x, bounds.left) && !AlmostEqualUlps(reduce[1].x, bounds.right))
  /external/chromium_org/third_party/skia/experimental/webtry/poly/
Gruntfile.js 58 // By default run all the commands in the right sequence to build our custom minified polyfill.
  /external/chromium_org/third_party/skia/samplecode/
SampleHairline.cpp 78 int right = bm.width() - margin + i; local
79 if (!check_zeros(bm.getAddr32(right, 0), bm.height(),
  /external/chromium_org/third_party/skia/src/core/
SkScan_Antihair.cpp 414 if (x0 > x1) { // we want to go left-to-right
543 int left, right;
546 right = SkFixedCeilToInt(fstart + (istop - istart - 1) * slope + SK_FixedHalf);
548 right = SkFixedCeilToInt(fstart + SK_FixedHalf);
553 right += 1;
555 if (left >= clip->fRight || right <= clip->fLeft) {
558 if (clip->fLeft <= left && clip->fRight >= right) {
643 SkFDot6 right = SkMax32(x0, x1);
649 SkFDot6Ceil(right) + 1,
SkTileGrid.cpp 45 // Note: SkIRects are non-inclusive of the right() column and bottom() row,
49 int maxX = SkMax32(0, SkMin32((dilatedBounds.right() - 1) / fInfo.fTileInterval.width(),
88 int endX = divide_ceil(adjusted.right(), fInfo.fTileInterval.width()),
  /external/chromium_org/third_party/skia/src/effects/
SkBlurMask.cpp 47 * sum += *right++;
62 * sum += *right++;
67 * sum += *right++;
94 const uint8_t* right = src + y * src_y_stride; local
95 const uint8_t* left = right;
101 sum += *right++; \
159 sum += *right++; \
242 * outer_sum += *right++;
259 * outer_sum += *right++;
265 * outer_sum += *right++
300 const uint8_t* right = src + y * src_y_stride; local
    [all...]
  /external/chromium_org/third_party/skia/src/views/
SkTextBox.cpp 147 void SkTextBox::setBox(SkScalar left, SkScalar top, SkScalar right, SkScalar bottom)
149 fBox.set(left, top, right, bottom);
  /external/chromium_org/third_party/sqlite/src/tool/
spaceanal.tcl 463 as overflow pages. The number at the right is the data pages divided by
469 future use. The percentage at the right is the number of freelist pages
503 computing this number. The percentage at the right shows the payload
525 at the right is the bytes of payload divided by the bytes of storage
576 percentage at the right is the number of unused bytes divided by the
582 percentage at the right is the number of unused bytes divided by the
588 percentage at the right is the number of unused bytes divided by the
594 pages. The percentage at the right is the number of unused bytes
  /external/chromium_org/third_party/tcmalloc/chromium/src/windows/
port.h 134 inline bool pthread_equal(pthread_t left, pthread_t right) {
135 return left == right;
  /external/chromium_org/third_party/tcmalloc/vendor/src/windows/
port.h 131 inline bool pthread_equal(pthread_t left, pthread_t right) {
132 return left == right;
  /external/chromium_org/third_party/webrtc/modules/utility/source/
audio_frame_operations_unittest.cc 30 void SetFrameData(AudioFrame* frame, int16_t left, int16_t right) {
33 frame->data_[i + 1] = right;
  /external/chromium_org/third_party/yasm/source/patched-yasm/tools/python-yasm/pyxelator/
work_unit.py 179 left, right = line.split(acc)
180 sym = right.strip()
  /external/chromium_org/ui/message_center/views/
message_view.cc 210 gfx::Rect close_rect(content_bounds.right() - close_size.width(),
219 content_bounds.right() - small_image_size.width() - kSmallImagePadding,
  /external/chromium_org/ui/webui/resources/css/
table.css 27 border-right: none;
tabs.css 38 border-top-right-radius: 3px;
  /external/chromium_org/v8/src/compiler/
js-builtin-reducer.cc 78 Node* right() { return GetJSCallInput(1); } function in class:v8::internal::compiler::JSCallReduction
147 Node* value = graph()->NewNode(machine()->Int32Mul(), r.left(), r.right());
  /external/chromium_org/v8/test/mjsunit/regress/
bitops-register-alias.js 28 // Test that the code generator can cope with left and right being in
  /external/chromium_org/v8/test/webkit/
dfg-negative-array-index.js 25 "Tests that storing into a negative array index works right."
dfg-rshift-by-zero-eliminate-valuetoint32.js 25 "Tests that right shifting by zero and then doing other bitops doesn't eliminate the ValueToInt32 node."
dfg-string-stricteq.js 25 "Tests that the DFG does the right thing on strict equality for known strings."

Completed in 653 milliseconds

<<71727374757677787980>>