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

1 2

  /external/webkit/Source/WebCore/css/
ShadowValue.h 38 PassRefPtr<CSSPrimitiveValue> spread,
42 return adoptRef(new ShadowValue(x, y, blur, spread, style, color));
50 RefPtr<CSSPrimitiveValue> spread; member in class:WebCore::ShadowValue
58 PassRefPtr<CSSPrimitiveValue> spread,
ShadowValue.cpp 38 , spread(_spread)
65 if (spread) {
68 text += spread->cssText();
SVGCSSStyleSelector.cpp 568 // -webkit-svg-shadow does should not have a spread or style
569 ASSERT(!item->spread);
CSSComputedStyleDeclaration.cpp 673 RefPtr<CSSPrimitiveValue> spread = propertyID == CSSPropertyTextShadow ? PassRefPtr<CSSPrimitiveValue>() : zoomAdjustedPixelValue(s->spread(), style, primitiveValueCache); local
676 list->prepend(ShadowValue::create(x.release(), y.release(), blur.release(), spread.release(), style.release(), color.release()));
    [all...]
CSSParser.cpp 4621 RefPtr<CSSPrimitiveValue> spread; member in struct:WebCore::ShadowParseContext
    [all...]
CSSStyleSelector.cpp 5163 int spread = item->spread ? item->spread->computeLengthInt(style(), m_rootElementStyle, zoomFactor) : 0; local
    [all...]
  /bionic/libm/upstream-freebsd/lib/msun/src/
s_fma.c 184 int spread; local
204 spread = ex + ey - ez;
211 if (spread < -DBL_MANT_DIG) {
235 if (spread <= DBL_MANT_DIG * 2)
236 zs = ldexp(zs, -spread);
253 spread = ex + ey;
262 return (xy.hi + vzs + ldexp(xy.lo, spread));
272 return (ldexp(r.hi + adj, spread));
276 if (spread + ilogb(r.hi) > -1023)
277 return (ldexp(r.hi + adj, spread));
    [all...]
s_fmal.c 172 int spread; local
192 spread = ex + ey - ez;
199 if (spread < -LDBL_MANT_DIG) {
223 if (spread <= LDBL_MANT_DIG * 2)
224 zs = ldexpl(zs, -spread);
241 spread = ex + ey;
250 return (xy.hi + vzs + ldexpl(xy.lo, spread));
260 return (ldexpl(r.hi + adj, spread));
264 if (spread + ilogbl(r.hi) > -16383)
265 return (ldexpl(r.hi + adj, spread));
    [all...]
  /external/webkit/Source/WebCore/rendering/style/
ShadowData.h 53 ShadowData(int x, int y, int blur, int spread, ShadowStyle style, bool isWebkitBoxShadow, const Color& color)
57 , m_spread(spread)
77 int spread() const { return m_spread; } function in class:WebCore::ShadowData
ShadowData.cpp 62 int blurAndSpread = shadow->blur() + shadow->spread() + additionalOutlineSize;
RenderStyle.cpp 733 ASSERT(!val || (!val->spread() && val->style() == Normal));
    [all...]
  /external/aac/libSBRenc/include/
sbr_encoder.h 181 INT spread; /*!< Flag: usage of SBR spread. */ member in struct:sbrConfiguration
  /external/guava/guava/src/com/google/common/base/
CharMatcher.java 873 int spread = 1;
885 chars[pos - spread] = chars[pos];
888 spread++;
890 return new String(chars, 0, pos - spread);
    [all...]
  /external/srec/srec/include/
front.h 257 int create_spectrum_filter(front_freq *freqobj, int *freq, int *spread);
  /external/srec/srec/cfront/
spec_anl.c 322 int create_spectrum_filter(front_freq *freqobj, int *freq, int *spread)
329 /* Convert to FFT taps. Mark adjacent taps as well as taps within spread */
337 lo = (((freq[ii] - spread[ii]) * 2 * freqobj->fft.size) + freqobj->samplerate / 2) / freqobj->samplerate;
338 hi = (((freq[ii] + spread[ii]) * 2 * freqobj->fft.size) + freqobj->samplerate / 2) / freqobj->samplerate;
348 while (((jj+1)*freq_step)>>12 <= freq[ii]-spread[ii])
350 while (((jj-1)*freq_step>>12) < freq[ii]+spread[ii]){
  /frameworks/base/services/java/com/android/server/content/
SyncManager.java 484 long spread = maxValue - minValue; local
485 if (spread > Integer.MAX_VALUE) {
489 return minValue + random.nextInt((int)spread);
    [all...]
  /external/aac/libSBRenc/src/
sbr_encoder.cpp 487 config->spread = 1 ;
    [all...]
  /external/quake/quake/src/QW/progs/
weapons.qc 265 void(float shotcount, vector dir, vector spread) FireBullets =
  /external/webkit/Source/WebCore/page/animation/
AnimationBase.cpp 151 blendFunc(anim, from->spread(), to->spread(), progress),
    [all...]
  /external/llvm/lib/CodeGen/SelectionDAG/
ScheduleDAGRRList.cpp     [all...]
  /external/antlr/antlr-3.4/runtime/ActionScript/project/src/org/antlr/runtime/
BaseRecognizer.as 179 * generation within one method rather than spread among all of the
  /external/v8/test/mjsunit/
unicode-test.js     [all...]
  /external/webkit/Source/WebCore/rendering/
RenderBoxModelObject.cpp     [all...]
RenderLayer.cpp     [all...]
  /external/antlr/antlr-3.4/runtime/Delphi/Sources/Antlr3.Runtime/
Antlr.Runtime.pas 765 /// within one method rather than spread among all of the exception classes. This
    [all...]

Completed in 630 milliseconds

1 2