Searched defs:expr (Results 26 - 50 of 298) sorted by relevance

1234567891011>>

/external/llvm/examples/OCaml-Kaleidoscope/Chapter6/
H A Dast.ml5 (* expr - Base type for all expression nodes. *)
6 type expr = type
14 | Unary of char * expr
17 | Binary of char * expr * expr
20 | Call of string * expr array
23 | If of expr * expr * expr
26 | For of string * expr * exp
[all...]
/external/llvm/examples/OCaml-Kaleidoscope/Chapter7/
H A Dast.ml5 (* expr - Base type for all expression nodes. *)
6 type expr = type
14 | Unary of char * expr
17 | Binary of char * expr * expr
20 | Call of string * expr array
23 | If of expr * expr * expr
26 | For of string * expr * exp
[all...]
/external/llvm/lib/Target/Sparc/
H A DSparcMCInstLower.cpp64 const SparcMCExpr *expr = SparcMCExpr::Create(Kind, MCSym, local
66 return MCOperand::CreateExpr(expr);
/external/mesa3d/src/glsl/
H A Dhir_field_selection.cpp31 _mesa_ast_field_selection_to_hir(const ast_expression *expr, argument
39 op = expr->subexpressions[0]->hir(instructions, state);
47 YYLTYPE loc = expr->get_location();
52 expr->primary_expression.identifier,
62 expr->primary_expression.identifier);
66 expr->primary_expression.identifier);
71 expr->primary_expression.identifier);
73 } else if (expr->subexpressions[1] != NULL) {
78 ast_expression *call = expr->subexpressions[1];
98 expr
[all...]
H A Dlower_texture_projection.cpp64 ir_expression *expr = new(mem_ctx) ir_expression(ir_unop_rcp, local
68 ir_assignment *assign = new(mem_ctx) ir_assignment(deref, expr, NULL);
/external/mesa3d/src/mesa/drivers/dri/i965/
H A Dbrw_cubemap_normalize.cpp78 ir_expression *expr; local
79 expr = new(mem_ctx) ir_expression(ir_binop_max,
83 expr = new(mem_ctx) ir_expression(ir_binop_max,
85 expr, swiz2);
87 expr = new(mem_ctx) ir_expression(ir_unop_rcp,
89 expr, NULL);
95 expr);
/external/valgrind/main/none/tests/
H A Dvalgrind_cpp_test.cpp43 void VG_(assert_fail)(Bool isCore, const HChar* expr, const HChar* file, argument
/external/apache-xml/src/main/java/org/apache/xpath/axes/
H A DOneStepIteratorForward.java160 public boolean deepEquals(Expression expr) argument
162 if(!super.deepEquals(expr))
165 if(m_axis != ((OneStepIteratorForward)expr).m_axis)
H A DDescendantIterator.java368 public boolean deepEquals(Expression expr) argument
370 if(!super.deepEquals(expr))
373 if(m_axis != ((DescendantIterator)expr).m_axis)
/external/apache-xml/src/main/java/org/apache/xpath/objects/
H A DXRTreeFragSelectWrapper.java36 public XRTreeFragSelectWrapper(Expression expr) argument
38 super(expr);
/external/chromium_org/third_party/skia/src/gpu/gl/
H A DGrGLSL_impl.h13 inline Self GrGLSLExpr<Self>::VectorCastImpl(const T& expr) { argument
14 if (expr.isZeros()) {
17 if (expr.isOnes()) {
20 return Self(Self::CastStr(), expr.c_str());
80 inline GrGLSLExpr1 GrGLSLExpr1::VectorCast(const GrGLSLExpr1& expr) { argument
81 return expr;
127 inline GrGLSLExpr4 GrGLSLExpr4::VectorCast(const GrGLSLExpr1& expr) { argument
128 return INHERITED::VectorCastImpl(expr);
131 inline GrGLSLExpr4 GrGLSLExpr4::VectorCast(const GrGLSLExpr4& expr) { argument
132 return expr;
[all...]
/external/deqp/framework/common/
H A DtcuDefs.cpp50 static std::string formatError (const char* message, const char* expr, const char* file, int line) argument
55 if (expr)
56 msg << ": '" << expr << '\''; local
64 Exception::Exception (const char* message, const char* expr, const char* file, int line) argument
65 : std::runtime_error(formatError(message, expr, file, line))
76 TestException::TestException (const char* message, const char* expr, const char* file, int line, qpTestResult result) argument
77 : Exception (formatError(message, expr, file, line))
88 TestError::TestError (const char* message, const char* expr, const char* file, int line) argument
89 : TestException(message, expr, file, line, QP_TEST_RESULT_FAIL)
98 InternalError::InternalError (const char* message, const char* expr, cons argument
108 ResourceError(const char* message, const char* expr, const char* file, int line) argument
118 NotSupportedError(const char* message, const char* expr, const char* file, int line) argument
[all...]
/external/deqp/framework/egl/
H A DegluDefs.cpp61 Error::Error (deInt32 errCode, const char* message, const char* expr, const char* file, int line) argument
62 : tcu::TestError (message, expr, file, line)
72 BadAllocError::BadAllocError (const char* message, const char* expr, const char* file, int line) argument
73 : tcu::ResourceError(message, expr, file, line)
/external/deqp/framework/opengl/
H A DgluDefs.cpp35 Error::Error (int error, const char* message, const char* expr, const char* file, int line) argument
36 : tcu::TestError (message, expr, file, line)
51 OutOfMemoryError::OutOfMemoryError (const char* message, const char* expr, const char* file, int line) argument
52 : tcu::ResourceError(message, expr, file, line)
/external/eigen/Eigen/src/Core/
H A DCoreIterators.h34 EIGEN_STRONG_INLINE InnerIterator(const Derived& expr, Index outer) argument
35 : m_expression(expr), m_inner(0), m_outer(outer), m_end(expr.innerSize())
/external/javassist/src/main/javassist/compiler/ast/
H A DCastExpr.java28 public CastExpr(ASTList className, int dim, ASTree expr) { argument
29 super(className, new ASTList(expr));
34 public CastExpr(int type, int dim, ASTree expr) { argument
35 super(null, new ASTList(expr));
H A DExpr.java57 public void setOprand1(ASTree expr) { argument
58 setLeft(expr);
63 public void setOprand2(ASTree expr) { argument
64 getRight().setLeft(expr);
/external/libsepol/tests/
H A Dtest-linker-cond-map.c60 cond_expr_t *expr; local
63 CU_ASSERT_FATAL(d->cond_list->expr != NULL);
65 expr = d->cond_list->expr;
68 CU_ASSERT_FATAL(expr != NULL);
70 CU_ASSERT(expr->expr_type == bools[i].expr_type);
72 CU_ASSERT(strcmp(p->sym_val_to_name[SYM_BOOLS][expr->bool - 1], bools[i].bool) == 0);
74 expr = expr->next;
/external/skia/src/gpu/gl/
H A DGrGLSL_impl.h13 inline Self GrGLSLExpr<Self>::VectorCastImpl(const T& expr) { argument
14 if (expr.isZeros()) {
17 if (expr.isOnes()) {
20 return Self(Self::CastStr(), expr.c_str());
80 inline GrGLSLExpr1 GrGLSLExpr1::VectorCast(const GrGLSLExpr1& expr) { argument
81 return expr;
127 inline GrGLSLExpr4 GrGLSLExpr4::VectorCast(const GrGLSLExpr1& expr) { argument
128 return INHERITED::VectorCastImpl(expr);
131 inline GrGLSLExpr4 GrGLSLExpr4::VectorCast(const GrGLSLExpr4& expr) { argument
132 return expr;
[all...]
/external/apache-xml/src/main/java/org/apache/xalan/templates/
H A DElemCopyOf.java41 * <!ATTLIST xsl:copy-of select %expr; #REQUIRED>
60 * @param expr Expression for select attribute
62 public void setSelect(XPath expr) argument
64 m_selectExpression = expr;
/external/apache-xml/src/main/java/org/apache/xpath/
H A DArg.java125 * @param expr String containing the expression to be stored as this
129 public void setExpression(String expr) argument
131 m_expression = expr;
/external/apache-xml/src/main/java/org/apache/xpath/functions/
H A DFunction.java128 public boolean deepEquals(Expression expr) argument
130 if(!isSameClass(expr))
H A DFunction2Args.java165 public boolean deepEquals(Expression expr) argument
167 if(!super.deepEquals(expr))
172 if(null == ((Function2Args)expr).m_arg1)
175 if(!m_arg1.deepEquals(((Function2Args)expr).m_arg1))
178 else if(null != ((Function2Args)expr).m_arg1)
H A DFunction3Args.java163 public boolean deepEquals(Expression expr) argument
165 if(!super.deepEquals(expr))
170 if(null == ((Function3Args)expr).m_arg2)
173 if(!m_arg2.deepEquals(((Function3Args)expr).m_arg2))
176 else if (null != ((Function3Args)expr).m_arg2)
H A DFunctionMultiArgs.java210 public boolean deepEquals(Expression expr) argument
212 if (!super.deepEquals(expr))
215 FunctionMultiArgs fma = (FunctionMultiArgs) expr;

Completed in 382 milliseconds

1234567891011>>