/frameworks/compile/libbcc/bcinfo/Wrap/ |
in_memory_wrapper_input.cpp | 29 size_t InMemoryWrapperInput::Read(uint8_t* buffer, size_t wanted) { 36 while (found < wanted) {
|
file_wrapper_input.cpp | 35 size_t FileWrapperInput::Read(uint8_t* buffer, size_t wanted) { 36 size_t found = fread((char*) buffer, 1, wanted, _file);
|
/external/mockito/src/org/mockito/internal/verification/checkers/ |
AtLeastXNumberOfInvocationsInOrderChecker.java | 29 public void check(List<Invocation> invocations, InvocationMatcher wanted, int wantedCount) { 30 List<Invocation> chunk = finder.findAllMatchingUnverifiedChunks(invocations, wanted, orderingContext); 36 reporter.tooLittleActualInvocationsInOrder(new AtLeastDiscrepancy(wantedCount, actualCount), wanted, lastLocation); 39 invocationMarker.markVerifiedInOrder(chunk, wanted, orderingContext);
|
NonGreedyNumberOfInvocationsInOrderChecker.java | 35 public void check(List<Invocation> invocations, InvocationMatcher wanted, int wantedCount, InOrderContext context) { 39 Invocation next = finder.findFirstMatchingUnverifiedInvocation( invocations, wanted, context ); 41 reporter.tooLittleActualInvocationsInOrder(new Discrepancy(wantedCount, actualCount), wanted, lastLocation ); 43 marker.markVerified( next, wanted );
|
/frameworks/compile/libbcc/include/bcinfo/Wrap/ |
file_wrapper_input.h | 34 virtual size_t Read(uint8_t* buffer, size_t wanted);
|
in_memory_wrapper_input.h | 34 virtual size_t Read(uint8_t* buffer, size_t wanted);
|
wrapper_input.h | 36 virtual size_t Read(uint8_t* buffer, size_t wanted) = 0;
|
/external/mockito/src/org/mockito/exceptions/ |
Reporter.java | 289 public void argumentsAreDifferent(String wanted, String actual, Location actualLocation) { 290 String message = join("Argument(s) are different! Wanted:", 291 wanted, 300 throw JUnitTool.createArgumentsAreDifferentException(message, wanted, actual); 306 public void wantedButNotInvoked(DescribedInvocation wanted) { 307 throw new WantedButNotInvoked(createWantedButNotInvokedMessage(wanted)); 310 public void wantedButNotInvoked(DescribedInvocation wanted, List<? extends DescribedInvocation> invocations) { 325 String message = createWantedButNotInvokedMessage(wanted); 329 private String createWantedButNotInvokedMessage(DescribedInvocation wanted) { 331 "Wanted but not invoked:" [all...] |
/external/chromium_org/third_party/WebKit/Tools/Scripts/ |
do-webcore-rename | 72 find(\&wanted, "Source/JavaScriptCore"); 73 find(\&wanted, "Source/WebCore"); 74 find(\&wanted, "Source/WebKit"); 75 find(\&wanted, "Source/WebKit2"); 76 find(\&wanted, "Tools/DumpRenderTree"); 78 sub wanted subroutine
|
find-extra-includes | 34 find(\&wanted, @ARGV ? @ARGV : "."); 39 sub wanted subroutine
|
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/distutils/tests/ |
test_file_util.py | 41 wanted = [] 42 self.assertEqual(self._logs, wanted) 48 wanted = ['moving %s -> %s' % (self.source, self.target)] 49 self.assertEqual(self._logs, wanted) 58 wanted = ['moving %s -> %s' % (self.source, self.target_dir)] 59 self.assertEqual(self._logs, wanted)
|
test_dir_util.py | 40 wanted = [] 41 self.assertEqual(self._logs, wanted) 45 wanted = ['creating %s' % self.root_target, 47 self.assertEqual(self._logs, wanted) 51 wanted = ["removing '%s' (and everything under it)" % self.root_target] 52 self.assertEqual(self._logs, wanted) 73 wanted = ['creating %s' % self.root_target] 75 self.assertEqual(self._logs, wanted) 97 wanted = ['copying %s -> %s' % (a_file, self.target2)] 99 self.assertEqual(self._logs, wanted) [all...] |
test_spawn.py | 18 for (args, wanted) in ((['with space', 'nospace'], 23 self.assertEqual(res, wanted)
|
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/distutils/tests/ |
test_file_util.py | 41 wanted = [] 42 self.assertEqual(self._logs, wanted) 48 wanted = ['moving %s -> %s' % (self.source, self.target)] 49 self.assertEqual(self._logs, wanted) 58 wanted = ['moving %s -> %s' % (self.source, self.target_dir)] 59 self.assertEqual(self._logs, wanted)
|
test_dir_util.py | 40 wanted = [] 41 self.assertEqual(self._logs, wanted) 45 wanted = ['creating %s' % self.root_target, 47 self.assertEqual(self._logs, wanted) 51 wanted = ["removing '%s' (and everything under it)" % self.root_target] 52 self.assertEqual(self._logs, wanted) 73 wanted = ['creating %s' % self.root_target] 75 self.assertEqual(self._logs, wanted) 97 wanted = ['copying %s -> %s' % (a_file, self.target2)] 99 self.assertEqual(self._logs, wanted) [all...] |
test_spawn.py | 18 for (args, wanted) in ((['with space', 'nospace'], 23 self.assertEqual(res, wanted)
|
/external/mockito/src/org/mockito/exceptions/verification/junit/ |
ArgumentsAreDifferent.java | 19 public ArgumentsAreDifferent(String message, String wanted, String actual) { 20 super(message, wanted, actual);
|
/external/mockito/src/org/mockito/internal/verification/ |
AtMost.java | 33 InvocationMatcher wanted = data.getWanted(); local 36 List<Invocation> found = finder.findInvocations(invocations, wanted); 42 invocationMarker.markVerified(found, wanted);
|
Calls.java | 36 InvocationMatcher wanted = data.getWanted(); local 39 missingInvocation.check( allInvocations, wanted, this, data.getOrderingContext()); 41 numberOfCalls.check( allInvocations, wanted, wantedCount, data.getOrderingContext()); 46 return "Wanted invocations count (non-greedy): " + wantedCount;
|
AtLeast.java | 45 InvocationMatcher wanted = data.getWanted(); local 51 missingInvocation.check(allInvocations, wanted, this, data.getOrderingContext()); 54 numberOfCalls.check(allInvocations, wanted, wantedCount); 59 return "Wanted invocations count: at least " + wantedCount;
|
Times.java | 44 InvocationMatcher wanted = data.getWanted(); local 48 missingInvocation.check(allInvocations, wanted, this, data.getOrderingContext()); 51 numberOfCalls.check(allInvocations, wanted, wantedCount, data.getOrderingContext()); 56 return "Wanted invocations count: " + wantedCount;
|
/external/qemu/android/ |
looper-qemu.c | 130 unsigned wanted; member in struct:QLoopIo 148 io->wanted = 0; 194 qloopio_modify(QLoopIo* io, unsigned wanted) 197 if (wanted == io->wanted) 202 if (io->ready && (io->ready & wanted) == 0) { 207 IOHandler* fd_read = (wanted & LOOP_IO_READ) ? qloopio_handleRead : NULL; 208 IOHandler* fd_write = (wanted & LOOP_IO_WRITE) ? qloopio_handleWrite : NULL; 210 io->wanted = wanted; [all...] |
looper-generic.c | 150 unsigned wanted; member in struct:GLoopIo 160 /* used to indicate that the set of wanted flags has changed */ 162 gloopio_modify(GLoopIo* io, unsigned wanted) 165 if (io->wanted == wanted) 170 if (io->ready != 0 && (io->ready & wanted) == 0) { 173 io->ready &= wanted; 174 glooper_modifyFd(io->looper, io->fd, io->wanted, wanted); 175 io->wanted = wanted [all...] |
/external/qemu/ |
osdep.c | 194 int wanted = vsnprintf( *sptr = NULL, 0, fmt, argv ); local 195 if( (wanted > 0) && ((*sptr = malloc( 1 + wanted )) != NULL) ) 198 return wanted;
|
/external/bison/m4/ |
dmalloc.m4 | 9 [AC_MSG_CHECKING([if malloc debugging is wanted])
|