HomeSort by relevance Sort by last modified time
    Searched defs:unused (Results 26 - 50 of 798) sorted by null

12 3 4 5 6 7 8 91011>>

  /external/libhevc/decoder/
ihevcd_nal.c 291 WORD32 unused; local
293 UNUSED(unused);
295 unused = ihevcd_bits_get(ps_bitstrm, 1);
301 unused = ihevcd_bits_get(ps_bitstrm, 6);
  /external/libmojo/mojo/edk/system/
platform_handle_dispatcher_unittest.cc 29 base::FilePath unused; local
31 CreateAndOpenTemporaryFileInDir(temp_dir.GetPath(), &unused));
71 base::FilePath unused; local
73 CreateAndOpenTemporaryFileInDir(temp_dir.GetPath(), &unused));
shared_buffer_dispatcher_unittest.cc 94 MojoCreateSharedBufferOptions unused; local
97 &options, &unused));
106 MojoCreateSharedBufferOptions unused; local
109 &options, &unused));
  /external/mockito/src/main/java/org/mockito/internal/debugging/
InvocationsPrinter.java 40 LinkedList<Stubbing> unused = ListUtil.filter(stubbings, new ListUtil.Filter<Stubbing>() { local
46 if (unused.isEmpty()) {
49 sb.append("[Mockito] Unused stubbings of: ").append(mock).append("\n");
WarningsFinder.java 29 Invocation unused = unusedIterator.next(); local
33 if(unstubbed.hasSimilarMethod(unused)) {
34 findingsListener.foundStubCalledWithDifferentArgs(unused, unstubbed);
  /external/mockito/src/main/java/org/mockito/internal/junit/
UnnecessaryStubbingsReporter.java 27 Collection<Invocation> unused = new UnusedStubbingsFinder().getUnusedStubbingsByLocation(mocks); local
28 if (unused.isEmpty()) {
32 //Oups, there are unused stubbings
35 Reporter.formatUnncessaryStubbingException(testClass, unused)));
UnusedStubbings.java 17 * Contains unused stubbings, knows how to format them
21 private final Collection<? extends Stubbing> unused; field in class:UnusedStubbings
23 UnusedStubbings(Collection<? extends Stubbing> unused) {
24 this.unused = unused;
28 if (unused.isEmpty()) {
34 for (Stubbing candidate : unused) {
36 hint.appendLine(x++, ". Unused ", candidate.getInvocation().getLocation());
43 return unused.size();
47 return unused.toString()
    [all...]
UnusedStubbingsFinder.java 17 * Finds unused stubbings
22 * Gets all unused stubbings for given set of mock objects, in order
27 List<Stubbing> unused = filter(stubbings, new Filter<Stubbing>() { local
33 return new UnusedStubbings(unused);
37 * Gets unused stubbings per location. This method is less accurate than {@link #getUnusedStubbings(Iterable)}.
42 * In certain scenarios (detecting unused stubbings by JUnit runner), we need this exact level of accuracy.
59 //2nd pass, collect unused stubbings by location
61 //Also, using map to deduplicate reported unused stubbings
62 // if unused stubbing appear in the setup method / constructor we don't want to report it per each test case
  /external/slf4j/slf4j-api/src/test/java/org/slf4j/helpers/
MyRandom.java 33 long unused; field in class:MyRandom
48 unused = y >>> (48 - bits); // just exercise the >>> operator
  /external/tensorflow/tensorflow/contrib/verbs/
rdma_rendezvous_mgr.cc 52 string src_name, dst_name, unused; local
54 &unused) ||
56 &unused)) {
  /external/tensorflow/tensorflow/core/kernels/
count_up_to_op.cc 87 PersistentTensor unused; variable
90 dtype_, TensorShape({}), &unused, &tmp, attr));
  /external/tensorflow/tensorflow/core/ops/
resource_variable_ops.cc 98 ShapeHandle unused; local
100 c->Merge(handle_shape_and_type.shape, value_shape, &unused));
157 ShapeHandle unused;
159 c->WithRankAtLeast(handle_shape_and_type.shape, 1, &unused));
image_ops.cc 35 DimensionHandle unused; local
36 TF_RETURN_IF_ERROR(c->WithValue(c->Dim(size, 0), 2, &unused));
70 ShapeHandle unused; local
71 TF_RETURN_IF_ERROR(c->WithRank(c->input(0), 0, &unused));
91 ShapeHandle unused; local
92 TF_RETURN_IF_ERROR(c->WithRank(c->input(0), 3, &unused));
207 ShapeHandle unused;
209 TF_RETURN_IF_ERROR(c->WithRank(c->input(1), 1, &unused));
210 TF_RETURN_IF_ERROR(c->WithValue(c->Dim(unused, 0), 2, &unused_dim));
241 ShapeHandle unused;
    [all...]
  /external/tensorflow/tensorflow/python/framework/
test_ops.cc 187 StubResource* unused; variable
189 ctx, HandleFromInput(ctx, 0), &unused));
  /frameworks/base/core/jni/
android_database_SQLiteDebug.cpp 46 int unused; local
48 sqlite3_status(SQLITE_STATUS_MEMORY_USED, &memoryUsed, &unused, 0);
49 sqlite3_status(SQLITE_STATUS_MALLOC_SIZE, &unused, &largestMemAlloc, 0);
50 sqlite3_status(SQLITE_STATUS_PAGECACHE_OVERFLOW, &pageCacheOverflow, &unused, 0);
  /hardware/libhardware/modules/camera/3_4/metadata/
map_converter_test.cpp 90 int32_t unused; local
91 EXPECT_EQ(dut_->MetadataToV4L2(initial, &unused), err);
106 int unused; local
107 ASSERT_EQ(dut_->V4L2ToMetadata(100, &unused), -EINVAL);
ranged_converter_test.cpp 82 int32_t unused; local
83 EXPECT_EQ(dut_->MetadataToV4L2(initial, &unused), err);
tagged_control_delegate_test.cpp 71 uint8_t unused = 0; local
72 ASSERT_EQ(dut_->GetValue(&unused), err);
tagged_control_options_test.cpp 98 uint8_t unused; local
99 EXPECT_EQ(dut_->DefaultValueForTemplate(template_id, &unused), err);
v4l2_control_delegate_test.cpp 68 uint8_t unused = 1; local
69 ASSERT_EQ(dut_->GetValue(&unused), err);
76 uint8_t unused = 1; local
77 ASSERT_EQ(dut_->GetValue(&unused), err);
  /external/boringssl/src/fipstools/
cavp_keywrap_test.cc 66 std::string count, unused, in_label = ctx->encrypt ? "P" : "C", local
70 if (!t->GetInstruction(&unused, "PLAINTEXT LENGTH") ||
  /external/curl/src/
tool_getpass.c 76 int unused; /* unused */ member in struct:_iosb
  /external/guice/core/test/com/google/inject/internal/
UniqueAnnotationsTest.java 29 @UniqueAnnotations.Internal(31) public Void unused; field in class:UniqueAnnotationsTest
  /external/skia/tools/bookmaker/
cataloger.cpp 55 string unused; local
58 if (!iter.next(&unused)) {
  /external/skqp/tools/bookmaker/
cataloger.cpp 55 string unused; local
58 if (!iter.next(&unused)) {

Completed in 508 milliseconds

12 3 4 5 6 7 8 91011>>