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

  /cts/tools/signature-tools/src/signature/compare/model/impl/
SigDelta.java 56 private static <T extends IDelta<?>> Set<T> getDeltas(Set<T> deltas,
59 for (T delta : deltas) {
67 public static <T extends IDelta<?>> Set<T> getAdded(Set<T> deltas) {
68 return getDeltas(deltas, DeltaType.ADDED);
71 public static <T extends IDelta<?>> Set<T> getRemoved(Set<T> deltas) {
72 return getDeltas(deltas, DeltaType.REMOVED);
75 public static <T extends IDelta<?>> Set<T> getChanged(Set<T> deltas) {
76 return getDeltas(deltas, DeltaType.CHANGED);
  /cts/tests/tests/view/src/android/view/cts/
FocusFinderTest.java 167 int[] deltas = new int[2]; local
168 View view = mFocusFinder.findNearestTouchable(mLayout, x, y, View.FOCUS_DOWN, deltas);
170 assertEquals(0, deltas[0]);
171 assertEquals(0, deltas[1]);
174 deltas = new int[2];
177 view = mFocusFinder.findNearestTouchable(mLayout, x, y, View.FOCUS_LEFT, deltas);
179 assertEquals(-1, deltas[0]);
180 assertEquals(0, deltas[1]);
183 deltas = new int[2];
186 view = mFocusFinder.findNearestTouchable(mLayout, x, y, View.FOCUS_RIGHT, deltas);
    [all...]
  /external/opencv/cv/include/
cvtypes.h 104 schar deltas[8][2]; member in struct:CvChainPtReader
109 #define CV_INIT_3X3_DELTAS( deltas, step, nch ) \
110 ((deltas)[0] = (nch), (deltas)[1] = -(step) + (nch), \
111 (deltas)[2] = -(step), (deltas)[3] = -(step) - (nch), \
112 (deltas)[4] = -(nch), (deltas)[5] = (step) - (nch), \
113 (deltas)[6] = (step), (deltas)[7] = (step) + (nch)
    [all...]
  /external/chromium/chrome/browser/safe_browsing/
prefix_set.cc 68 // consecutive deltas have been encoded.
76 // Continue the run of deltas.
100 std::vector<uint16> *deltas) {
101 DCHECK(index && deltas);
103 deltas_.swap(*deltas);
122 // Capture the upper bound of our target entry's deltas.
133 // Scan forward accumulating deltas while a match is possible.
143 // The deltas for this |index_| entry run to the next index entry,
144 // or the end of the deltas.
180 std::vector<uint16> deltas; local
    [all...]
prefix_set.h 6 // sorted and stored as 16-bit deltas from the previous prefix. An
98 // Maximum number of consecutive deltas to encode before generating
104 // |deltas| using |swap()|.
106 std::vector<uint16> *deltas);
109 // indicates a base prefix and where the deltas from that prefix
110 // begin in |deltas_|. The deltas for a pair end at the next pair's
114 // Deltas which are added to the prefix in |index_| to generate
115 // prefixes. Deltas are only valid between consecutive items from
119 // For debugging, used to verify that |index_| and |deltas| were not
  /prebuilt/linux-x86/toolchain/i686-linux-glibc2.7-4.4.3/sysroot/usr/include/X11/extensions/
lbxdeltastr.h 47 LBXDeltaElemPtr deltas; member in struct:_LBXDeltas
98 extern int LBXDecodeDelta ( LBXDeltasPtr pcache, xLbxDiffItem *deltas,
  /external/opencv/cv/src/
cvcontours.cpp 44 #define CV_INIT_3X3_DELTAS( deltas, step, nch ) \
45 ((deltas)[0] = (nch), (deltas)[1] = -(step) + (nch), \
46 (deltas)[2] = -(step), (deltas)[3] = -(step) - (nch), \
47 (deltas)[4] = -(nch), (deltas)[5] = (step) - (nch), \
48 (deltas)[6] = (step), (deltas)[7] = (step) + (nch))
75 reader->deltas[i][0] = (schar) icvCodeDeltas[i].x
537 int deltas[16]; local
651 int deltas[16]; local
709 int deltas[16]; local
    [all...]
  /cts/tools/signature-tools/src/signature/compare/
ApiComparator.java 299 Set<ITypeReferenceDelta<?>> deltas = local
310 deltas.add(new SigTypeDelta<ITypeReference>(type, null));
323 deltas.add(new SigTypeDelta<ITypeReference>(null, type));
327 return deltas.isEmpty() ? null : deltas;
470 Set<IMethodDelta> deltas = new HashSet<IMethodDelta>();
477 deltas.add(new SigMethodDelta(method, null));
484 deltas.add(delta);
494 deltas.add(new SigMethodDelta(null, method));
498 return deltas.isEmpty() ? null : deltas
    [all...]
  /external/freetype/src/truetype/
ttgxvar.c 107 /* Read a set of points to which the following deltas will apply. */
195 /* Read a set of deltas. These are packed slightly differently than */
204 /* An array of FT_Short containing the deltas for the affected */
205 /* points. (This only gets the deltas for one dimension. It will */
213 FT_Short *deltas = NULL; local
223 if ( FT_NEW_ARRAY( deltas, delta_cnt ) )
236 deltas[i++] = 0;
244 deltas[i++] = FT_GET_SHORT();
252 deltas[i++] = FT_GET_CHAR();
258 FT_FREE( deltas );
1135 FT_Short* deltas; local
    [all...]
ttgxvar.h 167 FT_Vector* *deltas,
ttgload.c 863 /* Deltas apply to the unscaled data. */
864 FT_Vector* deltas; local
871 &deltas,
878 outline->points[i].x += deltas[i].x;
879 outline->points[i].y += deltas[i].y;
882 FT_FREE( deltas );
1227 FT_Vector* deltas = NULL; local
    [all...]
  /frameworks/base/core/java/android/view/
FocusFinder.java 436 * @param deltas Offset from the <x, y> to the edge of the nearest view. Note that this array
440 public View findNearestTouchable(ViewGroup root, int x, int y, int direction, int[] deltas) {
491 deltas[0] = -distance;
494 deltas[0] = distance;
497 deltas[1] = -distance;
500 deltas[1] = distance;
  /external/opencv/cvaux/src/
cvsegment.cpp 339 int deltas[16]; local
345 CV_INIT_3X3_DELTAS( deltas, step, 1 );
346 memcpy( deltas + 8, deltas, 8 * sizeof( deltas[0] ));
396 i1 = i0 + deltas[s];
419 i4 = i3 + deltas[++s];
  /external/chromium/base/allocator/
allocator_unittests.cc 397 int deltas[] = { 1, -2, 4, -8, 16, -32, 64, -128 }; local
404 void* new_p = realloc(p, start_sizes[s] + deltas[d]);
409 void* new_p = realloc(p, start_sizes[s] - deltas[d]);
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/lint/
LintListDialog.java 353 IMarkerDelta[] deltas = event.findMarkerDeltas(AdtConstants.MARKER_LINT, true); local
354 if (deltas.length > 0) {
355 for (IMarkerDelta delta : deltas) {
  /packages/apps/Contacts/tests/src/com/android/contacts/
EntityDeltaListTests.java 113 static EntityDeltaList buildSet(EntityDelta... deltas) {
114 final EntityDeltaList set = EntityDeltaList.fromSingle(deltas[0]);
115 for (int i = 1; i < deltas.length; i++) {
116 set.add(deltas[i]);
  /external/freetype/src/sfnt/
ttcmap.c 813 FT_Byte *ends, *starts, *offsets, *deltas, *glyph_ids; local
873 deltas = starts + num_segs * 2;
874 offsets = deltas + num_segs * 2;
891 FT_Byte* p_delta = deltas;
    [all...]
  /external/opencv/cxcore/include/
cxtypes.h     [all...]
  /external/blktrace/btt/doc/
btt.tex 537 inactivity -- and one can gather a sense of deltas between the queueing
690 deltas, providing seek information which can then be plotted. The
696 \item Read data -- just seek deltas for reads
698 \item Write data -- just seek deltas for writes
    [all...]
  /external/icu4c/i18n/
regexcmp.cpp     [all...]
  /external/blktrace/doc/
blktrace.tex 502 -t & --track-ios & Display time deltas per IO \\ \hline
    [all...]
  /prebuilt/sdk/14/
android.jar 
  /prebuilt/sdk/4/
android.jar 
  /prebuilt/sdk/5/
android.jar 
  /prebuilt/sdk/6/
android.jar 

Completed in 788 milliseconds