HomeSort by relevance Sort by last modified time
    Searched full:expression (Results 176 - 200 of 5051) sorted by null

1 2 3 4 5 6 78 91011>>

  /external/clang/test/SemaCXX/
for-range-dereference.cpp 40 for (auto i : pt) { } // expected-error{{invalid range expression of type 'T *'; did you mean to dereference it with '*'?}}
45 for (auto i : parr) { }// expected-error{{invalid range expression of type 'int (*)[10]'; did you mean to dereference it with '*'?}}
50 for (auto i : pNB) { }// expected-error{{invalid range expression of type 'NoBegin *'; no viable 'begin' function available}}
52 for (auto i : ppNB) { }// expected-error{{invalid range expression of type 'NoBegin **'; no viable 'begin' function available}}
54 for (auto i : pppppNB) { }// expected-error{{invalid range expression of type 'NoBegin *****'; no viable 'begin' function available}}
57 for (auto i : ANE) { } // expected-error{{invalid range expression of type 'ADLNoEnd'; no viable 'end' function available}}
59 for (auto i : pANE) { } // expected-error{{invalid range expression of type 'ADLNoEnd *'; no viable 'begin' function available}}
63 expected-note {{when looking up 'end' function for range expression of type 'DeletedEnd'}}
66 for (auto i : pDE) { } // expected-error {{invalid range expression of type 'DeletedEnd *'; no viable 'begin' function available}}
74 for (auto i : pPE) { }// expected-error {{invalid range expression of type 'PrivateEnd *'}
    [all...]
warn-unused-value.cpp 14 box->i; // expected-warning {{expression result unused}}
15 box->j; // expected-warning {{expression result unused}}
29 NOP(f1 == f2); // expected-warning {{expression result unused}}
41 &x[0]; // expected-warning {{expression result unused}}
67 Unused(); // expected-warning {{expression result unused}}
68 Unused(1); // expected-warning {{expression result unused}}
69 Unused(1, 1); // expected-warning {{expression result unused}}
83 (void)typeid(++i); // expected-warning {{expression with side effects has no effect in an unevaluated context}}
91 (void)typeid(b.f()); // expected-warning {{expression with side effects will be evaluated despite being used as an operand to 'typeid'}}
warn-unused-value-cxx11.cpp 18 (void)noexcept(++i); // expected-warning {{expression with side effects has no effect in an unevaluated context}}
19 decltype(i++) j = 0; // expected-warning {{expression with side effects has no effect in an unevaluated context}}
35 (void)noexcept(i++); // expected-warning {{expression with side effects has no effect in an unevaluated context}}
36 (void)noexcept(i = 5); // expected-warning {{expression with side effects has no effect in an unevaluated context}}
40 (void)sizeof(s.f() = 5); // expected-warning {{expression with side effects has no effect in an unevaluated context}}
  /external/v8/test/mjsunit/compiler/
delete.js 30 // In an effect context, expression is always true.
32 // In an effect context, expression is always false.
35 // In a pure test context, expression is always true.
37 // In a pure test context, expression is always false.
39 // In a negated test context, expression is always false.
42 // In a hybrid test/value context, expression is always true, value
45 // In a hybrid test/value context, expression is always false, value
48 // In a hybrid test/value context, expression is always true, value
51 // In a hybrid test/value context, expression is always false, value
55 // In a hybrid value/test context, expression is always true, valu
    [all...]
  /external/jsilver/src/com/google/streamhtmlparser/impl/
StateTableTransition.java 25 * <li>An expression which consists of one or more characters and/or
37 private final String expression; field in class:StateTableTransition
50 return String.format("Expression: %s; From: %s; To: %s",
51 expression, from, to);
54 StateTableTransition(String expression, InternalState from,
57 Preconditions.checkNotNull(expression);
60 this.expression = expression;
66 return expression;
  /external/libxml2/result/XPath/expr/
base 3 Expression: 1
7 Expression: 1+2
11 Expression: 2*3
15 Expression: 1+2*3+4
19 Expression: (1+2)*(3+4)
  /external/libxml2/result/XPath/tests/
vidbase 3 Expression: id('chapter1')
12 Expression: id('chapter3')
21 Expression: id('chapter1')/p
30 Expression: id('chapter1')//p
39 Expression: id('chapter1')/p[1]
  /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/lldb/test/lang/objc/foundation/
TestObjCMethods2.py 2 Test more expression command sequences with objective-c.
18 """More expression commands for objective-c."""
24 """More expression commands for objective-c."""
30 """Test expression commands for NSArray."""
36 """Test expression commands for NSArray."""
42 """Test expression commands for NSString."""
48 """Test expression commands for NSString."""
102 """More expression commands for objective-c."""
114 self.expect("expression (char *)sel_getName(sel)",
130 self.expect("expression (char *)sel_getName(_cmd)"
    [all...]
  /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/libxml2/
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/clang/test/CXX/expr/expr.const/
p5-0x.cpp 3 // If an expression of literal class type is used in a context where an integral
4 // constant expression is required, then that class type shall have a single
45 // [expr.new]p6: Every constant-expression in a noptr-new-declarator shall be
46 // an integral constant expression
53 // value [...] shall be an integral constant expression.
62 // alignas(assignment-expression), the assignment-expression shall be an
63 // integral constant expression
69 // [dcl.array]p1: If the constant-expression is present, it shall be an integral
70 // constant expression
    [all...]
  /external/clang/test/CXX/expr/expr.prim/expr.prim.lambda/
p13.cpp 5 void g1(int = ([i]{ return i; })()); // expected-error{{lambda expression in default argument cannot capture any entity}}
6 void g2(int = ([i]{ return 0; })()); // expected-error{{lambda expression in default argument cannot capture any entity}}
7 void g3(int = ([=]{ return i; })()); // expected-error{{lambda expression in default argument cannot capture any entity}}
  /external/clang/test/Index/
arc-complete.m 11 // CHECK-CC1: NotImplemented:{TypedText __bridge}{HorizontalSpace }{Placeholder type}{RightParen )}{Placeholder expression} (40)
12 // CHECK-CC1: NotImplemented:{TypedText __bridge_retained}{HorizontalSpace }{Placeholder CF type}{RightParen )}{Placeholder expression} (40)
13 // CHECK-CC1: NotImplemented:{TypedText __bridge_transfer}{HorizontalSpace }{Placeholder Objective-C type}{RightParen )}{Placeholder expression} (40)
  /external/clang/test/Sema/
atomic-compare.c 17 if (!a > 1) {} // expected-warning {{comparison of constant 1 with boolean expression is always false}}
18 if (!a > 2) {} // expected-warning {{comparison of constant 2 with boolean expression is always false}}
20 if (!a > -1) {} // expected-warning {{comparison of constant -1 with boolean expression is always true}}
  /external/e2fsprogs/intl/
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...]
  /external/icu/icu4c/source/i18n/
regextxt.h 9 // This file contains utility code for supporting UText in the regular expression engine.
11 // This class is internal to the regular expression implementation.
12 // For the public Regular Expression API, see the file "unicode/regex.h"
  /external/libxml2/result/XPath/xptr/
vidparts 3 Expression: xpointer(id("chapter1"))
12 Expression: xpointer(//*[@id="chapter1"])
21 Expression: xpointer(id("chapter1"))xpointer(//*[@id="chapter1"])
chaptersparts 3 Expression: xpointer(//chapitre[2])
7 Expression: xpointer(//chapter[2])
16 Expression: xpointer(//chapitre[2])xpointer(//chapter[2])
25 Expression: xpointer(id("chapter1"))
29 Expression: xpointer(//*[@id="chapter1"])
38 Expression: xpointer(id("chapter1"))xpointer(//*[@id="chapter1"])
  /external/libxml2/result/expr/
base 0 Expression: a
5 Expression: a|b
11 Expression: a | b | a
19 Expression: a,a
23 Expression: a{0,3}
28 Expression: (a|b){0,4}
43 Expression: a*
49 Expression: a+
59 Expression: (a|b)*
75 Expression: (a|b)+,(c|d
    [all...]
  /external/mesa3d/src/glsl/tests/lower_jumps/
lower_guarded_conditional_break.opt_test 14 ((if (expression bool > (var_ref aa) (constant float (0.000000)))
15 ((if (expression bool > (var_ref ab) (constant float (0.000000)))
19 (if (expression bool > (var_ref b) (constant float (0.000000))) (break)
  /external/webrtc/src/system_wrappers/interface/
compile_assert.h 15 * The argument is the boolean expression to evaluate.
19 #define COMPILE_ASSERT(expression) switch(0){case 0: case expression:;}
  /external/lldb/test/expression_command/persistent_types/
TestPersistentTypes.py 24 self.runCmd("expression struct $foo { int a; int b; };")
26 self.expect("expression struct $foo $my_foo; $my_foo.a = 2; $my_foo.b = 3;",
29 self.expect("expression $my_foo",
32 self.runCmd("expression typedef int $bar")
34 self.expect("expression $bar i = 5; i",
37 self.runCmd("expression struct $foobar { char a; char b; char c; char d; };")
  /external/antlr/antlr-3.4/runtime/ObjC/Framework/ANTLR/ANTLR.xcodeproj/project.xcworkspace/xcuserdata/acondit.xcuserdatad/xcdebugger/
Expressions.xcexplist 18 <expression
20 </expression>
  /external/antlr/antlr-3.4/runtime/Ruby/test/functional/parser/
calc.rb 23 evaluate returns [result]: r=expression { $result = $r.result };
25 expression returns [result]:
52 | '(' r=expression {$result = $r.result} ')'
67 def evaluate( expression )
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 )

Completed in 785 milliseconds

1 2 3 4 5 6 78 91011>>