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

1 2 3 4 5 6 7 8 91011>>

  /external/easymock/src/org/easymock/internal/matchers/
EqualsWithDelta.java 28 private final Number delta; field in class:EqualsWithDelta
30 public EqualsWithDelta(Number value, Number delta) {
32 this.delta = delta;
37 return expected.doubleValue() - delta.doubleValue() <= actualNumber
40 + delta.doubleValue();
44 buffer.append("eq(" + expected + ", " + delta + ")");
  /frameworks/base/core/java/android/content/res/
Configuration.java 308 * Copy the fields from delta into this Configuration object, keeping
310 * <var>delta</var> are ignored and not copied in to the current
315 public int updateFrom(Configuration delta) {
317 if (delta.fontScale > 0 && fontScale != delta.fontScale) {
319 fontScale = delta.fontScale;
321 if (delta.mcc != 0 && mcc != delta.mcc) {
323 mcc = delta.mcc;
325 if (delta.mnc != 0 && mnc != delta.mnc)
    [all...]
  /external/icu4c/layout/
GlyphPosnLookupProc.cpp 71 le_uint32 delta = 0; local
82 delta = subtable->process(glyphIterator, fontInstance);
90 delta = subtable->process(glyphIterator, fontInstance);
98 delta = subtable->process(glyphIterator, fontInstance);
106 delta = subtable->process(glyphIterator, fontInstance);
114 delta = subtable->process(glyphIterator, fontInstance);
122 delta = subtable->process(glyphIterator, fontInstance);
130 delta = subtable->process(this, glyphIterator, fontInstance, success);
138 delta = subtable->process(this, glyphIterator, fontInstance, success);
146 delta = subtable->process(this, lookupType, glyphIterator, fontInstance, success)
    [all...]
GlyphSubstLookupProc.cpp 58 le_uint32 delta = 0; local
69 delta = subtable->process(glyphIterator, fFilter);
77 delta = subtable->process(glyphIterator, success, fFilter);
85 delta = subtable->process(glyphIterator, fFilter);
93 delta = subtable->process(glyphIterator, fFilter);
101 delta = subtable->process(this, glyphIterator, fontInstance, success);
109 delta = subtable->process(this, glyphIterator, fontInstance, success);
117 delta = subtable->process(this, lookupType, glyphIterator, fontInstance, success);
125 return delta;
  /cts/tools/signature-tools/src/signature/io/html/
PackageOverviewPage.java 34 private final IPackageDelta delta; field in class:PackageOverviewPage
42 public PackageOverviewPage(IPackageDelta delta,
44 this.delta = delta;
51 .getRemoved(delta.getClassDeltas()));
55 .getAdded(delta.getClassDeltas()));
59 .getChanged(delta.getClassDeltas()));
66 template.setAttribute("package_delta", delta);
  /external/webkit/WebKit/mac/Misc/
WebNSImageExtras.h 35 - (void)_web_dissolveToFraction:(float)delta;
  /external/webkit/WebCore/platform/gtk/
WheelEventGtk.cpp 39 static const float delta = 1; local
44 // Docs say an upwards scroll (away from the user) has a positive delta
47 m_deltaY = delta;
50 m_deltaY = -delta;
53 m_deltaX = delta;
56 m_deltaX = -delta;
  /external/webkit/WebCore/platform/win/
WheelEventWin.cpp 68 PlatformWheelEvent::PlatformWheelEvent(HWND hWnd, const FloatSize& delta, const FloatPoint& location)
75 m_deltaX = delta.width();
76 m_deltaY = delta.height();
107 float delta = GET_WHEEL_DELTA_WPARAM(wParam) / static_cast<float>(WHEEL_DELTA); local
110 // |delta| after saving the original value on the wheel tick member.
111 m_wheelTicksX = delta;
113 delta = -delta;
120 m_wheelTicksY = delta;
123 m_deltaX = delta * static_cast<float>(horizontalScrollChars()) * cScrollbarPixelsPerLine
    [all...]
  /external/chromium/sdch/open-vcdiff/src/
vcdiff_test.sh 48 -dictionary $DICTIONARY_FILE -target $TARGET_FILE -delta $DELTA_FILE \
57 -delta $DELTA_FILE \
61 -delta $DELTA_FILE \
101 -delta $DELTA_FILE \
116 -delta $DELTA_FILE; } \
136 -delta $DELTA_FILE \
149 -delta $DELTA_FILE \
160 -delta $DELTA_FILE \
169 -delta $DELTA_FILE \
174 # Delta file not found
    [all...]
  /external/chromium/third_party/icu/source/test/perf/perldriver/
Format.pm 45 # Format a number, optionally with a +/- delta, to n significant
51 # @optional delta in seconds
59 my $delta = shift; # may be undef
62 if (defined($delta)) {
63 my $d = formatSigDig($sigdig, $delta*$mult);
64 # restrict PRECISION of delta to that of main number
70 # isn't rounding the $delta properly. Have to put
81 # Format a time, optionally with a +/- delta, to n significant
86 # @optional delta in seconds
93 my $delta = shift; # may be unde
    [all...]
  /external/icu4c/test/perf/perldriver/
Format.pm 45 # Format a number, optionally with a +/- delta, to n significant
51 # @optional delta in seconds
59 my $delta = shift; # may be undef
62 if (defined($delta)) {
63 my $d = formatSigDig($sigdig, $delta*$mult);
64 # restrict PRECISION of delta to that of main number
70 # isn't rounding the $delta properly. Have to put
81 # Format a time, optionally with a +/- delta, to n significant
86 # @optional delta in seconds
93 my $delta = shift; # may be unde
    [all...]
  /packages/apps/Calculator/src/com/android/calculator2/
CalculatorEditable.java 41 String delta = tb.subSequence(tbstart, tbend).toString(); local
42 return internalReplace(start, end, delta);
49 private SpannableStringBuilder internalReplace(int start, int end, String delta) {
50 if (!mLogic.acceptInsert(delta)) {
57 delta = delta.replace(ORIGINALS[i], REPLACEMENTS[i]);
60 int length = delta.length();
62 char text = delta.charAt(0);
96 return super.replace(start, end, delta);
  /cts/tools/signature-tools/src/signature/io/impl/
ToStringExternalizer.java 28 public void externalize(String location, IApiDelta delta)
34 if (delta == null) {
35 outputStreamWriter.write("No delta found!");
37 outputStreamWriter.write(delta.toString());
  /cts/tools/signature-tools/src/signature/io/
IApiDeltaExternalizer.java 24 void externalize(String location, IApiDelta delta) throws IOException;
  /external/webkit/WebCore/platform/graphics/
ImageObserver.h 40 virtual void decodedSizeChanged(const Image*, int delta) = 0;
  /external/chromium/base/
spin_wait.h 37 #define SPIN_FOR_TIMEDELTA_OR_UNTIL_TRUE(delta, expression) do { \
39 const base::TimeDelta kTimeout = delta; \
  /external/icu4c/i18n/
fphdlimp.cpp 55 FieldPositionOnlyHandler::shiftLast(int32_t delta) {
56 if (delta != 0 && pos.getField() != FieldPosition::DONT_CARE && pos.getBeginIndex() != -1) {
57 pos.setBeginIndex(delta + pos.getBeginIndex());
58 pos.setEndIndex(delta + pos.getEndIndex());
101 FieldPositionIteratorHandler::shiftLast(int32_t delta) {
102 if (U_SUCCESS(status) && delta != 0) {
106 vec->setElementAt(delta + vec->elementAti(i), i);
108 vec->setElementAt(delta + vec->elementAti(i), i);
fphdlimp.h 25 virtual void shiftLast(int32_t delta);
40 virtual void shiftLast(int32_t delta);
64 virtual void shiftLast(int32_t delta);
  /frameworks/base/media/libstagefright/codecs/m4v_h263/dec/src/
chvr_filter.cpp 42 int sum, delta; local
146 delta = (sum + *ptr_c + 4) >> 3; /* Average pixel values with rounding */
147 *(ptr_c) = (uint8) delta;
158 delta = (sum + *ptr_c + 4) >> 3;
159 *ptr_c = (uint8)(delta);
209 delta = (*(ptr - w1) - *(ptr)) >> 1;
210 if (delta >= 0)
212 if (delta >= A3_0)
214 delta = PV_MAX(A3_0, 0);
221 delta = 0
    [all...]
  /external/webkit/WebCore/platform/qt/
WheelEventQt.cpp 32 void PlatformWheelEvent::applyDelta(int delta, Qt::Orientation orientation)
35 m_deltaX = (delta / 120.0f);
39 m_deltaY = (delta / 120.0f);
69 applyDelta(e->delta(), e->orientation());
88 applyDelta(e->delta(), e->orientation());
  /frameworks/base/media/libstagefright/codecs/aacdec/
sbr_get_noise_floor_data.cpp 144 Int32 delta; local
193 delta = sbr_decode_huff_cw(hcb_noiseF, hBitBuf); /*
194 * -31 < delta < 31
195 * -24 < delta < 24 COUPLING_BAL (incl. <<1)
197 h_frame_data->sbrNoiseFloorLevel_man[k+j] = delta << envDataTableCompFactor;
205 delta = sbr_decode_huff_cw(hcb_noise, hBitBuf); /*
206 * -31 < delta < 31
207 * -24 < delta < 24 COUPLING_BAL (incl. <<1)
209 h_frame_data->sbrNoiseFloorLevel_man[k+j] = delta << envDataTableCompFactor;
  /external/chromium/third_party/icu/source/test/intltest/
punyref.c 109 punycode_uint delta, punycode_uint numpoints, int firsttime )
113 delta = firsttime ? delta / damp : delta >> 1;
114 /* delta >> 1 is a faster way of doing delta / 2 */
115 delta += delta / numpoints;
117 for (k = 0; delta > ((base - tmin) * tmax) / 2; k += base) {
118 delta /= base - tmin
133 punycode_uint n, delta, h, b, out, max_out, bias, j, m, q, k, t; local
    [all...]
  /external/icu4c/test/intltest/
punyref.c 109 punycode_uint delta, punycode_uint numpoints, int firsttime )
113 delta = firsttime ? delta / damp : delta >> 1;
114 /* delta >> 1 is a faster way of doing delta / 2 */
115 delta += delta / numpoints;
117 for (k = 0; delta > ((base - tmin) * tmax) / 2; k += base) {
118 delta /= base - tmin
133 punycode_uint n, delta, h, b, out, max_out, bias, j, m, q, k, t; local
    [all...]
  /external/proguard/src/proguard/optimize/peephole/
GotoCommonCodeReplacer.java 121 for (int delta = 0; delta <= commonCount; delta++)
123 int deleteOffset = offset - delta;
167 for (int delta = 1;
168 delta <= offset1 &&
169 delta <= offset2 &&
170 offset2 - delta != offset1;
171 delta++)
173 int newOffset1 = offset1 - delta;
    [all...]
  /dalvik/dx/src/com/android/dx/dex/code/
VariableSizeInsn.java 46 public final DalvInsn withRegisterOffset(int delta) {
47 return withRegisters(getRegisters().withOffset(delta));

Completed in 855 milliseconds

1 2 3 4 5 6 7 8 91011>>