HomeSort by relevance Sort by last modified time
    Searched full:evaluating (Results 1 - 25 of 395) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/clang/test/SemaOpenCL/
shifts.cl 2 // OpenCL essentially reduces all shift amounts to the last word-size bits before evaluating.
  /libcore/luni/src/main/java/javax/xml/xpath/
XPathExpression.java 39 * For the purposes of evaluating XPath expressions, a DocumentFragment
69 * This result of evaluating an expression is converted to an instance of the desired return type.
101 * @return The <code>Object</code> that is the result of evaluating the expression and converting the result to
126 * @return The <code>String</code> that is the result of evaluating the expression and converting the result to a
153 * @return The <code>Object</code> that is the result of evaluating the expression and converting the result to
177 * @return The <code>String</code> that is the result of evaluating the expression and converting the result to a
XPathFunction.java 38 * definition of extension functions. The implementation evaluating an
44 * @return The result of evaluating the <code>XPath</code> function as an <code>Object</code>.
XPath.java 40 * For the purposes of evaluating XPath expressions, a DocumentFragment
73 * This result of evaluating an expression is converted to an instance of the desired return type.
207 * @return Result of evaluating an XPath expression as an <code>Object</code> of <code>returnType</code>.
233 * @return The <code>String</code> that is the result of evaluating the expression and
262 * @return The <code>Object</code> that encapsulates the result of evaluating the expression.
291 * @return The <code>String</code> that is the result of evaluating the expression and
XPathVariableResolver.java 29 * than once with different variable values, in the course of evaluating any
  /external/webkit/Source/WebCore/css/
MediaQueryMatcher.h 37 // MediaQueryList x MediaQueryListListener. It is responsible for evaluating the queries
80 // It is used to avoid evaluating queries more then once and to make sure
  /external/clang/test/Analysis/
misc-ps-64.m 4 // <rdar://problem/6440393> - A bunch of misc. failures involving evaluating
  /external/openssh/
fixprogs 62 print "Evaluating '$path $mostargs'\n";
  /external/v8/test/mjsunit/compiler/
regress-6.js 38 // Force deoptimization in --always-opt mode when evaluating
  /external/apache-xml/src/main/java/org/apache/xalan/templates/
ElemVariablePsuedo.java 38 * evaluating the expression. In this case, the content
  /external/ceres-solver/internal/ceres/
block_evaluate_preparer.h 33 // The evaluator takes care to avoid evaluating the jacobian for fixed
scratch_evaluate_preparer.h 33 // care to avoid evaluating the jacobian for fixed parameters.
  /external/eigen/Eigen/src/Core/
ReturnByValue.h 37 * So the only way that nesting it in an expression can work, is by evaluating it into a plain matrix.
VectorBlock.h 37 * has fixed size, this expression inherits a fixed maximal size which means that evaluating
105 * which means that evaluating it does not cause a dynamic memory allocation.
137 * which means that evaluating it does not cause a dynamic memory allocation.
169 * which means that evaluating it does not cause a dynamic memory allocation.
  /external/webkit/Source/WebCore/loader/
DocumentWriter.h 48 // and always contains the result of evaluating a javascript: url.
  /system/core/sh/
eval.h 55 /* in_function returns nonzero if we are currently evaluating a function */
  /bootable/recovery/edify/
main.c 52 fprintf(stderr, "error evaluating \"%s\"\n", expr_str);
62 fprintf(stderr, "evaluating \"%s\": expected \"%s\", got \"%s\"\n",
README 33 - ";" is a binary operator; evaluating it just means to first evaluate
  /external/eigen/doc/
I01_TopicLazyEvaluation.dox 21 Expression-templates-based libraries can avoid evaluating sub-expressions into temporaries, which in many cases results in large speed improvements. This is called <i>lazy evaluation</i> as an expression is getting evaluated as late as possible, instead of immediately. However, most other expression-templates-based libraries <i>always</i> choose lazy evaluation. There are two problems with that: first, lazy evaluation is not always a good choice for performance; second, lazy evaluation can be very dangerous, for example with matrix products: doing <tt>matrix = matrix*matrix</tt> gives a wrong result if the matrix product is lazy-evaluated, because of the way matrix product works.
61 Here, provided the matrices have at least 2 rows and 2 columns, each coefficienct of the expression <tt>matrix3 + matrix4</tt> is going to be used several times in the matrix product. Instead of computing the sum everytime, it is much better to compute it once and store it in a temporary variable. Eigen understands this and evaluates <tt>matrix3 + matrix4</tt> into a temporary variable before evaluating the product.
  /external/eigen/test/
householder.cpp 99 VERIFY_IS_APPROX(m3 * m5, m1); // test evaluating hseq to a dense matrix, then applying
108 VERIFY_IS_APPROX(m3 * m5, m1); // test evaluating rhseq to a dense matrix, then applying
  /external/libsepol/src/
genbools.c 168 ERR(NULL, "error while re-evaluating conditionals");
240 ERR(NULL, "error while re-evaluating conditionals");
  /external/eigen/Eigen/src/Core/products/
GeneralMatrixMatrixTriangular.h 19 * evaluating only one triangular part of the product.
28 /* Optimized matrix-matrix product evaluating only one triangular half */
118 // Optimized packed Block * packed Block product kernel evaluating only one given triangular part
  /external/apache-xml/src/main/java/org/apache/xpath/jaxp/
XPathExpressionImpl.java 155 * @return The <code>Object</code> that is the result of evaluating the
221 * @return The <code>String</code> that is the result of evaluating the
262 * @return The <code>Object</code> that is the result of evaluating the
317 * @return The <code>String</code> that is the result of evaluating the expression and converting the result to a
  /external/clang/test/CodeGenOpenCL/
shifts.cl 2 // OpenCL essentially reduces all shift amounts to the last word-size bits before evaluating.
  /external/jsilver/src/com/google/clearsilver/jsilver/interpreter/
VariableLocator.java 44 * If the root PVariable we are evaluating is a simple one then skip creating the StringBuilder

Completed in 607 milliseconds

1 2 3 4 5 6 7 8 91011>>