HomeSort by relevance Sort by last modified time
    Searched refs:LessThan (Results 1 - 25 of 28) sorted by null

1 2

  /external/easymock/src/org/easymock/internal/matchers/
LessThan.java 18 public class LessThan<T extends Comparable<T>> extends CompareTo<T> {
22 public LessThan(Comparable<T> value) {
  /external/mockito/src/org/mockito/internal/matchers/
LessThan.java 10 public class LessThan<T extends Comparable<T>> extends CompareTo<T> implements Serializable {
14 public LessThan(Comparable<T> value) {
  /external/mockito/src/org/mockito/
AdditionalMatchers.java 15 import org.mockito.internal.matchers.LessThan;
329 return reportMatcher(new LessThan<T>(value)).<T>returnNull();
342 return reportMatcher(new LessThan<Byte>(value)).returnZero();
355 return reportMatcher(new LessThan<Double>(value)).returnZero();
368 return reportMatcher(new LessThan<Float>(value)).returnZero();
381 return reportMatcher(new LessThan<Integer>(value)).returnZero();
394 return reportMatcher(new LessThan<Long>(value)).returnZero();
407 return reportMatcher(new LessThan<Short>(value)).returnZero();
  /external/easymock/src/org/easymock/
EasyMock.java 585 reportMatcher(new LessThan<T>(value));
598 reportMatcher(new LessThan<Byte>(value));
611 reportMatcher(new LessThan<Double>(value));
624 reportMatcher(new LessThan<Float>(value));
637 reportMatcher(new LessThan<Integer>(value));
650 reportMatcher(new LessThan<Long>(value));
663 reportMatcher(new LessThan<Short>(value));
    [all...]
  /external/webkit/Source/JavaScriptCore/assembler/
MacroAssemblerSH4.cpp 38 const Condition MacroAssemblerSH4::LessThan = SH4Assembler::LT;
MacroAssemblerMIPS.h 69 LessThan,
    [all...]
MacroAssemblerSH4.h 47 static const Condition LessThan;
    [all...]
MacroAssemblerARM.h 54 LessThan = ARMAssembler::LT,
    [all...]
MacroAssemblerARMv7.h 112 LessThan = ARMv7Assembler::ConditionLT,
    [all...]
MacroAssemblerX86Common.h 53 LessThan = X86Assembler::ConditionL,
    [all...]
  /external/webkit/Source/JavaScriptCore/jit/
JITArithmetic.cpp 170 addSlowCase(branch32(LessThan, regT0, TrustedImm32(0)));
182 addSlowCase(branch32(LessThan, regT0, TrustedImm32(0)));
205 failures.append(branch32(LessThan, regT0, TrustedImm32(0)));
227 failures.append(branch32(LessThan, regT0, TrustedImm32(0)));
424 addJump(branch32(LessThan, regT0, Imm32(asString(getConstantOperand(op2))->tryGetValue()[0])), target);
431 addJump(branch32(LessThan, regT0, Imm32(op2imm)), target);
442 addJump(branch32(LessThan, regT0, regT1), target);
568 addJump(branch32(invert ? LessThan : GreaterThanOrEqual, regT0, Imm32(asString(getConstantOperand(op1))->tryGetValue()[0])), target);
589 addJump(branch32(invert ? LessThan : GreaterThanOrEqual, regT1, Imm32(op1imm)), target);
    [all...]
JITArithmetic32_64.cpp 201 addJump(branch32(LessThan, regT0, Imm32(asString(getConstantOperand(op2))->tryGetValue()[0])), target);
211 addJump(branch32(LessThan, regT0, Imm32(getConstantOperand(op2).asInt32())), target);
216 addJump(branch32(LessThan, regT0, regT2), target);
279 addJump(branch32(invert ? LessThan : GreaterThanOrEqual, regT0, Imm32(asString(getConstantOperand(op1))->tryGetValue()[0])), target);
294 addJump(branch32(invert ? LessThan : GreaterThanOrEqual, regT2, Imm32(getConstantOperand(op1).asInt32())), target);
422 addSlowCase(branch32(LessThan, regT0, TrustedImm32(0)));
436 addSlowCase(branch32(LessThan, regT0, TrustedImm32(0)));
460 failures.append(branch32(LessThan, regT0, TrustedImm32(0)));
    [all...]
ThunkGenerators.cpp 118 jit.appendFailure(jit.branch32(MacroAssembler::LessThan, SpecializedThunkJIT::regT0, MacroAssembler::TrustedImm32(0)));
JITPropertyAccess.cpp 694 Jump failureCases2 = branch32(LessThan, regT2, TrustedImm32(0));
    [all...]
JITOpcodes.cpp 60 Jump string_failureCases3 = branch32(LessThan, regT0, TrustedImm32(0));
    [all...]
  /external/chromium/net/base/
ip_endpoint_unittest.cc 119 TEST_F(IPEndPointTest, LessThan) {
x509_certificate.h 73 class LessThan {
cert_database_nss_unittest.cc 63 std::sort(result.begin(), result.end(), X509Certificate::LessThan());
x509_certificate.cc 134 bool X509Certificate::LessThan::operator()(X509Certificate* lhs,
    [all...]
  /external/webkit/Source/JavaScriptCore/dfg/
DFGSpeculativeJIT.cpp 327 speculationCheck(m_jit.branch32(MacroAssembler::LessThan, op1.registerID(), TrustedImm32(0)));
447 speculationCheck(m_jit.branch32(MacroAssembler::LessThan, reg1, TrustedImm32(0)));
448 speculationCheck(m_jit.branch32(MacroAssembler::LessThan, reg2, TrustedImm32(0)));
496 m_jit.set32Compare32(JITCompiler::LessThan, op1.registerID(), op2.registerID(), result.registerID());
  /external/chromium/testing/gmock/test/
gmock-generated-matchers_test.cc 240 Matcher<tuple<char, int> > LessThan() {
245 const Matcher<tuple<char, int, int> > m = Args<0, 2>(LessThan());
    [all...]
  /prebuilts/tools/common/easymock-tools/
easymock-3.1.jar 
  /prebuilts/tools/common/m2/internal/org/easymock/easymock/3.1/
easymock-3.1.jar 
  /external/chromium/chrome/browser/resources/keyboard/
main.js 513 new Key(C('e'), C('E'), C('3'), new Character('<', 'LessThan')),
  /external/webkit/Source/JavaScriptCore/yarr/
YarrJIT.cpp 146 failures.append(branch32(LessThan, character, Imm32((unsigned short)lo)));
184 Jump below = branch32(LessThan, character, Imm32(lo));
    [all...]

Completed in 881 milliseconds

1 2