Lines Matching refs:first

698      * @param first

699 * placeholder for the first expectation.
704 public static boolean and(boolean first, boolean second) {
712 * @param first
713 * placeholder for the first expectation.
718 public static byte and(byte first, byte second) {
726 * @param first
727 * placeholder for the first expectation.
732 public static char and(char first, char second) {
740 * @param first
741 * placeholder for the first expectation.
746 public static double and(double first, double second) {
754 * @param first
755 * placeholder for the first expectation.
760 public static float and(float first, float second) {
768 * @param first
769 * placeholder for the first expectation.
774 public static int and(int first, int second) {
782 * @param first
783 * placeholder for the first expectation.
788 public static long and(long first, long second) {
796 * @param first
797 * placeholder for the first expectation.
802 public static short and(short first, short second) {
812 * @param first
813 * placeholder for the first expectation.
818 public static <T> T and(T first, T second) {
826 * @param first
827 * placeholder for the first expectation.
832 public static boolean or(boolean first, boolean second) {
840 * @param first
841 * placeholder for the first expectation.
846 public static byte or(byte first, byte second) {
854 * @param first
855 * placeholder for the first expectation.
860 public static char or(char first, char second) {
868 * @param first
869 * placeholder for the first expectation.
874 public static double or(double first, double second) {
882 * @param first
883 * placeholder for the first expectation.
888 public static float or(float first, float second) {
896 * @param first
897 * placeholder for the first expectation.
902 public static int or(int first, int second) {
904 return first;
910 * @param first
911 * placeholder for the first expectation.
916 public static long or(long first, long second) {
924 * @param first
925 * placeholder for the first expectation.
930 public static short or(short first, short second) {
940 * @param first
941 * placeholder for the first expectation.
946 public static <T> T or(T first, T second) {
954 * @param first
958 public static boolean not(boolean first) {
966 * @param first
970 public static byte not(byte first) {
978 * @param first
982 public static char not(char first) {
990 * @param first
994 public static double not(double first) {
1002 * @param first
1006 public static float not(float first) {
1008 return first;
1014 * @param first
1018 public static int not(int first) {
1026 * @param first
1030 public static long not(long first) {
1038 * @param first
1042 public static short not(short first) {
1052 * @param first
1056 public static <T> T not(T first) {