Home
last modified time | relevance | path

Searched refs:expression (Results 1 – 25 of 586) sorted by relevance

12345678910>>...24

/external/jsilver/src/com/google/clearsilver/jsilver/syntax/
Djsilver.sablecc202 New expression.sequence([expression_list.expression]))}
208 New expression.sequence([expression_list.expression]))}
214 New expression.sequence([expression_list.expression]))}
220 New expression.sequence([expression_list.expression]))}
222 | {set} cs_open set command_delimiter variable assignment expression cs_close
227 expression.expression)}
235 | {escape} cs_open escape command_delimiter expression cs_close
241 expression.expression,
244 | {autoescape} cs_open autoescape command_delimiter expression cs_close
250 expression.expression,
[all …]
/external/jsilver/src/com/google/clearsilver/jsilver/compiler/
DJavaExpression.java39 protected JavaExpression cast(JavaExpression expression) { in cast() argument
40 if (expression.getType() == VAR_NAME) { in cast()
41 expression = expression.cast(DATA); in cast()
43 return call(Type.STRING, "asString", expression); in cast()
48 protected JavaExpression cast(JavaExpression expression) { in cast() argument
49 if (expression.getType() == VAR_NAME) { in cast()
50 expression = expression.cast(DATA); in cast()
52 return call(Type.INT, "asInt", expression); in cast()
57 protected JavaExpression cast(JavaExpression expression) { in cast() argument
58 if (expression.getType() == VAR_NAME) { in cast()
[all …]
/external/antlr/antlr-3.4/runtime/Python/tests/
Dt042ast.g28 : 'assert'^ x=expression (':'! y=expression)? ';'!
32 : 'if'^ expression s1=statement ('else'! s2=statement)?
36 : 'while'^ expression statement
40 : 'return'^ expression? ';'!
64 : expression -> ^(EXPR expression)
77 : expression? statement* type+
78 -> ^(EXPR expression? statement* type+)
90 : 'for' '(' start=statement ';' expression ';' next=statement ')' statement
91 -> ^('for' $start expression $next statement)
119 : r=statement expression -> ^($r expression)
[all …]
/external/antlr/antlr-3.4/runtime/JavaScript/tests/functional/
Dt042ast.g34 : 'assert'^ x=expression (':'! y=expression)? ';'!
38 : 'if'^ expression s1=statement ('else'! s2=statement)?
42 : 'while'^ expression statement
46 : 'return'^ expression? ';'!
70 : expression -> ^(EXPR expression)
83 : expression? statement* type+
84 -> ^(EXPR expression? statement* type+)
96 : 'for' '(' start=statement ';' expression ';' next=statement ')' statement
97 -> ^('for' $start expression $next statement)
125 : r=statement expression -> ^($r expression)
[all …]
/external/eclipse-windowbuilder/propertysheet/src/org/eclipse/wb/internal/core/utils/check/
DAssert.java51 public static boolean isLegal(boolean expression) { in isLegal() argument
52 return isLegal(expression, ""); //$NON-NLS-1$ in isLegal()
68 public static boolean isLegal(boolean expression, String message) { in isLegal() argument
69 if (!expression) { in isLegal()
72 return expression; in isLegal()
247 public static boolean isTrue(boolean expression) { in isTrue() argument
248 return isTrue(expression, ""); //$NON-NLS-1$ in isTrue()
262 public static boolean isTrue(boolean expression, String message) { in isTrue() argument
263 if (!expression) { in isTrue()
266 return expression; in isTrue()
[all …]
/external/e2fsprogs/intl/
Dplural.y52 struct expression *exp;
62 static struct expression *
63 new_exp (int nargs, enum operator op, struct expression * const *args) in new_exp()
66 struct expression *newp; in new_exp()
74 newp = (struct expression *) malloc (sizeof (*newp)); in new_exp()
91 static inline struct expression *
97 static inline struct expression *
98 new_exp_1 (enum operator op, struct expression *right) in new_exp_1()
100 struct expression *args[1]; in new_exp_1()
106 static struct expression *
[all …]
Dplural-exp.c35 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;
72 struct expression GERMANIC_PLURAL;
99 EXTRACT_PLURAL_EXPRESSION (const char *nullentry, struct expression **pluralp, in EXTRACT_PLURAL_EXPRESSION()
Dplural-exp.h34 struct expression struct
64 struct expression *args[3]; /* Up to three arguments. */ argument
73 struct expression *res; argument
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,
/external/jsilver/src/com/google/streamhtmlparser/impl/
DStateTableTransition.java37 private final String expression; field in StateTableTransition
51 expression, from, to); in toString()
54 StateTableTransition(String expression, InternalState from, in StateTableTransition() argument
57 Preconditions.checkNotNull(expression); in StateTableTransition()
60 this.expression = expression; in StateTableTransition()
66 return expression; in getExpression()
/external/v8/test/mjsunit/
Ddebug-evaluate-with-context.js102 in_top_frame: function(exec_state, expression, additional_context) { argument
103 return exec_state.frame(0).evaluate(expression, void 0, additional_context).value();
105 globally: function(exec_state, expression, additional_context) { argument
106 return exec_state.evaluateGlobal(expression, void 0, additional_context).value();
115 function evaluateViaProtocol(exec_state, expression, additional_context, frame_argument_adder) { argument
117 …_json = {"seq":17,"type":"request","command":"evaluate", arguments: { "expression": expression } }; property
136 in_top_frame: function(exec_state, expression, additional_context) { argument
137 …return evaluateViaProtocol(exec_state, expression, additional_context, function(args) { args.frame…
139 globally: function(exec_state, expression, additional_context) { argument
140 …return evaluateViaProtocol(exec_state, expression, additional_context, function(args) { args.globa…
/external/webkit/LayoutTests/fast/dom/Geolocation/script-tests/
Dargument-types.js3 function shouldNotThrow(expression) argument
6 eval(expression);
7 testPassed(expression + " did not throw exception.");
9 testFailed(expression + " should not throw exception. Threw exception " + e);
13 function test(expression, expressionShouldThrow, expectedException) { argument
16 shouldThrow(expression, '(function() { return "' + expectedException + '"; })();');
18 …shouldThrow(expression, '(function() { return "Error: TYPE_MISMATCH_ERR: DOM Exception 17"; })();'…
20 shouldNotThrow(expression);
/external/guava/guava/src/com/google/common/base/
DPreconditions.java70 public static void checkArgument(boolean expression) { in checkArgument() argument
71 if (!expression) { in checkArgument()
86 boolean expression, @Nullable Object errorMessage) { in checkArgument() argument
87 if (!expression) { in checkArgument()
111 public static void checkArgument(boolean expression, in checkArgument() argument
114 if (!expression) { in checkArgument()
127 public static void checkState(boolean expression) { in checkState() argument
128 if (!expression) { in checkState()
143 boolean expression, @Nullable Object errorMessage) { in checkState() argument
144 if (!expression) { in checkState()
[all …]
/external/clang/test/Parser/
Dobjc-messaging-1.m10 // expected-warning 2{{expression result unused}}
12 // expected-warning 2{{expression result unused}}
14 // expected-warning 4{{expression result unused}}
16 // expected-warning 2{{expression result unused}}
18 // expected-warning 2{{expression result unused}}
20 // expected-warning 2{{expression result unused}}
22 // Comma expression as receiver (rdar://6222856)
24 // expected-warning 2{{expression result unused}}
/external/webkit/Source/WebCore/inspector/front-end/
DWatchExpressionsSidebarPane.js93 function appendResult(expression, watchIndex, result) argument
95 var property = new WebInspector.RemoteObjectProperty(expression, result);
138 var expression = this.watchExpressions[i];
139 if (!expression)
142 …nsole.evalInInspectedWindow("(" + expression + ")", this._watchObjectGroupId, false, appendResult.…
259 applyExpression: function(expression, updateInterface) argument
261 expression = expression.trim();
263 if (!expression)
264 expression = null;
266 this.property.name = expression;
[all …]
/external/webkit/Tools/TestWebKitAPI/
DTest.h82 …_ASSERT_HELPER(expression, returnStatement) do { if (!(expression)) { TestsController::shared().te… argument
83 #define TEST_ASSERT(expression) _TEST_ASSERT_HELPER(expression, return) argument
84 #define TEST_ASSERT_RETURN(expression, returnValue) _TEST_ASSERT_HELPER(expression, return (returnV… argument
/external/antlr/antlr-3.4/runtime/Ruby/test/functional/parser/
Dcalc.rb67 def evaluate( expression ) argument
68 lexer = TestCalc::Lexer.new( expression )
85 tests.each do |expression, true_value|
86 example "should parse '#{ expression }'" do
87 parser_value, errors = evaluate( expression )
/external/webkit/Source/JavaScriptCore/tests/mozilla/ecma_2/Statements/
Dtry-003.js36 function TrySomething( expression, throwing ) { argument
47 eval( expression );
64 "eval( " + expression +" )",
69 "eval( " + expression +" )",
74 "eval( " + expression +" )",
Dtry-012.js45 function TrySomething( expression, throwing ) { argument
64 eval( expression );
79 "eval( " + expression +" ): evaluated inner finally block",
84 "eval( " + expression +" ): evaluated outer catch block ",
89 "eval( " + expression +" ): evaluated outer finally block",
/external/apache-xml/src/main/java/org/apache/xpath/jaxp/
DXPathImpl.java193 private XObject eval(String expression, Object contextItem) in eval() argument
195 org.apache.xpath.XPath xpath = new org.apache.xpath.XPath( expression, in eval()
256 public Object evaluate(String expression, Object item, QName returnType) in evaluate() argument
258 if ( expression == null ) { in evaluate()
281 XObject resultObject = eval( expression, item ); in evaluate()
369 public String evaluate(String expression, Object item) in evaluate() argument
371 return (String)this.evaluate( expression, item, XPathConstants.STRING ); in evaluate()
391 public XPathExpression compile(String expression) in compile() argument
393 if ( expression == null ) { in compile()
400 org.apache.xpath.XPath xpath = new XPath (expression, null, in compile()
[all …]
/external/webkit/Source/WebCore/inspector/
DInspectorRuntimeAgent.cpp52 void InspectorRuntimeAgent::evaluate(ErrorString* errorString, const String& expression, const Stri… in evaluate() argument
56 …injectedScript.evaluate(errorString, expression, objectGroup ? *objectGroup : "", includeCommandLi… in evaluate()
59 …uateOn(ErrorString* errorString, const String& objectId, const String& expression, RefPtr<Inspecto… in evaluateOn() argument
63 injectedScript.evaluateOn(errorString, objectId, expression, result); in evaluateOn()
73 …rString* errorString, const String& objectId, const String& propertyName, const String& expression) in setPropertyValue() argument
77 injectedScript.setPropertyValue(errorString, objectId, propertyName, expression); in setPropertyValue()
/external/clang/include/clang/Basic/
DDiagnosticASTKinds.td12 // Constant expression diagnostics. These (and their users) belong in Sema.
16 " a reinterpret_cast|cast from %1}0 is not allowed in a constant expression">;
28 "be used in a constant expression">;
30 "cannot evaluate virtual function call in a constant expression">;
33 "in a constant expression">;
35 "non-literal type %0 cannot be used in a constant expression">;
38 "%select{temporary|%3}2 is not a constant expression">;
40 "%select{array of %2 elements|non-array object}1 in a constant expression">;
58 "%select{temporary|%2}1 is not a constant expression">;
70 "initializer of %0 is not a constant expression">;
[all …]
/external/webkit/Source/ThirdParty/ANGLE/src/compiler/
Ddebug.h36 #define ASSERT(expression) do { \ argument
37 if(!(expression)) \
38 Trace("Assert failed: %s(%d): "#expression"\n", __FUNCTION__, __LINE__); \
39 assert(expression); \
/external/robolectric/src/main/java/com/xtremelabs/robolectric/res/
DXpathResourceXmlLoader.java14 private String expression; field in XpathResourceXmlLoader
16 public XpathResourceXmlLoader(ResourceExtractor resourceExtractor, String expression) { in XpathResourceXmlLoader() argument
18 this.expression = expression; in XpathResourceXmlLoader()
22 XPathExpression stringsXPath = XPathFactory.newInstance().newXPath().compile(expression); in processResourceXml()
/external/chromium/base/
Dspin_wait.h34 #define SPIN_FOR_1_SECOND_OR_UNTIL_TRUE(expression) \ argument
36 (expression))
38 #define SPIN_FOR_TIMEDELTA_OR_UNTIL_TRUE(delta, expression) do { \ argument
41 while (!(expression)) { \
/external/eigen/doc/
DI01_TopicLazyEvaluation.dox9 When you write a line of code involving a complex expression such as
13 …h sub-expression, whether to evaluate it into a temporary variable. Indeed, in certain cases it is…
15 A traditional math library without expression templates always evaluates all sub-expressions into t…
21 …y evaluation</i> as an expression is getting evaluated as late as possible, instead of immediately…
39expression \c b has the evaluate-before-assigning \link flags flag\endlink. The most important exa…
51expression such as <tt>a + b</tt> where \c b is already an expression having the evaluate-before-n…
57 …st model shows that the total cost of an operation is reduced if a sub-expression gets evaluated i…
61 Here, provided the matrices have at least 2 rows and 2 columns, each coefficienct of the expression

12345678910>>...24