HomeSort by relevance Sort by last modified time
    Searched defs:unused (Results 1 - 25 of 1265) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/compiler-rt/test/asan/TestCases/Linux/
globals-gc-sections.cc 9 int (*unused)() = undefined; variable
  /external/clang/test/CoverageMapping/
templates.cpp 4 void unused(T x) { function
  /external/clang/test/Preprocessor/
warn-macro-unused.c 3 #include "warn-macro-unused.h"
5 # 1 "warn-macro-unused-fake-header.h" 1
7 # 5 "warn-macro-unused.c" 2
9 #define unused // expected-warning {{macro is not used}} macro
10 #define unused macro
11 unused
  /external/clang/test/Analysis/inlining/
eager-reclamation-path-notes.cpp 30 int unused = 1; local
31 (void)unused;
  /external/clang/test/CodeGenCXX/
lambda-expressions.cpp 3 // CHECK-NOT: @unused
4 auto unused = [](int i) { return i+1; }; variable
  /external/r8/src/test/examples/shaking3/
A.java 19 public void unused() { } method in class:A
  /prebuilts/go/darwin-x86/test/fixedbugs/
issue6269.go 23 func unused() { func
  /prebuilts/go/linux-x86/test/fixedbugs/
issue6269.go 23 func unused() { func
  /external/clang/test/SemaCXX/
warn-unused-attribute.cpp 13 Test unused; // expected-warning {{unused variable 'unused'}} local
  /prebuilts/misc/darwin-x86_64/sdl2/include/SDL2/
SDL_keyboard.h 52 Uint32 unused; member in struct:SDL_Keysym
  /prebuilts/misc/windows/sdl2/i686-w64-mingw32/include/SDL2/
SDL_keyboard.h 52 Uint32 unused; member in struct:SDL_Keysym
  /prebuilts/misc/windows/sdl2/include/
SDL_keyboard.h 52 Uint32 unused; member in struct:SDL_Keysym
  /prebuilts/misc/windows/sdl2/x86_64-w64-mingw32/include/SDL2/
SDL_keyboard.h 52 Uint32 unused; member in struct:SDL_Keysym
  /external/libchrome/sandbox/linux/system_headers/
arm64_linux_ucontext.h 21 uint8_t unused[1024 / 8 - sizeof(sigset_t)]; member in struct:ucontext_t
  /external/mockito/src/main/java/org/mockito/internal/debugging/
WarningsCollector.java 25 List<Invocation> unused = new UnusedStubsFinder().find(createdMocks); local
29 return new WarningsPrinterImpl(unused, allInvocationMatchers, false).print();
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: " + mock).append("\n");
  /external/r8/src/test/examples/shaking2/
UnusedSubclass.java 8 private int unused; field in class:UnusedSubclass
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/
hstring.h 29 int unused; member in struct:HSTRING__
  /external/mockito/src/main/java/org/mockito/internal/junit/
UniversalTestListener.java 53 UnusedStubbings unused = new UnusedStubbingsFinder().getUnusedStubbings(mocks); local
54 unused.reportUnused();
65 //print unused stubbings only when test succeeds to avoid reporting multiple problems and confusing users
UnnecessaryStubbingsReporter.java 27 Collection<Invocation> unused = new UnusedStubbingsFinder().getUnusedStubbingsByLocation(mocks); local
28 if (unused.size() == 0) {
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...]
  /external/boringssl/src/crypto/rand_extra/
rand_extra.c 23 uint8_t unused; local
24 RAND_bytes(&unused, sizeof(unused));
  /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.path(), &unused));
71 base::FilePath unused; local
73 CreateAndOpenTemporaryFileInDir(temp_dir.path(), &unused));
  /external/mockito/src/main/java/org/mockito/internal/invocation/
UnusedStubsFinder.java 19 * Finds all unused stubs for given mocks
24 List<Invocation> unused = new LinkedList<Invocation>(); local
30 unused.add(s.getInvocation());
34 return unused;

Completed in 1604 milliseconds

1 2 3 4 5 6 7 8 91011>>