Home | History | Annotate | Download | only in MCDisassembler

Lines Matching refs:Result

35 /// CachedResult - Encapsulates the result of a function along with the validity
36 /// of that result, so that slow functions don't need to run twice
38 /// True if the result has been obtained by executing the function
40 /// The result last obtained from the function
41 int Result;
43 /// Constructor - Initializes an invalid result
45 /// valid - Returns true if the result has been obtained by executing the
48 /// result - Returns the result of the function or an undefined value if
50 int result() { return Result; }
51 /// setResult - Sets the result of the function and declares it valid
52 /// returning the result (so that setResult() can be called from inside a
54 /// @arg result - The result of the function
55 int setResult(int result) { Result = result; Valid = true; return result; }
70 /// The result of the stringify() function
78 /// The result of the parseOperands() function
90 /// The result of the tokenize() function