Home
last modified time | relevance | path

Searched refs:hasPrimitives (Results 1 – 4 of 4) sorted by relevance

/libcore/luni/src/test/java/libcore/java/lang/invoke/
DMethodTypeTest.java463 assertFalse(mt.hasPrimitives()); in testHasPrimitives()
466 assertTrue(mt.hasPrimitives()); in testHasPrimitives()
469 assertTrue(mt.hasPrimitives()); in testHasPrimitives()
472 assertFalse(mt.hasPrimitives()); in testHasPrimitives()
475 assertTrue(mt.hasPrimitives()); in testHasPrimitives()
532 assertFalse(wrapped.hasPrimitives()); in testWrap()
552 assertTrue(unwrapped.hasPrimitives()); in testUnwrap()
/libcore/ojluni/src/main/java/java/lang/invoke/
DMethodType.java597 public boolean hasPrimitives() { in hasPrimitives() method in MethodType
598 return form.hasPrimitives(); in hasPrimitives()
655 return this == erase() && !hasPrimitives(); in isGeneric()
668 return hasPrimitives() ? wrapWithPrims(this) : this; in wrap()
679 MethodType noprims = !hasPrimitives() ? this : wrapWithPrims(this); in unwrap()
684 assert(pt.hasPrimitives()); in wrapWithPrims()
696 assert(!wt.hasPrimitives()); in unwrapWithNoPrims()
DMethodTypeForm.java302 public boolean hasPrimitives() { in hasPrimitives() method in MethodTypeForm
/libcore/ojluni/src/lambda/java/java/lang/invoke/
DMethodType.java75 public boolean hasPrimitives() { return false; } in hasPrimitives() method in MethodType