HomeSort by relevance Sort by last modified time
    Searched full:expression (Results 426 - 450 of 6680) sorted by null

<<11121314151617181920>>

  /external/mesa3d/src/glsl/tests/lower_jumps/
lower_returns_3.opt_test 14 ((if (expression bool > (var_ref a) (constant float (0.000000)))
15 ((if (expression bool > (var_ref b) (constant float (0.000000)))
  /external/v8/src/ast/
ast-literal-reindexer.h 19 void Reindex(Expression* pattern);
28 void VisitArguments(ZoneList<Expression*>* arguments);
  /external/v8/src/parsing/
preparser.h 12 #include "src/parsing/expression-classifier.h"
124 static PreParserExpression Spread(PreParserExpression expression) {
268 // At the moment PreParser doesn't track these expression types.
287 // Dummy implementation for making expression->somefunc() work in both Parser
327 // Expression ASTNode --- This is by necessity, due to the fact that
328 // Expression nodes may be represented as multiple Types, not exclusively
377 // Creates expression statement from expression.
381 PreParserExpression expression) {
382 if (expression.IsUseStrictLiteral())
    [all...]
  /toolchain/binutils/binutils-2.25/gas/testsuite/gas/mips/
micromips-ill.l 6 .*:6: Error: floating-point expression required `li\.s \$4,foo'
8 .*:8: Error: floating-point expression required `li\.s \$4,\$4'
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.8/x86_64-linux/include/c++/4.8/bits/
regex.h 41 * @brief Class regex_traits. Describes aspects of a regular expression.
43 * A regular expression traits class that satisfies the requirements of
331 * Storage for the regular expression is allocated and deallocated as
364 * Constructs a basic regular expression that does not match any
374 * @brief Constructs a basic regular expression from the
379 * containing a regular expression.
382 * @throws regex_error if @p __p is not a valid regular expression.
392 * @brief Constructs a basic regular expression from the sequence
396 * expression.
398 * expression
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/x86_64-linux/include/c++/4.8/bits/
regex.h 41 * @brief Class regex_traits. Describes aspects of a regular expression.
43 * A regular expression traits class that satisfies the requirements of
331 * Storage for the regular expression is allocated and deallocated as
364 * Constructs a basic regular expression that does not match any
374 * @brief Constructs a basic regular expression from the
379 * containing a regular expression.
382 * @throws regex_error if @p __p is not a valid regular expression.
392 * @brief Constructs a basic regular expression from the sequence
396 * expression.
398 * expression
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/c++/4.8.3/bits/
regex.h 41 * @brief Class regex_traits. Describes aspects of a regular expression.
43 * A regular expression traits class that satisfies the requirements of
331 * Storage for the regular expression is allocated and deallocated as
364 * Constructs a basic regular expression that does not match any
374 * @brief Constructs a basic regular expression from the
379 * containing a regular expression.
382 * @throws regex_error if @p __p is not a valid regular expression.
392 * @brief Constructs a basic regular expression from the sequence
396 * expression.
398 * expression
    [all...]
  /art/test/474-fp-sub-neg/
info.txt 5 the following expression:
  /external/clang/test/Analysis/
inline4.c 9 // Do not remove block-level expression bindings of caller when analyzing
  /external/clang/test/CXX/expr/expr.unary/expr.new/
p20-0x.cpp 12 S* p = new (0) S; // expected-error{{'new' expression with placement arguments refers to non-placement 'operator delete'}}
  /external/clang/test/Lexer/
cxx0x_raw_string_delim_length.cpp 7 const char *str4 = R"abcdefghijkmnopqrstuvwxyz(abcdef)abcdefghijkmnopqrstuvwxyz"; // expected-error {{raw string delimiter longer than 16 characters}} expected-error {{expected expression}}
eof-char.c 7 // expected-warning@+1{{missing terminating ' character}} expected-error@+1{{expected expression}} expected-error@+1{{expected ';'}}
eof-string.c 7 // expected-warning@+1{{missing terminating '"' character}} expected-error@+1{{expected expression}} expected-error@+1{{expected ';'}}
  /external/clang/test/Parser/
expressions.c 65 int x1 = sizeof int; // expected-error {{expected parentheses around type name in sizeof expression}}
66 int x2 = sizeof struct pr16992; // expected-error {{expected parentheses around type name in sizeof expression}}
67 int x3 = __alignof int; // expected-error {{expected parentheses around type name in __alignof expression}}
68 int x4 = _Alignof int; // expected-error {{expected parentheses around type name in _Alignof expression}}
namespaces.cpp 15 int k = ({namespace {}}); // expected-error {{statement expression not allowed at file scope}}
  /external/clang/test/Sema/
parentheses.cpp 8 // expected-note {{place parentheses around the '+' expression to silence this warning}} \
9 // expected-note {{place parentheses around the '?:' expression to evaluate it first}}
16 // expected-note {{place parentheses around the '-' expression to silence this warning}} \
17 // expected-note {{place parentheses around the '?:' expression to evaluate it first}}
24 // expected-note {{place parentheses around the '*' expression to silence this warning}} \
25 // expected-note {{place parentheses around the '?:' expression to evaluate it first}}
43 // expected-note {{place parentheses around the '<<' expression to silence this warning}} \
44 // expected-note {{place parentheses around the '?:' expression to evaluate it first}}
51 // expected-note {{place parentheses around the '<<' expression to silence this warning}} \
52 // expected-note {{place parentheses around comparison expression to evaluate it first}
    [all...]
stmtexprs.c 1 // RUN: %clang_cc1 %s -verify -pedantic -fsyntax-only -Wno-gnu-statement-expression
  /external/clang/test/SemaCXX/
call-with-static-chain.cpp 13 __builtin_call_with_static_chain(A().f(), f); // expected-error {{first argument to __builtin_call_with_static_chain must be a non-member call expression}}
new-array-size-conv.cpp 27 // expected-warning@-2{{implicit conversion from array size expression of type 'ValueInt' to integral type 'int' is a C++11 extension}}
32 // expected-warning@-2{{implicit conversion from array size expression of type 'ValueEnum' to enumeration type 'E' is a C++11 extension}}
34 (void)new int[ValueBoth()]; // expected-error{{ambiguous conversion of array size expression of type 'ValueBoth' to an integral or enumeration type}}
36 (void)new int[TwoValueInts()]; // expected-error{{ambiguous conversion of array size expression of type 'TwoValueInts' to an integral or enumeration type}}
types_compatible_p.cpp 8 // expected-error{{expected expression}}
  /external/clang/test/SemaObjC/
boxing-illegal.m 33 id boxed = @(p); // expected-error {{illegal type 'point' used in a boxed expression}}
38 id boxed_null = @(null); // expected-error {{illegal type 'void *' used in a boxed expression}}
40 id boxed_numbers = @(numbers); // expected-error {{illegal type 'int *' used in a boxed expression}}
57 box = @(*(enum ForwE*)p); // expected-error {{incomplete type 'enum ForwE' used in a boxed expression}}
method-lookup-5.m 10 // expected-warning {{ncompatible pointer to integer conversion initializing 'int' with an expression of type 'id'}}
property-expression-error.m 16 &object.index; // expected-error {{address of property expression requested}}
  /external/clang/test/SemaObjCXX/
boxing-illegal-types.mm 33 id boxed = @(p); // expected-error {{illegal type 'point' used in a boxed expression}}
38 id boxed_null = @(null); // expected-error {{illegal type 'void *' used in a boxed expression}}
40 id boxed_numbers = @(numbers); // expected-error {{illegal type 'int *' used in a boxed expression}}
57 box = @(*(enum ForwE*)p); // expected-error {{incomplete type 'enum ForwE' used in a boxed expression}}
capturing-flexible-array-in-block.mm 7 [] {return a.x;}(); // expected-error {{variable 'a' with flexible array member cannot be captured in a lambda expression}}

Completed in 431 milliseconds

<<11121314151617181920>>