HomeSort by relevance Sort by last modified time
    Searched refs:expression (Results 26 - 50 of 610) sorted by null

12 3 4 5 6 7 8 91011>>

  /external/mesa3d/src/glsl/tests/lower_jumps/
lower_returns_sub_true.opt_test 11 ((if (expression bool > (var_ref a) (constant float (0.000000)))
12 ((if (expression bool > (var_ref b) (constant float (0.000000)))
lower_pulled_out_jump.opt_test 17 ((if (expression bool > (var_ref aa) (constant float (0.000000)))
18 ((if (expression bool > (var_ref ab) (constant float (0.000000)))
23 ((if (expression bool > (var_ref b) (constant float (0.000000)))
24 ((if (expression bool > (var_ref c) (constant float (0.000000))) (break)
lower_returns_4.opt_test 11 ((if (expression bool > (var_ref a) (constant float (0.000000)))
  /external/chromium_org/third_party/mesa/src/src/glsl/tests/lower_jumps/
lower_pulled_out_jump.opt_test 17 ((if (expression bool > (var_ref aa) (constant float (0.000000)))
18 ((if (expression bool > (var_ref ab) (constant float (0.000000)))
23 ((if (expression bool > (var_ref b) (constant float (0.000000)))
24 ((if (expression bool > (var_ref c) (constant float (0.000000))) (break)
lower_returns_4.opt_test 11 ((if (expression bool > (var_ref a) (constant float (0.000000)))
  /libcore/luni/src/main/java/javax/xml/xpath/
XPath.java 38 * If a request is made to evaluate the expression in the absence
47 * If the expression contains a variable reference, its value will be found through the {@link XPathVariableResolver}
57 * If the expression contains a function reference, the function will be found through the {@link XPathFunctionResolver}
66 * QNames in the expression are resolved against the XPath namespace context
73 * This result of evaluating an expression is converted to an instance of the desired return type.
164 * <p>Compile an XPath expression for later evaluation.</p>
166 * <p>If <code>expression</code> contains any {@link XPathFunction}s,
171 * <p>If <code>expression</code> is <code>null</code>, a <code>NullPointerException</code> is thrown.</p>
173 * @param expression The XPath expression
    [all...]
  /external/jsilver/src/com/google/clearsilver/jsilver/compiler/
JavaExpression.java 25 * Represents a node of a Java expression.
39 protected JavaExpression cast(JavaExpression expression) {
40 if (expression.getType() == VAR_NAME) {
41 expression = expression.cast(DATA);
43 return call(Type.STRING, "asString", expression);
48 protected JavaExpression cast(JavaExpression expression) {
49 if (expression.getType() == VAR_NAME) {
50 expression = expression.cast(DATA)
    [all...]
  /external/e2fsprogs/intl/
plural-exp.h 0 /* Expression parsing and evaluation for plural form selection.
34 struct expression struct
64 struct expression *args[3]; /* Up to three arguments. */
73 struct expression *res;
82 binary incompatible changes in 'struct expression'. Furthermore,
104 extern void FREE_EXPRESSION (struct expression *exp)
107 extern struct expression GERMANIC_PLURAL attribute_hidden;
109 struct expression **pluralp,
114 extern unsigned long int plural_eval (struct expression *pexp,
plural-exp.c 0 /* Expression parsing for plural form selection.
33 /* These structs are the constant expression for the germanic plural
34 form determination. It represents the expression "n != 1". */
35 static const struct expression plvar =
40 static const struct expression plone =
49 struct expression GERMANIC_PLURAL =
57 [0] = (struct expression *) &plvar,
58 [1] = (struct expression *) &plone
70 static struct expression plvar;
71 static struct expression plone
    [all...]
plural.y 2 /* Expression parsing for plural form selection.
52 struct expression *exp;
62 static struct expression *
63 new_exp (int nargs, enum operator op, struct expression * const *args)
66 struct expression *newp;
73 /* Allocate a new expression. */
74 newp = (struct expression *) malloc (sizeof (*newp));
91 static inline struct expression *
97 static inline struct expression *
98 new_exp_1 (enum operator op, struct expression *right
    [all...]
  /external/chromium_org/third_party/libjingle/source/talk/base/
common.cc 72 const char* expression) {
74 custom_assert_logger_(function, file, line, expression);
77 << expression << " @ " << function;
  /external/chromium/chrome/common/extensions/docs/examples/extensions/irc/servlet/
util.js 16 var expression = ".//*[@class='" + className + "']";
17 return document.evaluate(expression, node,
  /external/chromium_org/chrome/common/extensions/docs/examples/extensions/irc/servlet/
util.js 16 var expression = ".//*[@class='" + className + "']";
17 return document.evaluate(expression, node,
  /external/chromium_org/third_party/WebKit/Source/core/xml/
XPathEvaluator.cpp 42 PassRefPtr<XPathExpression> XPathEvaluator::createExpression(const String& expression, XPathNSResolver* resolver, ExceptionState& es)
44 return XPathExpression::createExpression(expression, resolver, es);
52 PassRefPtr<XPathResult> XPathEvaluator::evaluate(const String& expression, Node* contextNode,
60 RefPtr<XPathExpression> expr = createExpression(expression, resolver, es);
DocumentXPathEvaluator.h 47 const String& expression, XPathNSResolver*, ExceptionState&);
50 const String& expression, Node* contextNode, XPathNSResolver*,
XPathEvaluator.h 47 PassRefPtr<XPathExpression> createExpression(const String& expression, XPathNSResolver*, ExceptionState&);
49 PassRefPtr<XPathResult> evaluate(const String& expression, Node* contextNode,
  /external/chromium/third_party/libjingle/source/talk/base/
common.cc 65 const char * expression) {
68 << expression << " @ " << function;
  /external/chromium_org/third_party/libxml/src/
testRegexp.c 40 char expression[5000]; local
49 while (fgets(expression, 4500, input) != NULL) {
50 len = strlen(expression);
53 ((expression[len] == '\n') || (expression[len] == '\t') ||
54 (expression[len] == '\r') || (expression[len] == ' '))) len--;
55 expression[len + 1] = 0;
57 if (expression[0] == '#')
59 if ((expression[0] == '=') && (expression[1] == '>'))
94 char expression[5000]; local
    [all...]
  /external/chromium_org/third_party/angle_dx11/src/common/
debug.h 73 #define ASSERT(expression) do { \
74 if(!(expression)) \
75 ERR("\t! Assert failed in %s(%d): "#expression"\n", __FUNCTION__, __LINE__); \
76 assert(expression); \
79 #define ASSERT(expression) (void(0))
  /external/robolectric/src/main/java/com/xtremelabs/robolectric/res/
XpathResourceXmlLoader.java 14 private String expression; field in class:XpathResourceXmlLoader
16 public XpathResourceXmlLoader(ResourceExtractor resourceExtractor, String expression) {
18 this.expression = expression;
22 XPathExpression stringsXPath = XPathFactory.newInstance().newXPath().compile(expression);
  /external/guava/guava/src/com/google/common/base/
Preconditions.java 38 * Note that the sense of the expression is inverted; with {@code Preconditions}
64 * Ensures the truth of an expression involving one or more parameters to the
67 * @param expression a boolean expression
68 * @throws IllegalArgumentException if {@code expression} is false
70 public static void checkArgument(boolean expression) {
71 if (!expression) {
77 * Ensures the truth of an expression involving one or more parameters to the
80 * @param expression a boolean expression
    [all...]
  /packages/apps/UnifiedEmail/src/com/android/mail/lib/base/
Preconditions.java 33 * Note that the sense of the expression is inverted; with {@code Preconditions}
58 * Ensures the truth of an expression involving one or more parameters to the
61 * @param expression a boolean expression
62 * @throws IllegalArgumentException if {@code expression} is false
64 public static void checkArgument(boolean expression) {
65 if (!expression) {
71 * Ensures the truth of an expression involving one or more parameters to the
74 * @param expression a boolean expression
    [all...]
  /packages/apps/UnifiedEmail/src/com/google/android/mail/common/base/
Preconditions.java 33 * Note that the sense of the expression is inverted; with {@code Preconditions}
58 * Ensures the truth of an expression involving one or more parameters to the
61 * @param expression a boolean expression
62 * @throws IllegalArgumentException if {@code expression} is false
64 public static void checkArgument(boolean expression) {
65 if (!expression) {
71 * Ensures the truth of an expression involving one or more parameters to the
74 * @param expression a boolean expression
    [all...]
  /external/chromium_org/content/public/android/javatests/src/org/chromium/content/browser/
ViewportTest.java 36 protected String evaluateStringValue(String expression) throws Throwable {
38 getTestCallbackHelperContainer(), expression);
41 protected float evaluateFloatValue(String expression) throws Throwable {
42 return Float.valueOf(evaluateStringValue(expression));
45 protected int evaluateIntegerValue(String expression) throws Throwable {
46 return Integer.valueOf(evaluateStringValue(expression));
  /external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime.Test/
SimpleExpression.g3 43 expression

Completed in 693 milliseconds

12 3 4 5 6 7 8 91011>>