HomeSort by relevance Sort by last modified time
    Searched defs:elevation (Results 1 - 25 of 44) sorted by null

1 2

  /external/chromium_org/third_party/WebKit/Source/platform/graphics/filters/
DistantLightSource.cpp 41 float elevation = deg2rad(m_elevation); local
42 paintingData.lightVector.setX(cosf(azimuth) * cosf(elevation));
43 paintingData.lightVector.setY(sinf(azimuth) * cosf(elevation));
44 paintingData.lightVector.setZ(sinf(elevation));
60 bool DistantLightSource::setElevation(float elevation)
62 if (m_elevation == elevation)
64 m_elevation = elevation;
72 ts << "[elevation=\"" << elevation() << "\"]";
DistantLightSource.h 32 static PassRefPtr<DistantLightSource> create(float azimuth, float elevation)
34 return adoptRef(new DistantLightSource(azimuth, elevation));
43 float elevation() const { return m_elevation; } function in class:blink::DistantLightSource
54 DistantLightSource(float azimuth, float elevation)
57 , m_elevation(elevation)
  /external/chromium_org/third_party/WebKit/Source/core/svg/
SVGFELightElement.h 44 SVGAnimatedNumber* elevation() { return m_elevation.get(); } function in class:blink::SVGFELightElement
45 const SVGAnimatedNumber* elevation() const { return m_elevation.get(); } function in class:blink::SVGFELightElement
  /frameworks/support/v7/cardview/api21/android/support/v7/widget/
CardViewApi21.java 25 float radius, float elevation, float maxElevation) {
30 view.setElevation(elevation);
71 public void setElevation(CardViewDelegate cardView, float elevation) {
72 ((View) cardView).setElevation(elevation);
86 float elevation = getMaxElevation(cardView); local
89 .calculateHorizontalPadding(elevation, radius, cardView.getPreventCornerOverlap()));
91 .calculateVerticalPadding(elevation, radius, cardView.getPreventCornerOverlap()));
  /external/chromium_org/remoting/host/setup/
me2me_native_messaging_host_main.cc 60 TOKEN_ELEVATION elevation; local
62 &elevation, sizeof(elevation), &size);
63 return elevation.TokenIsElevated != 0;
  /external/chromium_org/rlz/win/lib/
process_info.cc 87 HRESULT GetElevationType(PTOKEN_ELEVATION_TYPE elevation) {
88 if (!elevation)
91 *elevation = TokenElevationTypeDefault;
109 *elevation = elevation_type;
169 TOKEN_ELEVATION_TYPE elevation; local
172 if (SUCCEEDED(GetElevationType(&elevation)) &&
174 has_rights = (elevation == TokenElevationTypeFull) ||
  /prebuilts/sdk/current/support/v7/cardview/libs/
android-support-v7-cardview.jar 
  /external/chromium_org/content/child/
blink_platform_impl.cc 660 // Extract the azimuth and elevation from the resource name.
662 int elevation = 0; local
664 sscanf(name, "IRC_Composite_C_R0195_T%3d_P%3d", &azimuth, &elevation);
672 // 0 <= elevation <= 90 (or 315 <= elevation <= 345)
675 elevation <= 90 ? elevation / kAngleSpacing :
676 7 + (elevation - 315) / kAngleSpacing;
    [all...]
  /external/chromium_org/third_party/WebKit/Source/modules/webaudio/
PannerNode.cpp 142 double elevation; local
143 azimuthElevation(&azimuth, &elevation);
145 m_panner->pan(azimuth, elevation, source, destination, framesToProcess);
423 // Elevation
424 double elevation = 90.0 - 180.0 * acos(sourceListener.dot(up)) / piDouble; local
425 fixNANs(elevation); // avoid illegal values
427 if (elevation > 90.0)
428 elevation = 180.0 - elevation;
429 else if (elevation < -90.0
    [all...]
  /frameworks/support/v7/cardview/src/android/support/v7/widget/
CardView.java 30 * CardView uses <code>elevation</code> property on L for shadows and falls back to a custom shadow
52 * To change CardView's elevation in a backward compatible way, use
53 * {@link #setCardElevation(float)}. CardView will use elevation API on L and before L, it will
55 * clamped by {@link #getMaxCardElevation()}. If you want to change elevation dynamically, you
207 float elevation = a.getDimension(R.styleable.CardView_cardElevation, 0); local
220 if (elevation > maxElevation) {
221 maxElevation = elevation;
224 IMPL.initialize(this, context, backgroundColor, radius, elevation, maxElevation);
307 * Updates the backward compatible elevation of the CardView.
309 * @param radius The backward compatible elevation in pixels
    [all...]
  /frameworks/support/v7/appcompat/src/android/support/v7/internal/app/
ToolbarActionBar.java 148 public void setElevation(float elevation) {
149 ViewCompat.setElevation(mDecorToolbar.getViewGroup(), elevation); local
WindowDecorActionBar.java 235 final int elevation = a.getDimensionPixelSize(R.styleable.ActionBar_elevation, 0); local
236 if (elevation != 0) {
237 setElevation(elevation);
254 public void setElevation(float elevation) {
255 ViewCompat.setElevation(mContainerView, elevation);
257 ViewCompat.setElevation(mSplitView, elevation);
    [all...]
  /external/owasp/sanitizer/src/main/org/owasp/html/
CssSchema.java 503 Property elevation = new Property( typedefs
505 builder.put("elevation", elevation);
    [all...]
  /frameworks/base/core/java/android/app/
ActivityTransitionCoordinator.java 131 protected static final String KEY_ELEVATION = "shared_element:elevation";
452 float elevation = sharedElementBundle.getFloat(KEY_ELEVATION); local
453 view.setElevation(elevation);
    [all...]
  /frameworks/base/core/java/com/android/internal/app/
WindowDecorActionBar.java 225 final int elevation = a.getDimensionPixelSize(R.styleable.ActionBar_elevation, 0); local
226 if (elevation != 0) {
227 setElevation(elevation);
244 public void setElevation(float elevation) {
245 mContainerView.setElevation(elevation);
247 mSplitView.setElevation(elevation);
    [all...]
  /frameworks/base/policy/src/com/android/internal/policy/impl/
PhoneWindow.java 1260 final float elevation = a.getDimension(R.styleable.Window_windowElevation, 0); local
    [all...]
  /hardware/libhardware/include/hardware/
gps.h 262 /** A valid 'elevation' is stored in the data structure. */
264 /** A valid 'elevation uncertainty' is stored in the data structure. */
463 /** Elevation of SV in degrees. */
464 float elevation; member in struct:__anon41343
    [all...]
  /hardware/qcom/gps/loc_api/libloc_api-rpc/inc-1240/
loc_api_common.h 145 float elevation; member in struct:rpc_loc_sv_info_s_type
    [all...]
  /hardware/qcom/gps/loc_api/libloc_api-rpc/inc-3200/
loc_api_common.h 139 float elevation; member in struct:rpc_loc_sv_info_s_type
    [all...]
  /hardware/qcom/gps/loc_api/libloc_api-rpc-50001/libloc_api-rpc-stub/inc/
loc_api_rpcgen_common_rpc.h 161 float elevation; member in struct:rpc_loc_sv_info_s_type
    [all...]
  /external/owasp/sanitizer/distrib/lib/
owasp-java-html-sanitizer.jar 
  /libcore/benchmarks/src/benchmarks/regression/
R.java 1573 public static final int elevation = 0; field in class:R
    [all...]
  /prebuilts/sdk/current/support/v7/appcompat/libs/
android-support-v7-appcompat.jar 
  /prebuilts/devtools/tools/lib/
ddmlib.jar 
  /prebuilts/gradle-plugin/com/android/tools/ddms/ddmlib/22.2.0/
ddmlib-22.2.0.jar 

Completed in 778 milliseconds

1 2