Searched defs:MatchAnything (Results 1 - 2 of 2) sorted by path

/external/chromium_org/chrome/third_party/mock4js/
H A Dmock4js.js41 object.ANYTHING = new MatchAnything();
222 function MatchAnything() { function
225 MatchAnything.prototype = {
223 MatchAnything.prototype = { class
/external/littlemock/src/com/google/testing/littlemock/
H A DLittleMock.java277 public static <T> T anyObject() { return LittleMock.<T>addMatcher(new MatchAnything(), null); }
283 public static int anyInt() { return addMatcher(new MatchAnything(), 0); }
286 public static float anyFloat() { return addMatcher(new MatchAnything(), 0f); }
289 public static double anyDouble() { return addMatcher(new MatchAnything(), 0.0); }
292 public static boolean anyBoolean() { return addMatcher(new MatchAnything(), false); }
295 public static short anyShort() { return addMatcher(new MatchAnything(), (short) 0); }
298 public static char anyChar() { return addMatcher(new MatchAnything(), '\u0000'); }
301 public static long anyLong() { return addMatcher(new MatchAnything(), 0L); }
304 public static byte anyByte() { return addMatcher(new MatchAnything(), (byte) 0); }
996 private static class MatchAnything implement class in class:LittleMock
[all...]

Completed in 282 milliseconds