OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:wave
(Results
1 - 3
of
3
) sorted by null
/external/chromium_org/third_party/polymer/components-chromium/paper-ripple/
paper-ripple-extracted.js
48
// Determines whether the
wave
should be completely removed.
49
function waveDidFinish(
wave
, radius, anim) {
50
var waveOpacity = waveOpacityFn(
wave
.tDown,
wave
.tUp, anim);
51
// If the
wave
opacity is 0 and the radius exceeds the bounds
53
if (waveOpacity < 0.01 && radius >= Math.min(
wave
.maxRadius, waveMaxRadius)) {
59
function waveAtMaximum(
wave
, radius, anim) {
60
var waveOpacity = waveOpacityFn(
wave
.tDown,
wave
.tUp, anim);
61
if (waveOpacity >= anim.initialOpacity && radius >= Math.min(
wave
.maxRadius, waveMaxRadius))
[
all
...]
raw-extracted.js
67
// Determines whether the
wave
should be completely removed.
68
function waveDidFinish(
wave
, radius) {
69
var waveOpacity = waveOpacityFn(
wave
.tDown,
wave
.tUp);
73
// If the
wave
opacity is 0 and the radius exceeds the bounds
75
if (waveOpacity < 0.01 && radius >=
wave
.maxRadius) {
132
var
wave
= {
141
return
wave
;
144
function removeWaveFromScope(scope,
wave
) {
146
var pos = scope.waves.indexOf(
wave
);
[
all
...]
/external/opencv/cxcore/src/
cxdxt.cpp
370
CvComplex64f*
wave
= (CvComplex64f*)_wave;
372
wave
[0].re = 1.;
373
wave
[0].im = 0.;
377
wave
[n].re = -1.;
378
wave
[n].im = 0;
383
wave
[i] = w;
384
wave
[n0-i].re = w.re;
385
wave
[n0-i].im = -w.im;
394
CvComplex32f*
wave
= (CvComplex32f*)_wave;
397
wave
[0].re = 1.f
[
all
...]
Completed in 182 milliseconds