HomeSort by relevance Sort by last modified time
    Searched full:ratio (Results 626 - 650 of 2022) sorted by null

<<21222324252627282930>>

  /prebuilts/ndk/9/sources/cxx-stl/gnu-libstdc++/4.6/include/
chrono 38 #include <ratio>
62 template<typename _Rep, typename _Period = ratio<1>>
81 typedef ratio<__gcd_num::value,
215 struct __is_ratio<ratio<_Num, _Den>>
228 "period must be a specialization of ratio");
511 typedef duration<int, ratio< 60>> minutes;
514 typedef duration<int, ratio<3600>> hours;
  /prebuilts/ndk/9/sources/cxx-stl/gnu-libstdc++/4.7/include/
chrono 38 #include <ratio>
62 template<typename _Rep, typename _Period = ratio<1>>
81 typedef ratio<__gcd_num::value,
215 struct __is_ratio<ratio<_Num, _Den>>
228 "period must be a specialization of ratio");
516 typedef duration<int, ratio< 60>> minutes;
519 typedef duration<int, ratio<3600>> hours;
  /prebuilts/ndk/9/sources/cxx-stl/gnu-libstdc++/4.8/include/
chrono 38 #include <ratio>
62 template<typename _Rep, typename _Period = ratio<1>>
82 typedef ratio<__gcd_num::value,
234 struct __is_ratio<ratio<_Num, _Den>>
247 "period must be a specialization of ratio");
538 typedef duration<int, ratio< 60>> minutes;
541 typedef duration<int, ratio<3600>> hours;
  /external/chromium_org/third_party/WebKit/Source/devtools/front_end/components/
FlameChart.js 403 var ratio = window.devicePixelRatio;
404 this._canvas.width = this._offsetWidth * ratio;
405 this._canvas.height = this._offsetHeight * ratio;
783 var ratio = window.devicePixelRatio; variable
784 context.scale(ratio, ratio);
943 var ratio = window.devicePixelRatio; variable
944 context.scale(ratio, ratio);
    [all...]
TimelineGrid.js 109 var ratio = window.devicePixelRatio;
110 context.scale(ratio, ratio);
  /development/perftests/panorama/feature_stab/db_vlvm/
db_image_homography.cpp 31 ratio between coordinate i_num and i_den of xp is equal to the ratio
52 each constraint is generated by considering the ratio between a
  /development/samples/ApiDemos/src/com/example/android/apis/graphics/
MatrixPaletteRenderer.java 377 float ratio = (float) w / h; local
380 gl.glFrustumf(-ratio, ratio, -1, 1, 3, 7);
  /development/samples/ApiDemos/src/com/example/android/apis/graphics/spritetext/
SpriteTextRenderer.java 252 float ratio = (float) w / h; local
255 gl.glFrustumf(-ratio, ratio, -1, 1, 1, 10);
  /external/chromium_org/media/video/capture/mac/
video_capture_device_qtkit_mac.mm 305 // The aspect ratio dictionary is often missing, in which case we report
306 // a pixel aspect ratio of 0:0.
316 "Aspect Ratio dictionary missing its entries.";
  /external/chromium_org/third_party/WebKit/Source/core/css/
MediaQueryExp.cpp 266 // Applicable to device-aspect-ratio and aspec-ratio.
270 // The aspect-ratio must be <integer> (whitespace)? / (whitespace)? <integer>.
  /external/chromium_org/third_party/WebKit/Source/core/html/shadow/
SliderThumbElement.cpp 149 const Decimal ratio = Decimal::fromDouble(static_cast<double>(position) / trackSize); local
150 const Decimal fraction = isVertical || !isLeftToRightDirection ? Decimal(1) - ratio : ratio;
  /external/chromium_org/third_party/cld/encodings/compact_lang_det/
cldutil.cc 785 // ratio = max(top/mainstream, mainstream/top)
786 // ratio > 4.0 is 0% reliable, <= 2.0 is 100% reliable
794 double ratio; local
797 ratio = (1.0 * top_kb) / mean_score;
800 ratio = (1.0 * mean_score) / top_kb;
803 if (ratio <= ratio_cutoff - 2.0) {return 100;}
804 if (ratio > ratio_cutoff) {return 0;}
806 int iratio = static_cast<int>(100 * (ratio_cutoff - ratio) / 2.0);
810 // Calculate ratio of score per 1KB vs. expected score per 1KB
831 double ratio = our_score / expected_score local
    [all...]
  /external/chromium_org/third_party/libjingle/source/talk/media/base/
videocommon.h 150 // Computes a scale less to fit in max_pixels while maintaining aspect ratio.
162 // Compute the frame size that conversion should crop to based on aspect ratio.
170 // Compute the frame size that makes pixels square pixel aspect ratio.
  /external/guava/guava/src/com/google/common/cache/
CacheStats.java 103 * Returns the ratio of cache requests which were hits. This is defined as
123 * Returns the ratio of cache requests which were misses. This is defined as
168 * Returns the ratio of cache loading attempts which threw exceptions. This is defined as
  /external/skia/src/effects/gradients/
SkTwoPointConicalGradient.cpp 23 static int valid_divide(float numer, float denom, float* ratio) {
24 SkASSERT(ratio);
28 *ratio = numer / denom;
  /frameworks/base/core/java/android/transition/
ArcMotion.java 260 float ratio = FloatMath.sqrt(ratio2); local
261 ex = dx + (ratio * (ex - dx));
262 ey = dy + (ratio * (ey - dy));
  /frameworks/base/media/java/android/media/
Utils.java 151 private static Rational scaleRatio(Rational ratio, int num, int den) {
156 (int)(ratio.getNumerator() * (double)num), // saturate to int
157 (int)(ratio.getDenominator() * (double)den)); // saturate to int
  /frameworks/base/media/mca/filterpacks/java/android/filterpacks/videosrc/
SurfaceTextureTarget.java 66 * RENDERMODE_FIT: Keep aspect ratio and fit without cropping. May
68 * RENDERMODE_FILL_CROP: Keep aspect ratio and fit without black
219 Log.v(TAG, "Process. New aspect ratio: " + currentAspectRatio +
  /frameworks/base/tests/HwAccelerationTest/src/com/android/test/hwui/
GLDepthTestActivity.java 185 float ratio = (float) width / height; local
186 Matrix.frustumM(mProjMatrix, 0, -ratio, ratio, -1, 1, 3, 7);
  /packages/apps/Camera/jni/feature_stab/db_vlvm/
db_image_homography.cpp 31 ratio between coordinate i_num and i_den of xp is equal to the ratio
52 each constraint is generated by considering the ratio between a
  /packages/apps/Camera/src/com/android/camera/
CameraScreenNail.java 166 * Tells the ScreenNail to override the default aspect ratio scaling
189 Log.i(TAG, "aspect ratio clamping disabled");
215 Log.i(TAG, "aspect ratio clamping enabled, surfaceTexture scale: " + mScaleX + ", " + mScaleY);
  /packages/apps/Camera2/src/com/android/camera/app/
AppController.java 195 * Gets called from module when preview aspect ratio has changed.
197 * @param aspectRatio aspect ratio of preview stream
207 * @param aspectRatio the desired aspect ratio of the preview
  /packages/apps/Contacts/src/com/android/contacts/widget/
MultiShrinkScroller.java 78 * In portrait mode, the height:width ratio of the photo's starting height.
84 * to this ratio of its full height.
193 void onTransparentViewHeightChange(float ratio);
620 * Return ratio of non-transparent:viewgroup-height for this viewgroup at the starting position.
1013 final float ratio = (toolbarHeight - mMinimumHeaderHeight) local
1114 final float ratio = calculateHeightRatioToBlendingStartHeight(toolbarHeight); local
1130 final float ratio = calculateHeightRatioToFullyOpen(toolbarHeight); local
    [all...]
  /packages/apps/LegacyCamera/jni/feature_stab/db_vlvm/
db_image_homography.cpp 31 ratio between coordinate i_num and i_den of xp is equal to the ratio
52 each constraint is generated by considering the ratio between a
  /development/samples/SupportLeanbackDemos/src/com/example/android/leanback/
CardPresenter.java 70 // aspect ratio.

Completed in 1973 milliseconds

<<21222324252627282930>>