Searched defs:expression (Results 1 - 25 of 125) sorted by relevance

12345

/external/chromium/third_party/libjingle/source/talk/base/
H A Dcommon.cc65 const char * expression) {
68 << expression << " @ " << function;
64 LogAssert(const char * function, const char * file, int line, const char * expression) argument
H A Dcommon.h82 const char * expression);
85 int line, const char * expression) {
87 LogAssert(function, file, line, expression);
84 Assert(bool result, const char * function, const char * file, int line, const char * expression) argument
/external/bison/lib/
H A Dmsvc-inval.c32 gl_msvc_invalid_parameter_handler (const wchar_t *expression, argument
49 gl_msvc_invalid_parameter_handler (const wchar_t *expression, argument
98 gl_msvc_invalid_parameter_handler (const wchar_t *expression, argument
/external/chromium_org/chrome/browser/chromeos/login/
H A Dresource_loader_browsertest.cc75 void JSExpect(const std::string& expression) { argument
79 "window.domAutomationController.send(!!(" + expression + "));",
81 EXPECT_TRUE(result) << expression;
/external/chromium_org/content/app/
H A Dstartup_helper_win.cc21 void InvalidParameter(const wchar_t* expression, const wchar_t* function, argument
/external/chromium_org/content/public/android/javatests/src/org/chromium/content/browser/
H A DViewportTest.java36 protected String evaluateStringValue(String expression) throws Throwable { argument
38 getTestCallbackHelperContainer(), expression);
41 protected float evaluateFloatValue(String expression) throws Throwable { argument
42 return Float.valueOf(evaluateStringValue(expression));
45 protected int evaluateIntegerValue(String expression) throws Throwable { argument
46 return Integer.valueOf(evaluateStringValue(expression));
/external/chromium_org/third_party/WebKit/Source/bindings/v8/custom/
H A DV8DocumentCustom.cpp67 String expression = toWebCoreString(args[0]); local
83 V8TRYCATCH_VOID(RefPtr<XPathResult>, result, DocumentXPathEvaluator::evaluate(document.get(), expression, contextNode.get(), resolver.get(), type, inResult.get(), es));
H A DV8JavaScriptCallFrameCustom.cpp42 String expression = toWebCoreStringWithUndefinedOrNullCheck(args[0]); local
43 v8SetReturnValue(args, impl->evaluate(expression));
/external/chromium_org/third_party/WebKit/Source/core/xml/
H A DXPathEvaluator.cpp42 PassRefPtr<XPathExpression> XPathEvaluator::createExpression(const String& expression, XPathNSResolver* resolver, ExceptionState& es) argument
44 return XPathExpression::createExpression(expression, resolver, es);
52 PassRefPtr<XPathResult> XPathEvaluator::evaluate(const String& expression, Node* contextNode, argument
60 RefPtr<XPathExpression> expr = createExpression(expression, resolver, es);
H A DXPathExpression.cpp43 PassRefPtr<XPathExpression> XPathExpression::createExpression(const String& expression, XPathNSResolver* resolver, ExceptionState& es) argument
48 expr->m_topExpression = parser.parseStatement(expression, resolver, es);
76 // It is not specified what to do if type conversion fails while evaluating an expression.
H A DDocumentXPathEvaluator.cpp57 const String& expression, XPathNSResolver* resolver, ExceptionState& es)
62 return suplement->m_xpathEvaluator->createExpression(expression, resolver, es);
73 PassRefPtr<XPathResult> DocumentXPathEvaluator::evaluate(ScriptExecutionContext* context, const String& expression, argument
80 return suplement->m_xpathEvaluator->evaluate(expression, contextNode, resolver, type, result, es);
56 createExpression(ScriptExecutionContext* context, const String& expression, XPathNSResolver* resolver, ExceptionState& es) argument
/external/chromium_org/third_party/libjingle/source/talk/base/
H A Dcommon.cc72 const char* expression) {
74 custom_assert_logger_(function, file, line, expression);
77 << expression << " @ " << function;
71 LogAssert(const char* function, const char* file, int line, const char* expression) argument
H A Dunittest_main.cc24 void TestInvalidParameterHandler(const wchar_t* expression, argument
30 LOG(LS_ERROR) << expression << std::endl << function << std::endl << file
/external/chromium_org/third_party/mesa/src/src/glsl/glcpp/
H A Dglcpp-parse.y165 %type <ival> expression INTEGER operator SPACE integer_constant
203 IF_EXPANDED expression NEWLINE {
206 | ELIF_EXPANDED expression NEWLINE {
256 /* Be careful to only evaluate the 'if' expression if
276 /* #if without an expression is only an error if we
281 glcpp_error(& @1, parser, "#if with no expression");
296 /* Be careful to only evaluate the 'elif' expression
316 /* #elif without an expression is an error unless we
321 glcpp_error(& @1, parser, "#elif with no expression");
327 glcpp_warning(& @1, parser, "ignoring illegal #elif without expression");
374 expression: label
[all...]
/external/eigen/Eigen/src/Core/
H A DNoAlias.h18 * \brief Pseudo expression providing an operator = assuming no aliasing
22 * This class represents an expression with special assignment operators
23 * assuming no aliasing between the target expression and the source expression.
24 * More precisely it alloas to bypass the EvalBeforeAssignBit flag of the source expression.
35 NoAlias(ExpressionType& expression) : m_expression(expression) {} argument
89 /** \returns a pseudo expression of \c *this with an operator= assuming
90 * no aliasing between \c *this and the source expression.
95 * the source expression contain
[all...]
H A DSwap.h118 ExpressionType& expression() const { return m_expression; } function in class:Eigen::SwapWrapper
/external/jsilver/src/com/google/streamhtmlparser/impl/
H A DStateTableTransition.java25 * <li>An expression which consists of one or more characters and/or
37 private final String expression; field in class:StateTableTransition
51 expression, from, to);
54 StateTableTransition(String expression, InternalState from, argument
57 Preconditions.checkNotNull(expression);
60 this.expression = expression;
66 return expression;
/external/mesa3d/src/glsl/glcpp/
H A Dglcpp-parse.y165 %type <ival> expression INTEGER operator SPACE integer_constant
203 IF_EXPANDED expression NEWLINE {
206 | ELIF_EXPANDED expression NEWLINE {
256 /* Be careful to only evaluate the 'if' expression if
276 /* #if without an expression is only an error if we
281 glcpp_error(& @1, parser, "#if with no expression");
296 /* Be careful to only evaluate the 'elif' expression
316 /* #elif without an expression is an error unless we
321 glcpp_error(& @1, parser, "#elif with no expression");
327 glcpp_warning(& @1, parser, "ignoring illegal #elif without expression");
374 expression: label
[all...]
/external/robolectric/src/main/java/com/xtremelabs/robolectric/res/
H A DXpathResourceXmlLoader.java14 private String expression; field in class:XpathResourceXmlLoader
16 public XpathResourceXmlLoader(ResourceExtractor resourceExtractor, String expression) { argument
18 this.expression = expression;
22 XPathExpression stringsXPath = XPathFactory.newInstance().newXPath().compile(expression);
/external/robolectric/src/main/java/com/xtremelabs/robolectric/shadows/
H A DShadowTextUtils.java68 public static String[] split(String text, String expression) { argument
73 return text.split(expression);
/external/apache-xml/src/main/java/org/apache/xpath/
H A DArg.java29 * XObject or a String containing an expression.
104 /** Field m_expression: Stored expression value of this argument.
111 * Get the value expression for this argument.
113 * @return String containing the expression previously stored into this
123 * Set the value expression for this argument.
125 * @param expr String containing the expression to be stored as this
176 * value (either expression string or value XObject). isVisible
191 * Construct a parameter argument that contains an expression.
194 * @param expression String to be stored as this argument's value expression
197 Arg(QName qname, String expression, boolean isFromWithParam) argument
[all...]
/external/chromium_org/third_party/libxml/src/
H A DtestXPath.c118 char expression[5000]; local
127 while (fgets(expression, 4500, input) != NULL) {
128 len = strlen(expression);
131 ((expression[len] == '\n') || (expression[len] == '\t') ||
132 (expression[len] == '\r') || (expression[len] == ' '))) len--;
133 expression[len + 1] = 0;
135 printf("\n========================\nExpression: %s\n", expression) ;
136 testXPath(expression);
[all...]
/external/chromium_org/tools/gn/
H A Dinput_conversion.cc101 scoped_ptr<ParseNode> expression = Parser::ParseExpression(tokens, err); local
109 if (!expression)
114 if (!expression->AsList() && !expression->AsLiteral()) {
126 Value result = expression->Execute(&scope, &nested_err);
/external/eclipse-windowbuilder/propertysheet/src/org/eclipse/wb/internal/core/utils/check/
H A DAssert.java45 * @param expression
46 * the boolean expression of the check
51 public static boolean isLegal(boolean expression) { argument
52 return isLegal(expression, ""); //$NON-NLS-1$
60 * @param expression
61 * the boolean expression of the check
68 public static boolean isLegal(boolean expression, String message) { argument
69 if (!expression) {
72 return expression;
243 * @param expression
247 isTrue(boolean expression) argument
262 isTrue(boolean expression, String message) argument
284 isTrue(boolean expression, String errorFormat, Object... args) argument
302 isTrue2(boolean expression, String errorFormat, Object... args) argument
[all...]
/external/guava/guava/src/com/google/common/base/
H A DPreconditions.java38 * 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) { argument
71 if (!expression) {
77 * Ensures the truth of an expression involving one or more parameters to the
80 * @param expression a boolean expression
85 checkArgument( boolean expression, @Nullable Object errorMessage) argument
111 checkArgument(boolean expression, @Nullable String errorMessageTemplate, @Nullable Object... errorMessageArgs) argument
127 checkState(boolean expression) argument
142 checkState( boolean expression, @Nullable Object errorMessage) argument
168 checkState(boolean expression, @Nullable String errorMessageTemplate, @Nullable Object... errorMessageArgs) argument
[all...]

Completed in 1269 milliseconds

12345