MCPcopy Create free account

hub / github.com/ASSERT-KTH/sequencer / functions

Functions67,308 in github.com/ASSERT-KTH/sequencer

↓ 33 callersMethodcreateComplex
Create a complex number given the real and imaginary parts. @param realPart Real part. @param imaginaryPart Imaginary part. @return a new complex num
results/Defects4J_patches/Math_5/25/Complex.java:1174
↓ 33 callersMethodcreateComplex
Create a complex number given the real and imaginary parts. @param realPart Real part. @param imaginaryPart Imaginary part. @return a new complex num
results/Defects4J_patches/Math_5/35/Complex.java:1174
↓ 33 callersMethodcreateComplex
Create a complex number given the real and imaginary parts. @param realPart Real part. @param imaginaryPart Imaginary part. @return a new complex num
results/Defects4J_patches/Math_5/10/Complex.java:1174
↓ 33 callersMethodcreateComplex
Create a complex number given the real and imaginary parts. @param realPart Real part. @param imaginaryPart Imaginary part. @return a new complex num
results/Defects4J_patches/Math_5/13/Complex.java:1174
↓ 33 callersMethodcreateComplex
Create a complex number given the real and imaginary parts. @param realPart Real part. @param imaginaryPart Imaginary part. @return a new complex num
results/Defects4J_patches/Math_5/12/Complex.java:1174
↓ 33 callersMethodcreateComplex
Create a complex number given the real and imaginary parts. @param realPart Real part. @param imaginaryPart Imaginary part. @return a new complex num
results/Defects4J_patches/Math_5/11/Complex.java:1174
↓ 33 callersMethodcreateComplex
Create a complex number given the real and imaginary parts. @param realPart Real part. @param imaginaryPart Imaginary part. @return a new complex num
results/Defects4J_patches/Math_5/37/Complex.java:1174
↓ 33 callersMethodcreateComplex
Create a complex number given the real and imaginary parts. @param realPart Real part. @param imaginaryPart Imaginary part. @return a new complex num
results/Defects4J_patches/Math_5/9/Complex.java:1174
↓ 33 callersMethodcreateComplex
Create a complex number given the real and imaginary parts. @param realPart Real part. @param imaginaryPart Imaginary part. @return a new complex num
results/Defects4J_patches/Math_5/1_compiled/Complex.java:1174
↓ 33 callersMethodcreateComplex
Create a complex number given the real and imaginary parts. @param realPart Real part. @param imaginaryPart Imaginary part. @return a new complex num
results/Defects4J_patches/Math_5/36/Complex.java:1174
↓ 33 callersMethodcreateComplex
Create a complex number given the real and imaginary parts. @param realPart Real part. @param imaginaryPart Imaginary part. @return a new complex num
results/Defects4J_patches/Math_5/19_compiled/Complex.java:1174
↓ 33 callersMethodcreateComplex
Create a complex number given the real and imaginary parts. @param realPart Real part. @param imaginaryPart Imaginary part. @return a new complex num
results/Defects4J_patches/Math_5/18/Complex.java:1174
↓ 33 callersMethodcreateComplex
Create a complex number given the real and imaginary parts. @param realPart Real part. @param imaginaryPart Imaginary part. @return a new complex num
results/Defects4J_patches/Math_5/23/Complex.java:1174
↓ 33 callersMethodintersects
Checks, whether the given rectangle1 fully contains rectangle 2 (even if rectangle 2 has a height or width of zero!). @param rect1 the first rectang
results/Defects4J_patches/Chart_11/4/ShapeUtilities.java:585
↓ 33 callersMethodisAssociative
Returns true if the operator is associative. e.g. (a b) c = a (b c) Note: "+" is not associative because it is also the concatenation for strings. e.g
results/Defects4J_patches/Closure_10/4/NodeUtil.java:1434
↓ 32 callersMethodisFunctionExpression
Is a FUNCTION node an function expression? An function expression is one that has either no name or a name that is not added to the current scope. <p
results/Defects4J_patches/Closure_10/4/NodeUtil.java:1926
↓ 31 callersMethodaddAndCheck
Add two integers, checking for overflow. @param x an addend @param y an addend @return the sum <code>x+y</code> @throws ArithmeticException if the re
results/Defects4J_patches/Math_94/4/MathUtils.java:76
↓ 31 callersMethodindicator
For a byte value x, this method returns (byte)(+1) if x >= 0 and (byte)(-1) if x < 0. @param x the value, a byte @return (byte)(+1) or (byte)(-1), de
results/Defects4J_patches/Math_94/4/MathUtils.java:490
↓ 31 callersMethodisFunctionDeclaration
Is this node a function declaration? A function declaration is a function that has a name that is added to the current scope (i.e. a function that is
results/Defects4J_patches/Closure_10/4/NodeUtil.java:1888
↓ 31 callersMethodtoString
()
results/Defects4J_patches/Closure_65/6/CodeGenerator.java:1074
↓ 30 callersMethodmax
<p>Returns the maximum value in an array.</p> @param array an array, must not be null or empty @return the minimum value in the array @throws Illega
results/Defects4J_patches/Lang_24/16/NumberUtils.java:909
↓ 30 callersMethodsubAndCheck
Subtract two integers, checking for overflow. @param x the minuend @param y the subtrahend @return the difference <code>x-y</code> @throws Arithmetic
results/Defects4J_patches/Math_94/4/MathUtils.java:1036
↓ 28 callersMethodconnectToPossibleExceptionHandler
Connects cfgNode to the proper CATCH block if target subtree might throw an exception. If there are FINALLY blocks reached before a CATCH, it will mak
results/Defects4J_patches/Closure_14/3/ControlFlowAnalysis.java:830
↓ 27 callersMethodisExprCall
Is this node a call expression statement? @param n The node @return True if {@code n} is EXPR_RESULT and {@code n}'s first child is CALL
results/Defects4J_patches/Closure_10/4/NodeUtil.java:1584
↓ 27 callersMethodisValidPropertyName
Determines whether the given name can appear on the right side of the dot operator. Many properties (like reserved words) cannot.
results/Defects4J_patches/Closure_10/4/NodeUtil.java:2454
↓ 27 callersMethodisValidQualifiedName
(String name)
results/Defects4J_patches/Closure_10/4/NodeUtil.java:2437
↓ 27 callersMethodwrite
{@inheritDoc}
results/Defects4J_patches/Lang_59/4/StrBuilder.java:2339
↓ 25 callersMethodaddExpr
(Node n, int minPrecedence, Context context)
results/Defects4J_patches/Closure_123/31/CodeGenerator.java:925
↓ 25 callersMethodaddExpr
(Node n, int minPrecedence, Context context)
results/Defects4J_patches/Closure_123/33/CodeGenerator.java:925
↓ 25 callersMethodaddExpr
(Node n, int minPrecedence, Context context)
results/Defects4J_patches/Closure_123/4/CodeGenerator.java:925
↓ 25 callersMethodaddExpr
(Node n, int minPrecedence, Context context)
results/Defects4J_patches/Closure_123/29/CodeGenerator.java:925
↓ 25 callersMethodaddExpr
(Node n, int minPrecedence, Context context)
results/Defects4J_patches/Closure_123/14/CodeGenerator.java:925
↓ 25 callersMethodaddExpr
(Node n, int minPrecedence, Context context)
results/Defects4J_patches/Closure_123/17/CodeGenerator.java:925
↓ 25 callersMethodaddExpr
(Node n, int minPrecedence, Context context)
results/Defects4J_patches/Closure_123/20/CodeGenerator.java:925
↓ 25 callersMethodaddExpr
(Node n, int minPrecedence, Context context)
results/Defects4J_patches/Closure_123/16/CodeGenerator.java:925
↓ 25 callersMethodaddExpr
(Node n, int minPrecedence, Context context)
results/Defects4J_patches/Closure_123/21/CodeGenerator.java:925
↓ 25 callersMethodaddExpr
(Node n, int minPrecedence, Context context)
results/Defects4J_patches/Closure_123/2/CodeGenerator.java:925
↓ 25 callersMethodaddExpr
(Node n, int minPrecedence, Context context)
results/Defects4J_patches/Closure_123/32/CodeGenerator.java:925
↓ 25 callersMethodaddExpr
(Node n, int minPrecedence, Context context)
results/Defects4J_patches/Closure_123/6/CodeGenerator.java:925
↓ 25 callersMethodaddExpr
(Node n, int minPrecedence, Context context)
results/Defects4J_patches/Closure_123/22/CodeGenerator.java:925
↓ 25 callersMethodaddExpr
(Node n, int minPrecedence, Context context)
results/Defects4J_patches/Closure_123/26/CodeGenerator.java:925
↓ 25 callersMethodaddExpr
(Node n, int minPrecedence, Context context)
results/Defects4J_patches/Closure_123/3/CodeGenerator.java:925
↓ 25 callersMethodaddExpr
(Node n, int minPrecedence, Context context)
results/Defects4J_patches/Closure_123/19/CodeGenerator.java:925
↓ 25 callersMethodaddExpr
(Node n, int minPrecedence, Context context)
results/Defects4J_patches/Closure_123/27/CodeGenerator.java:925
↓ 25 callersMethodaddExpr
(Node n, int minPrecedence, Context context)
results/Defects4J_patches/Closure_123/5/CodeGenerator.java:925
↓ 25 callersMethodaddExpr
(Node n, int minPrecedence, Context context)
results/Defects4J_patches/Closure_123/24/CodeGenerator.java:925
↓ 25 callersMethodaddExpr
(Node n, int minPrecedence, Context context)
results/Defects4J_patches/Closure_123/8/CodeGenerator.java:925
↓ 25 callersMethodaddExpr
(Node n, int minPrecedence, Context context)
results/Defects4J_patches/Closure_123/30/CodeGenerator.java:925
↓ 25 callersMethodaddExpr
(Node n, int minPrecedence, Context context)
results/Defects4J_patches/Closure_123/15/CodeGenerator.java:925
↓ 25 callersMethodaddExpr
(Node n, int minPrecedence, Context context)
results/Defects4J_patches/Closure_123/28/CodeGenerator.java:925
↓ 25 callersMethodaddExpr
(Node n, int minPrecedence, Context context)
results/Defects4J_patches/Closure_123/7/CodeGenerator.java:925
↓ 25 callersMethodaddExpr
(Node n, int minPrecedence, Context context)
results/Defects4J_patches/Closure_123/25/CodeGenerator.java:925
↓ 25 callersMethodaddExpr
(Node n, int minPrecedence, Context context)
results/Defects4J_patches/Closure_123/10/CodeGenerator.java:925
↓ 25 callersMethodaddExpr
(Node n, int minPrecedence, Context context)
results/Defects4J_patches/Closure_123/13/CodeGenerator.java:925
↓ 25 callersMethodaddExpr
(Node n, int minPrecedence, Context context)
results/Defects4J_patches/Closure_123/12/CodeGenerator.java:925
↓ 25 callersMethodaddExpr
(Node n, int minPrecedence, Context context)
results/Defects4J_patches/Closure_123/11/CodeGenerator.java:925
↓ 25 callersMethodaddExpr
(Node n, int minPrecedence, Context context)
results/Defects4J_patches/Closure_123/9/CodeGenerator.java:925
↓ 25 callersMethodaddExpr
(Node n, int minPrecedence, Context context)
results/Defects4J_patches/Closure_123/1_compiled/CodeGenerator.java:925
↓ 25 callersMethodaddExpr
(Node n, int minPrecedence, Context context)
results/Defects4J_patches/Closure_123/18/CodeGenerator.java:925
↓ 25 callersMethodaddExpr
(Node n, int minPrecedence, Context context)
results/Defects4J_patches/Closure_123/23/CodeGenerator.java:925
↓ 25 callersMethodisNaN
Returns true if either or both parts of this complex number is NaN; false otherwise @return true if either or both parts of this complex number is N
results/Defects4J_patches/Math_96/29/Complex.java:309
↓ 25 callersMethodisNaN
Returns true if either or both parts of this complex number is NaN; false otherwise @return true if either or both parts of this complex number is N
results/Defects4J_patches/Math_96/14/Complex.java:309
↓ 25 callersMethodisNaN
Returns true if either or both parts of this complex number is NaN; false otherwise @return true if either or both parts of this complex number is N
results/Defects4J_patches/Math_96/17/Complex.java:309
↓ 25 callersMethodisNaN
Returns true if either or both parts of this complex number is NaN; false otherwise @return true if either or both parts of this complex number is N
results/Defects4J_patches/Math_96/9_compiled/Complex.java:309
↓ 25 callersMethodisNaN
Returns true if either or both parts of this complex number is NaN; false otherwise @return true if either or both parts of this complex number is N
results/Defects4J_patches/Math_96/20/Complex.java:309
↓ 25 callersMethodisNaN
Returns true if either or both parts of this complex number is NaN; false otherwise @return true if either or both parts of this complex number is N
results/Defects4J_patches/Math_96/16/Complex.java:309
↓ 25 callersMethodisNaN
Returns true if either or both parts of this complex number is NaN; false otherwise @return true if either or both parts of this complex number is N
results/Defects4J_patches/Math_96/5_compiled/Complex.java:309
↓ 25 callersMethodisNaN
Returns true if either or both parts of this complex number is NaN; false otherwise @return true if either or both parts of this complex number is N
results/Defects4J_patches/Math_96/22_compiled/Complex.java:309
↓ 25 callersMethodisNaN
Returns true if either or both parts of this complex number is NaN; false otherwise @return true if either or both parts of this complex number is N
results/Defects4J_patches/Math_96/6/Complex.java:309
↓ 25 callersMethodisNaN
Returns true if either or both parts of this complex number is NaN; false otherwise @return true if either or both parts of this complex number is N
results/Defects4J_patches/Math_96/26/Complex.java:309
↓ 25 callersMethodisNaN
Returns true if either or both parts of this complex number is NaN; false otherwise @return true if either or both parts of this complex number is N
results/Defects4J_patches/Math_96/3/Complex.java:309
↓ 25 callersMethodisNaN
Returns true if either or both parts of this complex number is NaN; false otherwise @return true if either or both parts of this complex number is N
results/Defects4J_patches/Math_96/19/Complex.java:309
↓ 25 callersMethodisNaN
Returns true if either or both parts of this complex number is NaN; false otherwise @return true if either or both parts of this complex number is N
results/Defects4J_patches/Math_96/27/Complex.java:309
↓ 25 callersMethodisNaN
Returns true if either or both parts of this complex number is NaN; false otherwise @return true if either or both parts of this complex number is N
results/Defects4J_patches/Math_96/8/Complex.java:309
↓ 25 callersMethodisNaN
Returns true if either or both parts of this complex number is NaN; false otherwise @return true if either or both parts of this complex number is N
results/Defects4J_patches/Math_96/30/Complex.java:309
↓ 25 callersMethodisNaN
Returns true if either or both parts of this complex number is NaN; false otherwise @return true if either or both parts of this complex number is N
results/Defects4J_patches/Math_96/4_compiled/Complex.java:309
↓ 25 callersMethodisNaN
Returns true if either or both parts of this complex number is NaN; false otherwise @return true if either or both parts of this complex number is N
results/Defects4J_patches/Math_96/15/Complex.java:309
↓ 25 callersMethodisNaN
Returns true if either or both parts of this complex number is NaN; false otherwise @return true if either or both parts of this complex number is N
results/Defects4J_patches/Math_96/28/Complex.java:309
↓ 25 callersMethodisNaN
Returns true if either or both parts of this complex number is NaN; false otherwise @return true if either or both parts of this complex number is N
results/Defects4J_patches/Math_96/7/Complex.java:309
↓ 25 callersMethodisNaN
Returns true if either or both parts of this complex number is NaN; false otherwise @return true if either or both parts of this complex number is N
results/Defects4J_patches/Math_96/21_compiled/Complex.java:309
↓ 25 callersMethodisNaN
Returns true if either or both parts of this complex number is NaN; false otherwise @return true if either or both parts of this complex number is N
results/Defects4J_patches/Math_96/25/Complex.java:309
↓ 25 callersMethodisNaN
Returns true if either or both parts of this complex number is NaN; false otherwise @return true if either or both parts of this complex number is N
results/Defects4J_patches/Math_96/10/Complex.java:309
↓ 25 callersMethodisNaN
Returns true if either or both parts of this complex number is NaN; false otherwise @return true if either or both parts of this complex number is N
results/Defects4J_patches/Math_96/13/Complex.java:309
↓ 25 callersMethodisNaN
Returns true if either or both parts of this complex number is NaN; false otherwise @return true if either or both parts of this complex number is N
results/Defects4J_patches/Math_96/11_compiled/Complex.java:309
↓ 25 callersMethodisNaN
Returns true if either or both parts of this complex number is NaN; false otherwise @return true if either or both parts of this complex number is N
results/Defects4J_patches/Math_96/12/Complex.java:309
↓ 25 callersMethodisNaN
Returns true if either or both parts of this complex number is NaN; false otherwise @return true if either or both parts of this complex number is N
results/Defects4J_patches/Math_96/24_compiled/Complex.java:309
↓ 25 callersMethodisNaN
Returns true if either or both parts of this complex number is NaN; false otherwise @return true if either or both parts of this complex number is N
results/Defects4J_patches/Math_96/1_compiled/Complex.java:309
↓ 25 callersMethodisNaN
Returns true if either or both parts of this complex number is NaN; false otherwise @return true if either or both parts of this complex number is N
results/Defects4J_patches/Math_96/18/Complex.java:309
↓ 25 callersMethodisNaN
Returns true if either or both parts of this complex number is NaN; false otherwise @return true if either or both parts of this complex number is N
results/Defects4J_patches/Math_96/23/Complex.java:309
↓ 24 callersMethodgetContextForNonEmptyExpression
(Context currentContext)
results/Defects4J_patches/Closure_65/4/CodeGenerator.java:1146
↓ 22 callersMethodcreateComplex
Create a complex number given the real and imaginary parts. @param real the real part @param imaginary the imaginary part @return a new complex numbe
results/Defects4J_patches/Math_96/29/Complex.java:871
↓ 22 callersMethodcreateComplex
Create a complex number given the real and imaginary parts. @param real the real part @param imaginary the imaginary part @return a new complex numbe
results/Defects4J_patches/Math_96/14/Complex.java:871
↓ 22 callersMethodcreateComplex
Create a complex number given the real and imaginary parts. @param real the real part @param imaginary the imaginary part @return a new complex numbe
results/Defects4J_patches/Math_96/17/Complex.java:871
↓ 22 callersMethodcreateComplex
Create a complex number given the real and imaginary parts. @param real the real part @param imaginary the imaginary part @return a new complex numbe
results/Defects4J_patches/Math_96/9_compiled/Complex.java:871
↓ 22 callersMethodcreateComplex
Create a complex number given the real and imaginary parts. @param real the real part @param imaginary the imaginary part @return a new complex numbe
results/Defects4J_patches/Math_96/20/Complex.java:871
↓ 22 callersMethodcreateComplex
Create a complex number given the real and imaginary parts. @param real the real part @param imaginary the imaginary part @return a new complex numbe
results/Defects4J_patches/Math_96/16/Complex.java:871
↓ 22 callersMethodcreateComplex
Create a complex number given the real and imaginary parts. @param real the real part @param imaginary the imaginary part @return a new complex numbe
results/Defects4J_patches/Math_96/2/Complex.java:871
↓ 22 callersMethodcreateComplex
Create a complex number given the real and imaginary parts. @param real the real part @param imaginary the imaginary part @return a new complex numbe
results/Defects4J_patches/Math_96/5_compiled/Complex.java:871
↓ 22 callersMethodcreateComplex
Create a complex number given the real and imaginary parts. @param real the real part @param imaginary the imaginary part @return a new complex numbe
results/Defects4J_patches/Math_96/22_compiled/Complex.java:871
↓ 22 callersMethodcreateComplex
Create a complex number given the real and imaginary parts. @param real the real part @param imaginary the imaginary part @return a new complex numbe
results/Defects4J_patches/Math_96/6/Complex.java:871
← previousnext →501–600 of 67,308, ranked by callers