/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
|
/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) ||
|
/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...] |
/external/owasp/sanitizer/src/main/org/owasp/html/ |
CssSchema.java | 503 Property elevation = new Property( typedefs 505 builder.put("elevation", elevation); [all...] |
/external/owasp/sanitizer/distrib/lib/ |
owasp-java-html-sanitizer.jar | |