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

1 2 3 4 5 6 78 91011>>

  /external/llvm/test/MC/PowerPC/
ppc64-localentry-error2.s 11 # CHECK: LLVM ERROR: .localentry expression must be absolute.
  /external/swiftshader/src/D3D9/
Debug.hpp 72 #define ASSERT(expression) {if(!(expression)) Trace("\t! Assert failed in %s(%d): "#expression"\n", __FUNCTION__, __LINE__); assert(expression);}
  /external/swiftshader/third_party/LLVM/examples/OCaml-Kaleidoscope/Chapter2/
toplevel.ml 5 (* top ::= definition | external | expression | ';' *)
25 (* Evaluate a top-level expression into an anonymous function. *)
  /external/swiftshader/third_party/LLVM/examples/OCaml-Kaleidoscope/Chapter3/
toplevel.ml 7 (* top ::= definition | external | expression | ';' *)
29 (* Evaluate a top-level expression into an anonymous function. *)
  /system/tools/hidl/c2hal/
EnumVarDeclaration.h 28 struct Expression;
31 EnumVarDeclaration(const std::string &name, Expression *expression);
38 Expression *getExpression() const;
44 Expression *mExpression = NULL;
  /tools/metalava/src/main/java/com/android/tools/metalava/
ExtractAnnotations.kt 260 val value = attributes[0].expression
424 val expression = attributes[0].expression
425 if (expression is UAnnotation) {
435 val annotation = expression as UAnnotation
437 } else if (expression is JavaUAnnotationCallExpression) {
438 val annotation = expression.uAnnotation
440 } else if (expression is UastEmptyExpression && attributes[0].sourcePsi is PsiNameValuePair) {
452 val expression = pair.expression
    [all...]
  /external/apache-xml/src/main/java/org/apache/xpath/
Arg.java 29 * 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
    [all...]
  /external/clang/test/CXX/special/class.dtor/
p10-0x.cpp 9 x->~decltype(*x)(); // expected-error{{the type of object expression ('const int') does not match the type being destroyed ('decltype(*x)' (aka 'const int &')) in pseudo-destructor expression}} \
13 y->~decltype(*y)(); // expected-error{{destructor type 'decltype(*y)' (aka 'const A &') in object destruction expression does not match the type 'const A' of the object being destroyed}}
14 y->~decltype(T())(); // expected-error{{destructor type 'decltype(T())' in object destruction expression does not match the type 'const A' of the object being destroyed}}
21 x->~decltype(*x)(); // expected-error{{destructor type 'decltype(*x)' (aka 'const A &') in object destruction expression does not match the type 'const A' of the object being destroyed}}
22 x->~decltype()(); // expected-error{{expected expression}}
23 x->~decltype(B())(); // expected-error{{destructor type 'decltype(B())' (aka 'B') in object destruction expression does not match the type 'const A' of the object being destroyed}}
24 x->~decltype(x)(); // expected-error{{destructor type 'decltype(x)' (aka 'const A *') in object destruction expression does not match the type 'const A' of the object being destroyed}}
33 expected-error{{the type of object expression ('int') does not match the type being destroyed ('decltype(intp())' (aka 'int *')) in pseudo-destructor expression}}
    [all...]
  /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...]
  /external/curl/docs/cmdline-opts/
time-cond.d 8 one that has been modified before that time. The <date expression> can be all
11 instead. See the \fIcurl_getdate(3)\fP man pages for date expression details.
13 Start the date expression with a dash (-) to make it request for a document
  /external/eigen/unsupported/Eigen/CXX11/src/Tensor/
TensorDevice.h 18 * \brief Pseudo expression providing an operator = that will evaluate its argument
29 TensorDevice(const DeviceType& device, ExpressionType& expression) : m_device(device), m_expression(expression) {}
  /external/javaparser/javaparser-symbol-solver-testing/src/test/java/com/github/javaparser/symbolsolver/
Issue251.java 28 MethodCallExpr expression = (MethodCallExpr) stmt.getExpression(); local
29 Assert.assertNotNull(javaParserFacade.solve(expression));
  /external/javaparser/javaparser-symbol-solver-testing/src/test/java/com/github/javaparser/symbolsolver/resolution/
FieldsResolutionTest.java 48 Expression expression = returnStmt.getExpression().get(); local
50 ResolvedType ref = JavaParserFacade.get(new ReflectionTypeSolver()).getType(expression);
77 SimpleName expression = Navigator.findSimpleName(method, "label").get(); local
79 SymbolReference ref = JavaParserFacade.get(new ReflectionTypeSolver()).solve(expression);
90 Expression expression = returnStmt.getExpression().get(); local
92 ResolvedType ref = JavaParserFacade.get(new ReflectionTypeSolver()).getType(expression);
102 Expression expression = returnStmt.getExpression().get() local
    [all...]
  /external/jsilver/src/com/google/clearsilver/jsilver/compiler/
JavaSourceWriter.java 198 public void startIfBlock(JavaExpression expression) {
201 writeExpression(expression);
227 public void startIterableForLoop(String type, String name, JavaExpression expression) {
234 writeExpression(expression);
256 public void writeStatement(JavaExpression expression) {
258 writeExpression(expression);
263 public void writeExpression(JavaExpression expression) {
264 expression.write(out);
  /external/llvm/test/MC/ARM/
eh-directive-unwind_raw-diagnostics.s 20 @ CHECK: error: expected expression
50 @ CHECK: error: expected opcode expression
  /external/smali/smalidea/src/main/java/org/jf/smalidea/debugging/
SmaliExpressionEvaluator.java 36 import com.intellij.debugger.engine.evaluation.expression.ExpressionEvaluator;
37 import com.intellij.debugger.engine.evaluation.expression.Modifier;
  /frameworks/data-binding/compiler/src/test/java/android/databinding/tool/expr/
ExecutionPathTest.java 37 public ExecutionPathTest(String expression) {
38 mExpression = expression;
  /frameworks/ex/common/java/com/android/common/content/
ProjectionMap.java 37 public Builder add(String alias, String expression) {
38 mMap.putColumn(alias, expression + " AS " + alias);
  /frameworks/support/compat/src/main/java/androidx/core/util/
Preconditions.java 36 public static void checkArgument(boolean expression) {
37 if (!expression) {
43 * Ensures that an expression checking an argument is true.
45 * @param expression the expression to check
48 * @throws IllegalArgumentException if {@code expression} is false
50 public static void checkArgument(boolean expression, final Object errorMessage) {
51 if (!expression) {
122 * Ensures the truth of an expression involving the state of the calling
125 * @param expression a boolean expressio
    [all...]
  /prebuilts/go/darwin-x86/src/cmd/compile/internal/gc/
unsafe.go 26 yyerror("invalid expression %v", n)
44 yyerror("invalid expression %v: argument is a method value", n)
47 yyerror("invalid expression %v", n)
60 yyerror("invalid expression %v: selector implies indirection of embedded %v", n, r.Left)
  /prebuilts/go/darwin-x86/test/fixedbugs/
bug081.go 12 bug081.go:3: first constant must evaluate an expression
bug489.go 8 // expression in a function literal messed up the list of variables
gcc61254.go 7 // PR61254: gccgo failed to compile a slice expression with missing indices.
issue14010.go 14 byte = 0 // ERROR "not an expression"
issue16804.go 8 // rather than expression

Completed in 756 milliseconds

1 2 3 4 5 6 78 91011>>