HomeSort by relevance Sort by last modified time
    Searched refs:top (Results 251 - 275 of 5665) sorted by null

<<11121314151617181920>>

  /frameworks/base/tests/Camera2Tests/SmartCamera/SimpleCamera/src/androidx/media/filterfw/samples/simplecamera/
FaceSquareFilter.java 85 int top = (tempRect.top+HEIGHT_OFFSET)*dims[1]/FACE_X_RANGE; local
90 if (top < 0) {
91 top = 0;
92 } else if (top > dims[1]) {
93 top = dims[1];
111 for (int j = 0; j < (bottom - top); j++) {
113 if (left > 0 && top > 0) {
114 pixels[ImageConstants.PIX_CHANNELS * (dims[0] * (top + j) + left) +
116 pixels[ImageConstants.PIX_CHANNELS * (dims[0] * (top + j) + left)
    [all...]
  /frameworks/base/tests/Camera2Tests/SmartCamera/SimpleCamera/tests/src/androidx/media/filterfw/samples/simplecamera/
FaceSquareFilterTest.java 87 int top = (faceRect.top+HEIGHT_OFFSET)*bitmap.getHeight()/FACE_X_RANGE; local
92 if (top < 0) {
93 top = 0;
94 } else if (top > bitmap.getHeight()) {
95 top = bitmap.getHeight();
113 for (int j = 0; j < (bottom - top); j++) {
115 if (left > 0 && top > 0) {
116 pixels[ImageConstants.PIX_CHANNELS * (bitmap.getWidth() * (top + j) + left) +
118 pixels[ImageConstants.PIX_CHANNELS * (bitmap.getWidth() * (top + j) + left)
    [all...]
  /cts/tests/tests/graphics/src/android/graphics/cts/
Paint_FontMetricsIntTest.java 40 int top = 1; local
47 fontMetricsInt.top = top;
  /external/llvm/test/MC/AsmParser/
macro-args.s 31 .macro top
46 top foo label
47 top bar, 42 label
  /external/swiftshader/src/OpenGL/common/
MatrixStack.hpp 43 void frustum(float left, float right, float bottom, float top, float zNear, float zFar);
44 void ortho(double left, double right, double bottom, double top, double zNear, double zFar);
53 int top; member in class:sw::MatrixStack
  /packages/inputmethods/LatinIME/java/src/com/android/inputmethod/compat/
ViewCompatUtils.java 49 public static void setPaddingRelative(final View view, final int start, final int top,
52 view.setPadding(start, top, end, bottom);
55 CompatUtils.invoke(view, null, METHOD_setPaddingRelative, start, top, end, bottom);
  /sdk/testapps/basicProjectWithAidl/src/com/android/tests/basicprojectwithaidl/
Rect.java 8 public int top; field in class:Rect
31 out.writeInt(top);
38 top = in.readInt();
  /external/libnl/doc/stylesheets/
volnitsky.css 58 h2 { padding-top: 0.5em; }
71 margin-top: 0.5em;
76 margin-top: 0;
92 border-top: 2px solid silver;
93 padding-top: 0.5em;
94 margin-top: 4.0em;
108 margin-top: 1.5em;
115 margin-top: 1.5em;
120 margin-top: 2.5em;
133 margin-top: 1.0em
    [all...]
xhtml11-quirks.css 12 margin-top: 0.0em;
23 padding-top: 0.5em;
31 padding-top: 0.75em;
40 div.imageblock.latex div.image-title { margin-top: 0.5em; }
  /external/androidplot/AndroidPlot-Core/src/main/java/com/androidplot/ui/
BoxModel.java 64 boundsRect.top + getMarginTop(),
76 marginRect.top+getPaddingTop(),
82 public void setMargins(float left, float top, float right, float bottom) {
84 setMarginTop(top);
90 public void setPadding(float left, float top, float right, float bottom) {
92 setPaddingTop(top);
BoxModelable.java 42 public void setMargins(float left, float top, float right, float bottom);
44 public void setPadding(float left, float top, float right, float bottom);
  /external/autotest/contrib/
result_size_summary.py 20 def get_summary(start_time, end_time, top=None, report_stat=False):
25 @param top: Number of top hits with the largest size of test results.
29 if top > 0:
40 if top:
42 for hit in hits[:top]:
64 parser.add_argument('-t', type=int, dest='top',
65 help='Print the top x of large result folders.',
80 top=options.top, report_stat=options.report_stat
    [all...]
  /external/webrtc/webrtc/modules/video_render/ios/
video_render_ios_impl.h 39 const float top,
48 float& top,
67 const float top,
73 const float top,
83 const float top,
90 const float top,
  /external/webrtc/webrtc/modules/video_render/
video_render.h 86 * zOrder - relative render order for the streams, 0 = on top
88 * top - position of the stream in the window, [0.0f, 1.0f]
97 const float left, const float top,
123 * zOrder - [out] relative render order for the streams, 0 = on top
125 * top - [out] position of the stream in the window, [0.0f, 1.0f]
132 float& left, float& top,
215 const float top,
232 const float top,
243 const float left, const float top,
251 const float left, const float top,
    [all...]
  /external/webrtc/webrtc/modules/video_render/windows/
video_render_windows_impl.h 56 const float left, const float top,
65 float& left, float& top,
101 const float left, const float top,
106 const float left, const float top,
116 const float left, const float top,
122 const float left, const float top,
  /external/libmojo/mojo/public/tools/bindings/pylib/mojom_tests/support/
find_files.py 11 def FindFiles(top, pattern, **kwargs):
12 """Finds files under |top| matching the glob pattern |pattern|, returning a
15 for dirpath, _, filenames in walk(top, **kwargs):
  /external/llvm/examples/OCaml-Kaleidoscope/Chapter2/
toplevel.ml 2 * Top-Level parsing and JIT Driver
5 (* top ::= definition | external | expression | ';' *)
10 (* ignore top-level semicolons. *)
25 (* Evaluate a top-level expression into an anonymous function. *)
27 print_endline "parsed a top-level expr";
  /external/llvm/examples/OCaml-Kaleidoscope/Chapter3/
toplevel.ml 2 * Top-Level parsing and JIT Driver
7 (* top ::= definition | external | expression | ';' *)
12 (* ignore top-level semicolons. *)
29 (* Evaluate a top-level expression into an anonymous function. *)
31 print_endline "parsed a top-level expr";
  /external/pdfium/fpdfsdk/
cpdfsdk_xfawidget.cpp 33 return CFX_FloatRect(rcBBox.left, rcBBox.top, rcBBox.left + rcBBox.width,
34 rcBBox.top + rcBBox.height);
  /external/robolectric/v1/src/main/java/com/xtremelabs/robolectric/shadows/
ShadowMarginLayoutParams.java 20 public void setMargins(int left, int top, int right, int bottom) {
22 realMarginLayoutParams.topMargin = top;
  /external/skia/gm/
skbug_4868.cpp 21 canvas->drawLine(rc.left(), rc.top(), rc.right(), rc.bottom(), paint);
22 canvas->drawLine(rc.right(), rc.top(), rc.left(), rc.bottom(), paint);
  /external/swiftshader/third_party/LLVM/examples/OCaml-Kaleidoscope/Chapter2/
toplevel.ml 2 * Top-Level parsing and JIT Driver
5 (* top ::= definition | external | expression | ';' *)
10 (* ignore top-level semicolons. *)
25 (* Evaluate a top-level expression into an anonymous function. *)
27 print_endline "parsed a top-level expr";
  /external/swiftshader/third_party/LLVM/examples/OCaml-Kaleidoscope/Chapter3/
toplevel.ml 2 * Top-Level parsing and JIT Driver
7 (* top ::= definition | external | expression | ';' *)
12 (* ignore top-level semicolons. *)
29 (* Evaluate a top-level expression into an anonymous function. *)
31 print_endline "parsed a top-level expr";
  /external/toolchain-utils/user_activity_benchmarks/
collect_pprof_data.sh 6 # Collects the pprof tree and top outputs.
9 # The pprof top output is stored in the pprof_top_results_path and the pprof
27 pprof --top "$LOCAL_CWP_RESULTS_PATH/${symbolized_profile}" > \
30 echo "Failed to extract the pprof top output for the $symbolized_profile."
  /external/webrtc/webrtc/modules/video_render/linux/
video_x11_render.h 37 const float top,
45 float& left, float& top,

Completed in 997 milliseconds

<<11121314151617181920>>