Searched defs:top (Results 301 - 325 of 488) sorted by relevance

<<11121314151617181920

/external/pdfium/third_party/freetype/src/truetype/
H A Dttinterp.h159 FT_Long top; /* top of exec. stack */ member in struct:TT_ExecContextRec_
165 FT_Long new_top; /* new top after exec. */
205 FT_Int callTop, /* top of call stack during execution */
/external/robolectric/v1/src/main/java/com/xtremelabs/robolectric/shadows/
H A DShadowTextView.java239 public void setCompoundDrawablesWithIntrinsicBounds(int left, int top, int right, int bottom) { argument
240 compoundDrawablesImpl = new CompoundDrawables(left, top, right, bottom);
244 public void setCompoundDrawablesWithIntrinsicBounds(Drawable left, Drawable top, argument
246 compoundDrawablesImpl = new CompoundDrawables(left, top, right, bottom);
250 public void setCompoundDrawables(Drawable left, Drawable top, Drawable right, Drawable bottom) { argument
251 compoundDrawablesImpl = new CompoundDrawables(left, top, right, bottom);
539 public CompoundDrawables(Drawable left, Drawable top, Drawable right, Drawable bottom) { argument
541 topDrawable = top;
546 public CompoundDrawables(int left, int top, int right, int bottom) { argument
548 topDrawable = top !
[all...]
/external/skia/dm/
H A DDMSrcSink.cpp173 const int top = y * subsetHeight; local
182 const int decodeTop = top - unscaledBorder;
199 (SkScalar) (top / fSampleSize),
565 // SkWebpCodec, the only one that supports subsets, requires even top/left boundaries.
574 // Keep track of left and top (for drawing subsetBm into canvas). We could use
579 int top = 0; local
609 canvas->drawBitmap(subsetBm, SkIntToScalar(left), SkIntToScalar(top));
611 top += decodeInfo.height();
739 const int top = y * subsetHeight; local
745 SkIRect subset = SkIRect::MakeXYWH(left, top, subsetWidt
[all...]
/external/skia/include/core/
H A DSkCanvas.h162 * the previous device). getTopDevice() returns the top-most device current
199 * If the canvas has writable pixels in its top layer (and is not recording to a picture
321 * only draw on top of opaque sections of the layer to get good results.
518 /** Return true if the horizontal band specified by top and bottom is
523 @param top The top of the horizontal band to compare with the clip
528 bool quickRejectY(SkScalar top, SkScalar bottom) const { argument
529 SkASSERT(top <= bottom);
537 // two Y planes and the device-bounds (i.e., project the top and
546 // negative top an
[all...]
/external/skia/src/animator/
H A DSkScriptTokenizer.cpp147 while (fBranchStack.top().fDone == Branch::kIsDone)
374 SkScriptValue2& top = fValueStack.top(); local
375 if (top.fType != SkOperand2::kObject)
377 void* object = top.fOperand.fObject;
488 if (fBraceStack.top() == kArrayBrace) {
610 SkScriptValue2 top; local
611 fValueStack.pop(&top);
613 addTokenInt(top.fType);
615 top
[all...]
/external/skia/src/core/
H A DSkPictureRecord.cpp238 int32_t offset = fRestoreOffsetStack.top();
280 int32_t prevOffset = fRestoreOffsetStack.top();
296 fRestoreOffsetStack.top() = SkToU32(offset);
459 void SkPictureRecord::onDrawBitmap(const SkBitmap& bitmap, SkScalar left, SkScalar top, argument
461 // op + paint index + bitmap index + left + top
467 this->addScalar(top);
H A DSkRegion.cpp50 assert_sentinel(runs[0], false); // top
143 bool SkRegion::setRect(int32_t left, int32_t top, argument
145 if (left >= right || top >= bottom) {
149 fBounds.set(left, top, right, bottom);
242 // trim off any empty spans from the top and bottom
246 assert_sentinel(runs[0], false); // top
252 runs[0] = runs[-2]; // set new top to prev bottom
559 *druns++ = (SkRegion::RunType)(*sruns++ + dy); // top
756 RgnOper(int top, SkRegion::RunType dst[], SkRegion::Op op) { argument
767 fTop = (SkRegion::RunType)(top); // jus
859 int top, bot SK_INIT_TO_AVOID_WARNING; local
[all...]
/external/skia/src/gpu/vk/
H A DGrVkGpu.cpp261 int left, int top, int width, int height,
282 //success = this->uploadCompressedTexData(vkTex->desc(), buffer, false, left, top, width,
301 success = this->uploadTexData(vkTex, left, top, width, height, config,
314 int left, int top, int width, int height,
329 if (!GrSurfacePriv::AdjustWritePixelParams(desc.fWidth, desc.fHeight, bpp, &left, &top,
353 int texTop = kBottomLeft_GrSurfaceOrigin == desc.fOrigin ? tex->height() - top - height
354 : top;
421 flipY ? tex->height() - top - height : top,
1102 int left, int top, in
260 onWritePixels(GrSurface* surface, int left, int top, int width, int height, GrPixelConfig config, const void* buffer, size_t rowBytes) argument
313 uploadTexData(GrVkTexture* tex, int left, int top, int width, int height, GrPixelConfig dataConfig, const void* data, size_t rowBytes) argument
1101 onReadPixels(GrSurface* surface, int left, int top, int width, int height, GrPixelConfig config, void* buffer, size_t rowBytes) argument
1184 char* top = reinterpret_cast<char*>(buffer); local
[all...]
/external/skia/src/pdf/
H A DSkPDFShader.cpp216 * and that the top 2 elements are numeric values.
371 // put the larger root on top of the stack
870 canvas.translate(-deviceBounds.left(), -deviceBounds.top());
871 patternBBox.offset(-deviceBounds.left(), -deviceBounds.top());
873 finalMatrix.preTranslate(deviceBounds.left(), deviceBounds.top());
915 rect = SkRect::MakeLTRB(deviceBounds.left(), deviceBounds.top(), 0, 0);
921 rect = SkRect::MakeLTRB(width, deviceBounds.top(),
944 // Then expand the left, right, top, then bottom.
985 if (deviceBounds.top() < 0) {
986 SkBitmap top; local
[all...]
/external/skia/tools/android/
H A DSkAndroidSDKCanvas.cpp139 SkScalar top,
142 fProxyTarget->drawBitmap(bitmap, left, top, filteredPaint);
137 onDrawBitmap(const SkBitmap& bitmap, SkScalar left, SkScalar top, const SkPaint* paint) argument
/external/skia/tools/debugger/
H A DSkDebugCanvas.cpp397 SkScalar top, const SkPaint* paint) {
398 this->addDrawCommand(new SkDrawBitmapCommand(bitmap, left, top, paint));
412 void SkDebugCanvas::onDrawImage(const SkImage* image, SkScalar left, SkScalar top, argument
414 this->addDrawCommand(new SkDrawImageCommand(image, left, top, paint));
396 onDrawBitmap(const SkBitmap& bitmap, SkScalar left, SkScalar top, const SkPaint* paint) argument
/external/svox/pico/lib/
H A Dpicosa.c79 1. POS disambiguation (right-to-left, top-to-bottom):
492 const picoos_uint16 top,
498 for (i = ind + 1; ((val == PICOKDT_EPSILON) && (i < top)); i++) {
489 saPosDItemSeqGetPosRight(register picodata_ProcessingUnit this, register sa_subobj_t *sa, const picoos_uint16 ind, const picoos_uint16 top, picoos_uint16 *rightind) argument
/external/v8/src/heap/
H A Dmark-compact.h244 int top() { return top_; } function in class:v8::internal::MarkingDeque
246 void set_top(int top) { top_ = top; } argument
250 // array_[(top - 1) & mask_] is the top element in the deque. The Deque is
575 void PrepareThreadForCodeFlushing(Isolate* isolate, ThreadLocalTop* top);
618 // If the call-site of the top optimized code was not prepared for
/external/webp/src/dec/
H A Didec.c790 int* left, int* top,
794 if (top != NULL) *top = 0;
789 WebPIDecodedArea(const WebPIDecoder* idec, int* left, int* top, int* width, int* height) argument
/external/webp/src/dsp/
H A Ddec.c164 const uint8_t* top = dst - BPS; local
165 const uint8_t* const clip0 = VP8kclip1 - top[-1];
171 dst[x] = clip[top[x]];
214 static void DC16NoTop(uint8_t* dst) { // DC with top samples not available
232 static void DC16NoTopLeft(uint8_t* dst) { // DC with no top and left samples
245 const uint8_t* top = dst - BPS; local
247 AVG3(top[-1], top[0], top[1]),
248 AVG3(top[
[all...]
H A Denc.c229 const uint8_t* top, int size) {
231 if (top != NULL) {
232 for (j = 0; j < size; ++j) memcpy(dst + j * BPS, top, size);
251 const uint8_t* top, int size) {
254 if (top != NULL) {
260 dst[x] = clip_table[top[x]];
269 // is equivalent to VE prediction where you just copy the top samples.
270 // Note that if top samples are not available, the default value is
272 if (top != NULL) {
273 VerticalPred(dst, top, siz
228 VerticalPred(uint8_t* dst, const uint8_t* top, int size) argument
250 TrueMotion(uint8_t* dst, const uint8_t* left, const uint8_t* top, int size) argument
280 DCMode(uint8_t* dst, const uint8_t* left, const uint8_t* top, int size, int round, int shift) argument
306 IntraChromaPreds(uint8_t* dst, const uint8_t* left, const uint8_t* top) argument
326 Intra16Preds(uint8_t* dst, const uint8_t* left, const uint8_t* top) argument
341 VE4(uint8_t* dst, const uint8_t* top) argument
354 HE4(uint8_t* dst, const uint8_t* top) argument
366 DC4(uint8_t* dst, const uint8_t* top) argument
373 RD4(uint8_t* dst, const uint8_t* top) argument
392 LD4(uint8_t* dst, const uint8_t* top) argument
410 VR4(uint8_t* dst, const uint8_t* top) argument
432 VL4(uint8_t* dst, const uint8_t* top) argument
454 HU4(uint8_t* dst, const uint8_t* top) argument
469 HD4(uint8_t* dst, const uint8_t* top) argument
492 TM4(uint8_t* dst, const uint8_t* top) argument
510 Intra4Preds(uint8_t* dst, const uint8_t* top) argument
[all...]
H A Denc_mips_dsp_r2.c378 VERTICAL_PRED(dst, top, 8)
379 VERTICAL_PRED(dst, top, 16)
422 "ulw %[temp0], 0(%[top]) \n\t" \
423 "ulw %[temp1], 4(%[top]) \n\t" \
429 "ulw %[temp0], 8(%[top]) \n\t" \
430 "ulw %[temp1], 12(%[top]) \n\t" \
437 : [left_1]"r"(left_1), [top]"r"((TOP)), [dst]"r"((DST)) \
462 /* is equivalent to VE prediction where you just copy the top samples. */ \
463 /* Note that if top samples are not available, the default value is */ \
473 TRUE_MOTION(dst, left, top,
481 DCMode16(uint8_t* dst, const uint8_t* left, const uint8_t* top) argument
544 DCMode8(uint8_t* dst, const uint8_t* left, const uint8_t* top) argument
589 DC4(uint8_t* dst, const uint8_t* top) argument
610 TM4(uint8_t* dst, const uint8_t* top) argument
665 VE4(uint8_t* dst, const uint8_t* top) argument
696 HE4(uint8_t* dst, const uint8_t* top) argument
732 RD4(uint8_t* dst, const uint8_t* top) argument
781 VR4(uint8_t* dst, const uint8_t* top) argument
831 LD4(uint8_t* dst, const uint8_t* top) argument
878 VL4(uint8_t* dst, const uint8_t* top) argument
927 HD4(uint8_t* dst, const uint8_t* top) argument
975 HU4(uint8_t* dst, const uint8_t* top) argument
1014 IntraChromaPreds(uint8_t* dst, const uint8_t* left, const uint8_t* top) argument
1034 Intra16Preds(uint8_t* dst, const uint8_t* left, const uint8_t* top) argument
1044 Intra4Preds(uint8_t* dst, const uint8_t* top) argument
[all...]
H A Dlossless.c116 static uint32_t Predictor0(uint32_t left, const uint32_t* const top) { argument
117 (void)top;
121 static uint32_t Predictor1(uint32_t left, const uint32_t* const top) { argument
122 (void)top;
125 static uint32_t Predictor2(uint32_t left, const uint32_t* const top) { argument
127 return top[0];
129 static uint32_t Predictor3(uint32_t left, const uint32_t* const top) { argument
131 return top[1];
133 static uint32_t Predictor4(uint32_t left, const uint32_t* const top) { argument
135 return top[
137 Predictor5(uint32_t left, const uint32_t* const top) argument
141 Predictor6(uint32_t left, const uint32_t* const top) argument
145 Predictor7(uint32_t left, const uint32_t* const top) argument
149 Predictor8(uint32_t left, const uint32_t* const top) argument
154 Predictor9(uint32_t left, const uint32_t* const top) argument
159 Predictor10(uint32_t left, const uint32_t* const top) argument
163 Predictor11(uint32_t left, const uint32_t* const top) argument
167 Predictor12(uint32_t left, const uint32_t* const top) argument
171 Predictor13(uint32_t left, const uint32_t* const top) argument
[all...]
H A Dlossless_sse2.c116 static uint32_t Predictor5(uint32_t left, const uint32_t* const top) { argument
117 const uint32_t pred = Average3(left, top[0], top[1]);
120 static uint32_t Predictor6(uint32_t left, const uint32_t* const top) { argument
121 const uint32_t pred = Average2(left, top[-1]);
124 static uint32_t Predictor7(uint32_t left, const uint32_t* const top) { argument
125 const uint32_t pred = Average2(left, top[0]);
128 static uint32_t Predictor8(uint32_t left, const uint32_t* const top) { argument
129 const uint32_t pred = Average2(top[-1], top[
133 Predictor9(uint32_t left, const uint32_t* const top) argument
138 Predictor10(uint32_t left, const uint32_t* const top) argument
142 Predictor11(uint32_t left, const uint32_t* const top) argument
146 Predictor12(uint32_t left, const uint32_t* const top) argument
150 Predictor13(uint32_t left, const uint32_t* const top) argument
[all...]
/external/webrtc/webrtc/examples/peerconnection/client/
H A Dmain_wnd.cc44 *height = text_rc.bottom - text_rc.top;
45 *height += (window.bottom - window.top) -
46 (client.bottom - client.top);
268 if ((rc.right - rc.left) > 200 && (rc.bottom - rc.top) > 200) {
508 size_t top = y - (windows[i].height / 2); local
509 ::MoveWindow(windows[i].wnd, static_cast<int>(x), static_cast<int>(top),
/external/webrtc/webrtc/modules/video_render/mac/
H A Dvideo_render_agl.cc988 || _windowHeight != (_windowRect.bottom - _windowRect.top))
997 _windowHeight = _windowRect.bottom - _windowRect.top;
1053 globalBounds.top = contentBounds.top;
1058 windowHeight = globalBounds.bottom - globalBounds.top;
1111 contentBounds.top, contentBounds.right, contentBounds.bottom, contentBounds.left);
1227 //WEBRTC_LOG(kTraceDebug, "%s contentBounds t:%d r:%d b:%d l:%d", __FUNCTION__, contentBounds.top, contentBounds.right, contentBounds.bottom, contentBounds.left);
1230 _currentParentWindowBounds.top = contentBounds.top;
1236 _currentParentWindowHeight = _currentParentWindowBounds.bottom - _currentParentWindowBounds.top;
1962 GetChannelProperties(const uint16_t streamId, uint32_t& zOrder, float& left, float& top, float& right, float& bottom) argument
[all...]
/external/webrtc/webrtc/modules/video_render/windows/
H A Dvideo_render_direct3d9.cc336 _originalHwndRect.top, _originalHwndRect.right
338 _originalHwndRect.bottom - _originalHwndRect.top,
466 _winHeight = _originalHwndRect.bottom - _originalHwndRect.top;
839 const float top,
851 d3dChannel->SetStreamSettings(0, zOrder, left, top, right, bottom);
867 float& left, float& top,
884 return ddobj->GetStreamSettings(0, zOrder, left, top, right, bottom);
897 float left, right, top, bottom; local
905 top = 1 - startHeight * 2;
910 { left, bottom, 0.0f, 0xffffffff, 0, 1 }, { left, top, 0.
836 CreateChannel(const uint32_t channel, const uint32_t zOrder, const float left, const float top, const float right, const float bottom) argument
864 GetStreamSettings(const uint32_t channel, const uint16_t streamId, uint32_t& zOrder, float& left, float& top, float& right, float& bottom) argument
946 SetCropping(const uint32_t channel, const uint16_t streamId, const float left, const float top, const float right, const float bottom) argument
962 SetText(const uint8_t textId, const uint8_t* text, const int32_t textLength, const uint32_t colorText, const uint32_t colorBg, const float left, const float top, const float rigth, const float bottom) argument
974 SetBitmap(const void* bitMap, const uint8_t pictureId, const void* colorKey, const float left, const float top, const float right, const float bottom) argument
1139 ConfigureRenderer(const uint32_t channel, const uint16_t streamId, const unsigned int zOrder, const float left, const float top, const float right, const float bottom) argument
[all...]
/external/owasp/sanitizer/tools/findbugs/lib/
H A Dasm-analysis-3.3.jar ... Subroutine[] subroutines private boolean[] queued private int[] queue private int top public void " href="/7.0.0_r1/s? ...
/external/androidplot/AndroidPlot-Core/src/main/java/com/androidplot/xy/
H A DXYGraphWidget.java341 return ValPixConverter.pixToVal(yPix - paddedGridRect.top, plot
401 widgetRect.top + ((domainAxisBottom)?1:domainLabelWidth),
407 return new RectF(gridRect.left + gridPaddingLeft, gridRect.top
456 canvas.drawLine(xPix, gridRect.top, xPix, gridRect.bottom
459 canvas.drawLine(xPix, gridRect.top - domainLabelTickExtension, xPix,
470 yPix = gridRect.top - domainLabelTickExtension
478 canvas.drawLine(xPix, gridRect.top, xPix, gridRect.bottom,
608 rangeOriginF += paddedGridRect.top;
619 if (rangeOriginF >= paddedGridRect.top
633 for (; yPix >= paddedGridRect.top; yPi
1056 setGridPadding(float left, float top, float right, float bottom) argument
[all...]
H A DXYPlot.java251 public void setGridPadding(float left, float top, float right, float bottom) { argument
252 getGraphWidget().setGridPaddingTop(top);

Completed in 1673 milliseconds

<<11121314151617181920