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

1 2 3 4 5 6

  /external/chromium_org/third_party/WebKit/Source/core/svg/
SVGFEDistantLightElement.idl 28 readonly attribute SVGAnimatedNumber elevation;
SVGFEDistantLightElement.cpp 38 return DistantLightSource::create(azimuth()->currentValue()->value(), elevation()->currentValue()->value());
SVGFELightElement.h 41 SVGAnimatedNumber* elevation() { return m_elevation.get(); } function in class:WebCore::SVGFELightElement
42 const SVGAnimatedNumber* elevation() const { return m_elevation.get(); } function in class:WebCore::SVGFELightElement
  /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:WebCore::DistantLightSource
54 DistantLightSource(float azimuth, float elevation)
57 , m_elevation(elevation)
  /external/chromium_org/third_party/WebKit/Source/platform/audio/
HRTFElevation.h 44 // HRTFElevation contains all of the HRTFKernels (one left ear and one right ear per azimuth angle) for a particular elevation.
49 // Loads and returns an HRTFElevation with the given HRTF database subject name and elevation from browser (or WebKit.framework) resources.
52 // Valid values for elevation are -45 -> +90 in 15 degree increments.
53 static PassOwnPtr<HRTFElevation> createForSubject(const String& subjectName, int elevation, float sampleRate);
82 // Given a specific azimuth and elevation angle, returns the left and right HRTFKernel.
84 // Valid values for elevation are -45 -> +90 in 15 degree increments.
86 static bool calculateKernelsForAzimuthElevation(int azimuth, int elevation, float sampleRate, const String& subjectName,
89 // Given a specific azimuth and elevation angle, returns the left and right HRTFKernel in kernelL and kernelR.
92 static bool calculateSymmetricKernelsForAzimuthElevation(int azimuth, int elevation, float sampleRate, const String& subjectName,
96 HRTFElevation(PassOwnPtr<HRTFKernelList> kernelListL, PassOwnPtr<HRTFKernelList> kernelListR, int elevation, float sampleRate
    [all...]
EqualPowerPanner.h 38 virtual void pan(double azimuth, double elevation, const AudioBus* inputBus, AudioBus* outputBuf, size_t framesToProcess) OVERRIDE;
HRTFElevation.cpp 99 bool HRTFElevation::calculateSymmetricKernelsForAzimuthElevation(int azimuth, int elevation, float sampleRate, const String& subjectName,
104 bool success = calculateKernelsForAzimuthElevation(azimuth, elevation, sampleRate, subjectName, kernelL1, kernelR1);
113 success = calculateKernelsForAzimuthElevation(symmetricAzimuth, elevation, sampleRate, subjectName, kernelL2, kernelR2);
124 bool HRTFElevation::calculateKernelsForAzimuthElevation(int azimuth, int elevation, float sampleRate, const String& subjectName,
128 // Valid values for elevation are -45 -> +90 in 15 degree increments.
135 bool isElevationGood = elevation >= -45 && elevation <= 90 && (elevation / 15) * 15 == elevation;
140 // Construct the resource name from the subject name, azimuth, and elevation, for example
    [all...]
Panner.h 57 virtual void pan(double azimuth, double elevation, const AudioBus* inputBus, AudioBus* outputBus, size_t framesToProcess) = 0;
HRTFDatabase.cpp 58 for (int elevation = MinElevation; elevation <= MaxElevation; elevation += RawElevationAngleSpacing) {
59 OwnPtr<HRTFElevation> hrtfElevation = HRTFElevation::createForSubject("Composite", elevation, sampleRate);
73 j = i; // for last elevation interpolate with itself
HRTFPanner.cpp 121 void HRTFPanner::pan(double desiredAzimuth, double elevation, const AudioBus* inputBus, AudioBus* outputBus, size_t framesToProcess)
168 // Initially snap azimuth and elevation values to first values encountered.
171 m_elevation1 = elevation;
175 m_elevation2 = elevation;
183 // Check for azimuth and elevation changes, initiating a cross-fade if needed.
185 if (desiredAzimuthIndex != m_azimuthIndex1 || elevation != m_elevation1) {
189 m_elevation2 = elevation;
193 if (desiredAzimuthIndex != m_azimuthIndex2 || elevation != m_elevation2) {
197 m_elevation1 = elevation;
HRTFPanner.h 41 virtual void pan(double azimuth, double elevation, const AudioBus* inputBus, AudioBus* outputBus, size_t framesToProcess) OVERRIDE;
62 // then azimuth and elevation are dynamically changing.
63 // When the azimuth and elevation are not changing, we simply process with one of the two sets.
65 // Whenever the azimuth or elevation changes, a crossfade is initiated to transition
79 // azimuth/elevation for CrossfadeSelection1.
83 // azimuth/elevation for CrossfadeSelection2.
  /frameworks/support/v7/cardview/base/android/support/v7/widget/
CardViewImpl.java 24 float elevation, float maxElevation);
30 void setElevation(CardViewDelegate cardView, float elevation);
  /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()));
  /developers/build/prebuilts/gradle/CardView/Application/tests/src/com/example/android/cardview/
SampleTests.java 46 assertNotNull("SeekBar for Elevation is null", mFragment.mElevationSeekBar);
64 float elevation = 40.0f;
65 mFragment.mElevationSeekBar.setProgress((int) elevation);
66 assertEquals(elevation, mFragment.mCardView.getElevation());
  /developers/samples/android/ui/views/CardView/Application/tests/src/com/example/android/cardview/
SampleTests.java 46 assertNotNull("SeekBar for Elevation is null", mFragment.mElevationSeekBar);
64 float elevation = 40.0f;
65 mFragment.mElevationSeekBar.setProgress((int) elevation);
66 assertEquals(elevation, mFragment.mCardView.getElevation());
  /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) ||
  /frameworks/support/v7/cardview/eclair-mr1/android/support/v7/widget/
CardViewEclairMr1.java 70 float radius, float elevation, float maxElevation) {
72 elevation, maxElevation);
79 float radius, float elevation, float maxElevation) {
81 elevation, maxElevation);
117 public void setElevation(CardViewDelegate cardView, float elevation) {
118 getShadowBackground(cardView).setShadowSize(elevation);
  /frameworks/support/v4/api21/android/support/v4/view/
ViewCompatApi21.java 36 public static void setElevation(View view, float elevation) {
37 view.setElevation(elevation);
  /packages/inputmethods/LatinIME/java/src/com/android/inputmethod/compat/
ViewCompatUtils.java 61 public static void setElevation(final View view, final float elevation) {
62 CompatUtils.invoke(view, null, METHOD_setElevation, elevation);
  /external/chromium_org/third_party/WebKit/Source/modules/webaudio/
PannerNode.cpp 139 double elevation; local
140 azimuthElevation(&azimuth, &elevation);
142 m_panner->pan(azimuth, elevation, source, destination, framesToProcess);
421 // Elevation
422 double elevation = 90.0 - 180.0 * acos(sourceListener.dot(up)) / piDouble; local
423 fixNANs(elevation); // avoid illegal values
425 if (elevation > 90.0)
426 elevation = 180.0 - elevation;
427 else if (elevation < -90.0
    [all...]
  /prebuilts/sdk/current/support/v7/cardview/libs/
android-support-v7-cardview.jar 
  /frameworks/wilhelm/src/itf/
I3DDoppler.c 43 SLmillidegree azimuth, SLmillidegree elevation, SLmillimeter speed)
50 thiz->mVelocitySpherical.mElevation = elevation;
  /external/chromium_org/remoting/host/setup/
me2me_native_messaging_host_main.cc 56 TOKEN_ELEVATION elevation; local
58 &elevation, sizeof(elevation), &size);
59 return elevation.TokenIsElevated != 0;
  /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);
297 * Updates the backward compatible elevation of the CardView.
299 * @param radius The backward compatible elevation in pixels
    [all...]

Completed in 543 milliseconds

1 2 3 4 5 6