HomeSort by relevance Sort by last modified time
    Searched full:difference (Results 126 - 150 of 7042) sorted by null

1 2 3 4 56 7 8 91011>>

  /external/guava/guava-tests/test/com/google/common/collect/
SetOperationsTest.java 38 * {@link Sets#difference}.
189 return Sets.difference(
200 return Sets.difference(Sets.newHashSet("a"), Sets.newHashSet("a"));
212 return Sets.difference(set, other);
226 return Sets.difference(set, other);
236 return Sets.difference(
247 return Sets.difference(
304 Set<String> goodFriends = Sets.difference(friends, enemies);
308 = Sets.difference(friends, enemies).immutableCopy();
310 = Sets.difference(friends, enemies).copyInto(new HashSet<String>())
    [all...]
  /cts/tests/tests/graphics/src/android/graphics/cts/
RegionTest.java 27 // DIFFERENCE
343 assertFalse(mRegion.op(rect1, Region.Op.DIFFERENCE));
353 // DIFFERENCE, Region with rectangle
359 assertTrue(mRegion.op(rect1, Region.Op.DIFFERENCE));
364 assertTrue(mRegion.op(rect3, Region.Op.DIFFERENCE));
371 assertTrue(mRegion.op(rect4, Region.Op.DIFFERENCE));
377 assertTrue(mRegion.op(rect5, Region.Op.DIFFERENCE));
487 // reverse difference the first region from the op region
491 // reverse difference null rectangle
494 // 1. reverse difference rectangle inside this regio
    [all...]
  /ndk/tests/device/issue42891-boost-1_52/jni/boost/boost/iterator/
iterator_adaptor.hpp 177 , class Difference
214 Difference, iterator_difference<Base>
250 // Difference - the difference_type of the resulting iterator. If not
259 , class Difference = use_default
263 Derived, Base, Value, Traversal, Reference, Difference
270 Derived, Base, Value, Traversal, Reference, Difference
287 typedef iterator_adaptor<Derived,Base,Value,Traversal,Reference,Difference> iterator_adaptor_;
  /toolchain/binutils/binutils-2.25/gas/config/
tc-hppa.h 146 /* We need to be able to make relocations involving the difference of
147 two symbols. This includes the difference of two symbols when
150 We allow the difference of two symbols when the subtract symbol is
153 This has some limitations. Difference expressions only work between
156 difference expression can't be used between text and data symbols,
165 /* Difference expressions for the 64-bit HP-UX target have the same
235 can't use difference expressions during CFI generation. */
  /external/icu/icu4c/source/test/cintltst/
bocu1tst.c 47 * Optimize the difference-taking for runs of Unicode text within
94 /* The difference value range for single-byters. */
98 /* The difference value range for double-byters. */
102 /* The difference value range for 3-byters. */
154 * but are also used as trail bytes in difference encoding
162 * to trail byte values 0..19 (0..0x13) as used in the difference calculation.
185 * from trail byte values 0..19 (0..0x13) as used in the difference calculation
271 * Encode a difference -0x10ffff..0x10ffff in 1..4 bytes
277 * @param diff difference value -0x10ffff..0x10ffff
392 * are encoded with the difference c-pre
    [all...]
  /prebuilts/misc/common/swig/include/2.0.11/octave/
octcontainer.swg 111 template <class Sequence, class Difference>
113 getpos(Sequence* self, Difference i) {
119 template <class Sequence, class Difference>
121 cgetpos(const Sequence* self, Difference i) {
127 template <class Sequence, class Difference>
129 getslice(const Sequence* self, Difference i, Difference j) {
145 template <class Sequence, class Difference, class InputSeq>
147 setslice(Sequence* self, Difference i, Difference j, const InputSeq& v)
    [all...]
  /external/autotest/client/cros/chameleon/
screen_comparison.py 29 if a pixel difference exceeds this margin, will treat as a wrong
60 # which may lead to ValueError raised by ImageChops.difference().
81 diff_image = ImageChops.difference(*images)
88 logging.debug('Histogram of difference: %r', histogram)
120 diff_image = ImageChops.difference(*images)
  /external/llvm/lib/Analysis/
ScalarEvolutionAliasAnalysis.cpp 42 // If something is known about the difference between the two addresses,
50 // Compute the difference between the two pointers.
53 // Test whether the difference is known to be great enough that memory of
64 // Compute the difference between the two pointers.
67 // Test whether the difference is known to be great enough that memory of
  /external/srtp/googlepatches/
google-11-srtp-replay-fix.patch 22 - difference = seq_num_max - s + local_seq;
23 + // The return value is the relative difference from local_seq to s.
27 + // will end up positive difference and rdbx_check would pass. Hence after
32 + difference = s - local_seq - seq_num_max;
35 difference = s - local_seq;
  /cts/apps/CtsVerifier/include/colorchecker/
vec3.h 81 float difference = 0.f; local
82 difference = static_cast<float>(mRed - param.r()) *
88 return difference;
  /cts/tests/tests/uirendering/src/android/uirendering/cts/bitmapcomparers/
MeanSquaredComparer.java 87 float difference = idealSum - givenSum; local
88 totalError += (difference * difference);
  /external/bison/lib/
timevar.h 48 absolute time or a time difference; in the former case, the time
49 base is undefined, except that the difference between two times
50 produces a valid time difference. */
  /external/chromium-trace/catapult/docs/
promises-vs-tasks.md 11 A first important difference is that tasks cannot be used with asynchronous operations. In a `Promise`, you can chain an asynchronous operation by calling `then(functionReturningAPromise)`. On the other hand, if you create a task from `functionReturningAPromise` and call `after()` on it, then the subsequent task will execute before the promise is resolved.
13 Another difference is that it's possible to run a task in a synchronous way. Calling `run()` on a task will block until the first task in the chain is completed. This is made possible by the fact that all operations in the task queue are synchronous. Compare this to `Promise` which doesn't have a `run` method and for which execution is scheduled as soon as the promise is created.
24 An important difference, though is a task can only have one `after()` task. Trying to do `taskA.after(taskB); taskA.after(taskC);` will result in a runtime error. Promises have no such limitations.
  /external/netperf/src/
hist.h 17 Given a time difference in microseconds, increment one of 61
114 HIST_add - add a time difference to a histogram. Time should be in
155 delta_micro - calculate the difference in microseconds between two
  /external/srtp/crypto/include/
rdbx.h 79 * index to which s corresponds, and returns the difference between
97 rdbx_check(const rdbx_t *rdbx, int difference);
168 * difference between *guess and *local
  /frameworks/base/docs/html/sdk/api_diff/19/changes/
classes_index_removals.html 8 <meta name="keywords" content="diff, jdiff, javadiff, java diff, java difference, API difference, difference between two APIs, API diff, Javadoc, doclet">
constructors_index_removals.html 8 <meta name="keywords" content="diff, jdiff, javadiff, java diff, java difference, API difference, difference between two APIs, API diff, Javadoc, doclet">
fields_index_removals.html 8 <meta name="keywords" content="diff, jdiff, javadiff, java diff, java difference, API difference, difference between two APIs, API diff, Javadoc, doclet">
jdiff_topleftframe.html 8 <meta name="keywords" content="diff, jdiff, javadiff, java diff, java difference, API difference, difference between two APIs, API diff, Javadoc, doclet">
packages_index_additions.html 8 <meta name="keywords" content="diff, jdiff, javadiff, java diff, java difference, API difference, difference between two APIs, API diff, Javadoc, doclet">
packages_index_removals.html 8 <meta name="keywords" content="diff, jdiff, javadiff, java diff, java difference, API difference, difference between two APIs, API diff, Javadoc, doclet">
  /frameworks/base/docs/html/sdk/api_diff/20/changes/
alldiffs_index_removals.html 8 <meta name="keywords" content="diff, jdiff, javadiff, java diff, java difference, API difference, difference between two APIs, API diff, Javadoc, doclet">
classes_index_removals.html 8 <meta name="keywords" content="diff, jdiff, javadiff, java diff, java difference, API difference, difference between two APIs, API diff, Javadoc, doclet">
constructors_index_additions.html 8 <meta name="keywords" content="diff, jdiff, javadiff, java diff, java difference, API difference, difference between two APIs, API diff, Javadoc, doclet">
constructors_index_all.html 8 <meta name="keywords" content="diff, jdiff, javadiff, java diff, java difference, API difference, difference between two APIs, API diff, Javadoc, doclet">

Completed in 994 milliseconds

1 2 3 4 56 7 8 91011>>