Home
last modified time | relevance | path

Searched defs:check_comb (Results 1 – 6 of 6) sorted by relevance

/dports/lang/erlang-runtime23/corba-5.0.2/lib/ic/src/
H A Diceval.erl206 check_comb(X, Y) when is_integer(X) andalso is_integer(Y) -> true; function
207 check_comb(X, Y) when is_float(X) andalso is_integer(Y) -> true; function
208 check_comb(X, Y) when is_integer(X) andalso is_float(Y) -> true; function
209 check_comb(X, Y) when is_float(X) andalso is_float(Y) -> true; function
210 check_comb({X, _}, {X, _}) -> true; % Strings and chars are tuples function
211 check_comb({fixed, _, _, _}, {fixed, _, _, _}) -> true; function
212 check_comb(X, Y) -> function
/dports/lang/erlang-runtime24/corba-5.0.2/lib/ic/src/
H A Diceval.erl206 check_comb(X, Y) when is_integer(X) andalso is_integer(Y) -> true; function
207 check_comb(X, Y) when is_float(X) andalso is_integer(Y) -> true; function
208 check_comb(X, Y) when is_integer(X) andalso is_float(Y) -> true; function
209 check_comb(X, Y) when is_float(X) andalso is_float(Y) -> true; function
210 check_comb({X, _}, {X, _}) -> true; % Strings and chars are tuples function
211 check_comb({fixed, _, _, _}, {fixed, _, _, _}) -> true; function
212 check_comb(X, Y) -> function
/dports/lang/erlang-runtime22/corba-4.5.2/lib/ic/src/
H A Diceval.erl206 check_comb(X, Y) when is_integer(X) andalso is_integer(Y) -> true; function
207 check_comb(X, Y) when is_float(X) andalso is_integer(Y) -> true; function
208 check_comb(X, Y) when is_integer(X) andalso is_float(Y) -> true; function
209 check_comb(X, Y) when is_float(X) andalso is_float(Y) -> true; function
210 check_comb({X, _}, {X, _}) -> true; % Strings and chars are tuples function
211 check_comb({fixed, _, _, _}, {fixed, _, _, _}) -> true; function
212 check_comb(X, Y) -> function
/dports/lang/erlang/corba-5.0.2/lib/ic/src/
H A Diceval.erl206 check_comb(X, Y) when is_integer(X) andalso is_integer(Y) -> true; function
207 check_comb(X, Y) when is_float(X) andalso is_integer(Y) -> true; function
208 check_comb(X, Y) when is_integer(X) andalso is_float(Y) -> true; function
209 check_comb(X, Y) when is_float(X) andalso is_float(Y) -> true; function
210 check_comb({X, _}, {X, _}) -> true; % Strings and chars are tuples function
211 check_comb({fixed, _, _, _}, {fixed, _, _, _}) -> true; function
212 check_comb(X, Y) -> function
/dports/lang/erlang-runtime21/corba-4.5.2/lib/ic/src/
H A Diceval.erl206 check_comb(X, Y) when is_integer(X) andalso is_integer(Y) -> true; function
207 check_comb(X, Y) when is_float(X) andalso is_integer(Y) -> true; function
208 check_comb(X, Y) when is_integer(X) andalso is_float(Y) -> true; function
209 check_comb(X, Y) when is_float(X) andalso is_float(Y) -> true; function
210 check_comb({X, _}, {X, _}) -> true; % Strings and chars are tuples function
211 check_comb({fixed, _, _, _}, {fixed, _, _, _}) -> true; function
212 check_comb(X, Y) -> function
/dports/games/scummvm/scummvm-2.5.1/engines/glk/agt/
H A Dparser.cpp188 static word check_comb(int combptr) { in check_comb() function