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

1 2 3 4 5 6 7 8 91011>>

  /cts/tools/signature-tools/templates/delta/
deltas.stg 4 ADDED(delta) ::= "Added $ElementType(element=delta.to)$"
7 REMOVED(delta) ::= "Removed $ElementType(element=delta.from)$"
10 CHANGED(delta) ::= "$DeltaType(delta)$"
13 DeltaType(delta) ::= "$({$delta.class.simpleName$})(delta)$"
16 DeltaTypeSwitch(delta) ::= "$delta:({$delta.type$})(delta)$
    [all...]
  /cts/tools/signature-tools/templates/
DeltaTableRow.st 5 <td class="delta">
6 $DeltaTypeSwitch(delta=it)$
  /cts/tools/signature-tools/src/signature/compare/model/
IParameterizedTypeDelta.java 24 * {@code IParameterizedTypeDelta} models the delta between two
31 * Returns a raw type delta or {@code null} if no delta is available.
33 * @return a raw type delta, maybe {@code null}
38 * Returns a owner type delta or {@code null} if no delta is available.
40 * @return a owner type delta, maybe {@code null}
ITypeVariableDefinitionDelta.java 22 * {@code ITypeVariableDefinitionDelta} models the delta between two
29 * Returns an upper bound delta or {@code null} if no delta is available.
31 * @return an upper bound delta, maybe {@code null}
36 * Returns a generic declaration delta or {@code null} if no delta is
39 * @return a generic declaration delta, maybe {@code null}
IWildcardTypeDelta.java 22 * {@code IWildcardTypeDelta} models the delta between two
28 * Returns the upper bound delta or {@code null} if no delta is available.
30 * @return the upper bound delta, maybe {@code null}
35 * Returns the lower bound delta or {@code null} if no delta is available.
37 * @return the lower bound delta, maybe {@code null}
IAnnotationElementDelta.java 22 * {@code IAnnotationElementDelta} models the delta between two
28 * Returns a value delta or {@code null} if no delta is available.
30 * @return a value delta, maybe {@code null}
IAnnotationFieldDelta.java 22 * {@code IAnnotationFieldDelta} models the delta between two
28 * Returns the default value delta or {@code null} if no delta is available.
30 * @return the default value delta, maybe {@code null}
IArrayTypeDelta.java 22 * {@code IArrayTypeDelta} models the delta between two {@link IArrayType}
28 * Returns a component type delta or {@code null} if no delta is available.
30 * @return a component type delta, maybe {@code null}
IMethodDelta.java 22 * {@code IMethodDelta} models the delta between two {@link IMethod} subclass
28 * Returns a return type delta or {@code null} if no delta is available.
30 * @return a return type delta, maybe {@code null}
IParameterDelta.java 22 * {@code IParameterDelta} models the delta between two {@link IParameter}
29 * Returns a parameter type delta or {@code null} if no delta is available.
31 * @return a parameter type delta, maybe {@code null}
IDelta.java 20 * {@code IDelta} is the common base interface for all delta model elements. It
21 * describes a delta from a "from" element to a "to" element.
29 * Returns the type of this delta.
31 * @return the type of this delta
IMemberDelta.java 24 * {@code IMemberDelta} models the delta between two {@link IField} subclass
31 * Returns a type delta or {@code null} if no delta is available.
33 * @return a type delta, maybe {@code null}
IUpperBoundsDelta.java 25 * {@code IUpperBoundsDelta} models the delta between two {@link List
34 * Returns the upper bound delta of the first upper bound or {@code null} if
35 * no delta is available.
37 * @return the upper bound delta of the first upper bound, maybe {@code
  /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 + ")");
  /external/icu4c/layout/
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;
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...]
GlyphIterator.h 39 le_bool next(le_uint32 delta = 1);
40 le_bool prev(le_uint32 delta = 1);
78 le_bool nextInternal(le_uint32 delta = 1);
79 le_bool prevInternal(le_uint32 delta = 1);
  /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);
  /cts/tests/tests/view/src/android/view/cts/
MotionEventTest.java 50 private static final float DELTA = 0.01f;
155 assertEquals(X_3F, mMotionEvent1.getX(), DELTA);
156 assertEquals(Y_4F, mMotionEvent1.getY(), DELTA);
157 assertEquals(X_3F, mMotionEvent1.getRawX(), DELTA);
158 assertEquals(Y_4F, mMotionEvent1.getRawY(), DELTA);
162 assertEquals(PRESSURE_1F, mMotionEvent1.getPressure(), DELTA);
163 assertEquals(SIZE_1F, mMotionEvent1.getSize(), DELTA);
164 assertEquals(1.0f, mMotionEvent1.getXPrecision(), DELTA);
165 assertEquals(1.0f, mMotionEvent1.getYPrecision(), DELTA);
181 assertEquals(motionEvent.getX(), mMotionEvent1.getX(), DELTA);
    [all...]
  /frameworks/base/core/java/android/content/res/
Configuration.java 307 * Copy the fields from delta into this Configuration object, keeping
309 * <var>delta</var> are ignored and not copied in to the current
314 public int updateFrom(Configuration delta) {
316 if (delta.fontScale > 0 && fontScale != delta.fontScale) {
318 fontScale = delta.fontScale;
320 if (delta.mcc != 0 && mcc != delta.mcc) {
322 mcc = delta.mcc;
324 if (delta.mnc != 0 && mnc != delta.mnc)
    [all...]
  /cts/tests/tests/hardware/src/android/hardware/cts/
GeomagneticFieldTest.java 34 private static final float DELTA = 1.0f;
82 assertEquals(16.12f, geomagneticField.getDeclination(), DELTA);
83 assertEquals(88.04f, geomagneticField.getInclination(), DELTA);
84 assertEquals(56768.22f, geomagneticField.getFieldStrength(), DELTA);
85 assertEquals(1943.81f, geomagneticField.getHorizontalStrength(), DELTA);
86 assertEquals(1867.41f, geomagneticField.getX(), DELTA);
87 assertEquals(539.61f, geomagneticField.getY(), DELTA);
88 assertEquals(56734.93f, geomagneticField.getZ(), DELTA);
  /cts/tools/signature-tools/
README.txt 11 #Delta model : A model to represent differences between two signature models
13 #Comparator : Put two signature models into the comparator and you get a delta model
15 #Report engine : Translates a delta model to a html output based on templates (utilizing the StringTemplate framework)
32 | | model : the delta model
  /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());
  /frameworks/base/libs/rs/java/Fountain/res/raw/
fountain.c 24 vec2Rand((float *)&np->delta.x, rMax);
38 float dy = p->delta.y + 0.15f;
43 p->delta.y = dy;
44 p->position.x += p->delta.x;
  /external/opencore/baselibs/media_data_structures/src/
time_comparison_utils.cpp 23 OSCL_EXPORT_REF bool PVTimeComparisonUtils::IsEarlier(uint32 aTimeA, uint32 aTimeB, uint32& delta)
25 delta = aTimeB - aTimeA;
26 if (delta < WRAP_THRESHOLD)
28 delta = 0 - delta;

Completed in 110 milliseconds

1 2 3 4 5 6 7 8 91011>>