Home
last modified time | relevance | path

Searched refs:expr (Results 1 – 25 of 1000) sorted by relevance

12345678910>>...40

/external/google-breakpad/src/third_party/curl/
Dtypecheck-gcc.h309 #define _curl_is_any_ptr(expr) \ argument
310 (sizeof(expr) == sizeof(void*))
314 #define _curl_is_NULL(expr) \ argument
315 (__builtin_types_compatible_p(__typeof__(expr), __typeof__(NULL)))
318 #define _curl_is_ptr(expr, type) \ argument
319 (_curl_is_NULL(expr) || \
320 __builtin_types_compatible_p(__typeof__(expr), type *) || \
321 __builtin_types_compatible_p(__typeof__(expr), const type *))
324 #define _curl_is_arr(expr, type) \ argument
325 (_curl_is_ptr((expr), type) || \
[all …]
/external/curl/include/curl/
Dtypecheck-gcc.h355 #define _curl_is_any_ptr(expr) \ argument
356 (sizeof(expr) == sizeof(void*))
360 #define _curl_is_NULL(expr) \ argument
361 (__builtin_types_compatible_p(__typeof__(expr), __typeof__(NULL)))
364 #define _curl_is_ptr(expr, type) \ argument
365 (_curl_is_NULL(expr) || \
366 __builtin_types_compatible_p(__typeof__(expr), type *) || \
367 __builtin_types_compatible_p(__typeof__(expr), const type *))
370 #define _curl_is_arr(expr, type) \ argument
371 (_curl_is_ptr((expr), type) || \
[all …]
/external/v8/src/ast/
Dast-expression-visitor.cc198 void AstExpressionVisitor::VisitFunctionLiteral(FunctionLiteral* expr) { in VisitFunctionLiteral() argument
199 Scope* scope = expr->scope(); in VisitFunctionLiteral()
200 VisitExpression(expr); in VisitFunctionLiteral()
202 RECURSE_EXPRESSION(VisitStatements(expr->body())); in VisitFunctionLiteral()
207 NativeFunctionLiteral* expr) {} in VisitNativeFunctionLiteral() argument
210 void AstExpressionVisitor::VisitDoExpression(DoExpression* expr) { in VisitDoExpression() argument
211 RECURSE(VisitBlock(expr->block())); in VisitDoExpression()
212 RECURSE(VisitVariableProxy(expr->result())); in VisitDoExpression()
216 void AstExpressionVisitor::VisitConditional(Conditional* expr) { in VisitConditional() argument
217 VisitExpression(expr); in VisitConditional()
[all …]
/external/toybox/kconfig/
Dexpr.h39 struct expr *expr; member
43 struct expr { struct
53 struct expr *expr; member
81 struct expr *dep, *dep2;
119 struct expr *expr; member
140 struct expr *dep;
161 struct expr *expr_alloc_symbol(struct symbol *sym);
162 struct expr *expr_alloc_one(enum expr_type type, struct expr *ce);
163 struct expr *expr_alloc_two(enum expr_type type, struct expr *e1, struct expr *e2);
164 struct expr *expr_alloc_comp(enum expr_type type, struct symbol *s1, struct symbol *s2);
[all …]
Dexpr.c15 struct expr *expr_alloc_symbol(struct symbol *sym) in expr_alloc_symbol()
17 struct expr *e = malloc(sizeof(*e)); in expr_alloc_symbol()
24 struct expr *expr_alloc_one(enum expr_type type, struct expr *ce) in expr_alloc_one()
26 struct expr *e = malloc(sizeof(*e)); in expr_alloc_one()
29 e->left.expr = ce; in expr_alloc_one()
33 struct expr *expr_alloc_two(enum expr_type type, struct expr *e1, struct expr *e2) in expr_alloc_two()
35 struct expr *e = malloc(sizeof(*e)); in expr_alloc_two()
38 e->left.expr = e1; in expr_alloc_two()
39 e->right.expr = e2; in expr_alloc_two()
43 struct expr *expr_alloc_comp(enum expr_type type, struct symbol *s1, struct symbol *s2) in expr_alloc_comp()
[all …]
/external/v8/src/crankshaft/
Dtyping.cc343 void AstTyper::VisitFunctionLiteral(FunctionLiteral* expr) {} in VisitFunctionLiteral() argument
346 void AstTyper::VisitClassLiteral(ClassLiteral* expr) {} in VisitClassLiteral() argument
349 void AstTyper::VisitNativeFunctionLiteral(NativeFunctionLiteral* expr) { in VisitNativeFunctionLiteral() argument
353 void AstTyper::VisitDoExpression(DoExpression* expr) { in VisitDoExpression() argument
354 RECURSE(VisitBlock(expr->block())); in VisitDoExpression()
355 RECURSE(VisitVariableProxy(expr->result())); in VisitDoExpression()
356 NarrowType(expr, expr->result()->bounds()); in VisitDoExpression()
360 void AstTyper::VisitConditional(Conditional* expr) { in VisitConditional() argument
362 expr->condition()->RecordToBooleanTypeFeedback(oracle()); in VisitConditional()
364 RECURSE(Visit(expr->condition())); in VisitConditional()
[all …]
/external/v8/src/
Dtyping-asm.cc202 Assignment* expr = stmt->expression()->AsAssignment(); in VisitFunctionAnnotation() local
203 if (expr == NULL || expr->is_compound()) break; in VisitFunctionAnnotation()
204 VariableProxy* proxy = expr->target()->AsVariableProxy(); in VisitFunctionAnnotation()
209 RECURSE(VisitExpressionAnnotation(expr->value(), var, false)); in VisitFunctionAnnotation()
224 void AsmTyper::VisitExpressionAnnotation(Expression* expr, Variable* var, in VisitExpressionAnnotation() argument
227 BinaryOperation* bin = expr->AsBinaryOperation(); in VisitExpressionAnnotation()
244 SetResult(expr, cache_.kAsmDouble); in VisitExpressionAnnotation()
252 SetResult(expr, cache_.kAsmSigned); in VisitExpressionAnnotation()
254 SetResult(expr, cache_.kAsmInt); in VisitExpressionAnnotation()
263 FAIL(expr, "invalid type annotation on binary op"); in VisitExpressionAnnotation()
[all …]
/external/javassist/src/main/javassist/compiler/
DTypeChecker.java141 public void atNewExpr(NewExpr expr) throws CompileError { in atNewExpr() argument
142 if (expr.isArray()) in atNewExpr()
143 atNewArrayExpr(expr); in atNewExpr()
145 CtClass clazz = resolver.lookupClassByName(expr.getClassName()); in atNewExpr()
147 ASTList args = expr.getArguments(); in atNewExpr()
155 public void atNewArrayExpr(NewExpr expr) throws CompileError { in atNewArrayExpr() argument
156 int type = expr.getArrayType(); in atNewArrayExpr()
157 ASTList size = expr.getArraySize(); in atNewArrayExpr()
158 ASTList classname = expr.getClassName(); in atNewArrayExpr()
159 ASTree init = expr.getInitializer(); in atNewArrayExpr()
[all …]
DCodeGen.java227 public void compileExpr(ASTree expr) throws CompileError { in compileExpr() argument
228 doTypeCheck(expr); in compileExpr()
229 expr.accept(this); in compileExpr()
232 public boolean compileBooleanExpr(boolean branchIf, ASTree expr) in compileBooleanExpr() argument
235 doTypeCheck(expr); in compileBooleanExpr()
236 return booleanExpr(branchIf, expr); in compileBooleanExpr()
239 public void doTypeCheck(ASTree expr) throws CompileError { in doTypeCheck() argument
241 expr.accept(typeChecker); in doTypeCheck()
306 ASTree expr = body.head(); in needsSuperCall() local
307 if (expr != null && expr instanceof Expr in needsSuperCall()
[all …]
/external/v8/src/wasm/
Dasm-wasm-builder.cc97 ExpressionStatement* expr = in VisitBlock() local
99 if (expr != nullptr) { in VisitBlock()
100 if (expr->expression()->IsAssignment()) { in VisitBlock()
101 RECURSE(VisitExpressionStatement(expr)); in VisitBlock()
331 void VisitFunctionLiteral(FunctionLiteral* expr) { in VisitFunctionLiteral() argument
332 Scope* scope = expr->scope(); in VisitFunctionLiteral()
334 if (expr->bounds().lower->IsFunction()) { in VisitFunctionLiteral()
335 Type::FunctionType* func_type = expr->bounds().lower->AsFunction(); in VisitFunctionLiteral()
338 for (int i = 0; i < expr->parameter_count(); i++) { in VisitFunctionLiteral()
348 RECURSE(VisitStatements(expr->body())); in VisitFunctionLiteral()
[all …]
/external/mesa3d/src/glsl/
Ds_expression.cpp60 s_expression *expr = NULL; in read_atom() local
72 expr = new(ctx) s_float(std::numeric_limits<float>::infinity()); in read_atom()
82 expr = new(ctx) s_float(f); in read_atom()
84 expr = new(ctx) s_int(i); in read_atom()
88 expr = new(ctx) s_symbol(symbol_buffer, n); in read_atom()
95 return expr; in read_atom()
111 s_expression *expr; in __read_expression() local
113 while ((expr = __read_expression(ctx, src, symbol_buffer)) != NULL) { in __read_expression()
114 list->subexpressions.push_tail(expr); in __read_expression()
166 s_expression *expr = (s_expression*) it.get(); in print() local
[all …]
Dir_reader.cpp84 s_expression *expr = s_expression::read_expression(sx_mem_ctx, src); in read() local
85 if (expr == NULL) { in read()
91 scan_for_prototypes(instructions, expr); in read()
96 read_instructions(instructions, expr, NULL); in read()
104 ir_reader::ir_read_error(s_expression *expr, const char *fmt, ...) in ir_read_error() argument
120 if (expr != NULL) { in ir_read_error()
122 expr->print(); in ir_read_error()
128 ir_reader::read_type(s_expression *expr) in read_type() argument
134 if (MATCH(expr, pat)) { in read_type()
144 s_symbol *type_sym = SX_AS_SYMBOL(expr); in read_type()
[all …]
/external/libxml2/
DtestAutomata.c32 char expr[5000]; in testRegexpFile() local
68 while (fgets(expr, 4500, input) != NULL) { in testRegexpFile()
69 if (expr[0] == '#') in testRegexpFile()
71 len = strlen(expr); in testRegexpFile()
74 ((expr[len] == '\n') || (expr[len] == '\t') || in testRegexpFile()
75 (expr[len] == '\r') || (expr[len] == ' '))) len--; in testRegexpFile()
76 expr[len + 1] = 0; in testRegexpFile()
78 if ((am != NULL) && (expr[0] == 't') && (expr[1] == ' ')) { in testRegexpFile()
79 char *ptr = &expr[2]; in testRegexpFile()
85 "Bad line %s\n", expr); in testRegexpFile()
[all …]
/external/selinux/libsepol/src/
Dconstraint.c28 int constraint_expr_init(constraint_expr_t * expr) in constraint_expr_init() argument
30 memset(expr, 0, sizeof(*expr)); in constraint_expr_init()
31 ebitmap_init(&expr->names); in constraint_expr_init()
32 if ((expr->type_names = malloc(sizeof(*expr->type_names))) == NULL) { in constraint_expr_init()
35 type_set_init(expr->type_names); in constraint_expr_init()
39 void constraint_expr_destroy(constraint_expr_t * expr) in constraint_expr_destroy() argument
41 if (expr != NULL) { in constraint_expr_destroy()
42 ebitmap_destroy(&expr->names); in constraint_expr_destroy()
43 type_set_destroy(expr->type_names); in constraint_expr_destroy()
44 free(expr->type_names); in constraint_expr_destroy()
[all …]
/external/llvm/examples/OCaml-Kaleidoscope/Chapter7/
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 * expr * expr option * expr
29 | Var of (string * expr option) array * expr
39 type func = Function of proto * expr
/external/guice/extensions/persist/lib/
Djaxen-1.1-beta-7.jar ... org/jaxen/dom4j/ org/jaxen/expr/ org/jaxen/expr/iter/ org ...
/external/eigen/Eigen/src/Core/
DRef.h162 void construct(Expression& expr)
166 eigen_assert(expr.rows()==1 || expr.cols()==1);
167 ::new (static_cast<Base*>(this)) Base(expr.data(), 1, expr.size());
171 eigen_assert(expr.rows()==1 || expr.cols()==1);
172 ::new (static_cast<Base*>(this)) Base(expr.data(), expr.size(), 1);
175 ::new (static_cast<Base*>(this)) Base(expr.data(), expr.rows(), expr.cols());
178 ::new (&m_stride) StrideBase(expr.innerStride(), StrideType::InnerStrideAtCompileTime==0?0:1);
180 ::new (&m_stride) StrideBase(StrideType::OuterStrideAtCompileTime==0?0:expr.outerStride(),
181 … StrideType::InnerStrideAtCompileTime==0?0:expr.innerStride());
194 inline Ref(const PlainObjectBase<Derived>& expr,
[all …]
/external/selinux/libsemanage/src/
Dfcontext_record.c16 char *expr; member
28 char *expr; member
36 const char *expr, in semanage_fcontext_key_create() argument
48 tmp_key->expr = strdup(expr); in semanage_fcontext_key_create()
49 if (!tmp_key->expr) { in semanage_fcontext_key_create()
67 if (semanage_fcontext_key_create(handle, fcontext->expr, in hidden_def()
70 "file context %s (%s)", fcontext->expr, in hidden_def()
82 free(key->expr); in hidden_def()
92 int rv = strcmp(fcontext->expr, key->expr); in hidden_def()
113 int rv = strcmp(fcontext->expr, fcontext2->expr); in hidden_def()
[all …]
/external/antlr/antlr-3.4/runtime/Python/tests/
Dt047treeparserWalker.g49 | expr
54 : ^('for' expr expr expr block)
57 expr: ^(EQEQ expr expr)
58 | ^(LT expr expr)
59 | ^(PLUS expr expr)
60 | ^(EQ ID expr)
/external/v8/src/full-codegen/
Dfull-codegen.cc145 ObjectLiteral* expr) const { in MustCreateObjectLiteralWithRuntime()
146 int literal_flags = expr->ComputeFlags(); in MustCreateObjectLiteralWithRuntime()
153 expr->properties_count() > in MustCreateObjectLiteralWithRuntime()
159 ArrayLiteral* expr) const { in MustCreateArrayLiteralWithRuntime()
161 return expr->depth() > 1 || expr->is_strong() || in MustCreateArrayLiteralWithRuntime()
162 expr->values()->length() > JSArray::kInitialMaxFastElementArray; in MustCreateArrayLiteralWithRuntime()
426 void FullCodeGenerator::VisitVariableProxy(VariableProxy* expr) { in VisitVariableProxy() argument
428 EmitVariableLoad(expr); in VisitVariableProxy()
446 void FullCodeGenerator::EmitSubString(CallRuntime* expr) { in EmitSubString() argument
449 ZoneList<Expression*>* args = expr->arguments(); in EmitSubString()
[all …]
/external/antlr/antlr-3.4/runtime/JavaScript/tests/functional/
Dt047treeparserWalker.g50 | expr
55 : ^('for' expr expr expr block)
58 expr: ^(EQEQ expr expr)
59 | ^(LT expr expr)
60 | ^(PLUS expr expr)
61 | ^(EQ ID expr)
/external/antlr/antlr-3.4/runtime/ObjC/Framework/examples/simplecTreeParser/
DSimpleCTP.g51 | expr
56 : ^(K_FOR expr expr expr block)
59 expr: ^(K_EQEQ expr expr)
60 | ^(K_LT expr expr)
61 | ^(K_PLUS expr expr)
62 | ^(K_EQ K_ID e=expr) { NSLog(@"assigning \%@ to variable \%@", $e.text, $K_ID.text); }
/external/llvm/examples/OCaml-Kaleidoscope/Chapter6/
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 * expr * expr option * expr
36 type func = Function of proto * expr
/external/owasp/sanitizer/tools/findbugs/lib/
Djaxen-1.1.6.jar ... .VariableContext getVariableContext () public org.jaxen.expr.Expr getRootExpr () public java.lang. ...
/external/deqp/framework/common/
DtcuDefs.cpp50 static std::string formatError (const char* message, const char* expr, const char* file, int line) in formatError() argument
55 if (expr) in formatError()
56 msg << ": '" << expr << '\''; in formatError()
64 Exception::Exception (const char* message, const char* expr, const char* file, int line) in Exception() argument
65 : std::runtime_error(formatError(message, expr, file, line)) in Exception()
76 TestException::TestException (const char* message, const char* expr, const char* file, int line, qp… in TestException() argument
77 : Exception (formatError(message, expr, file, line)) in TestException()
88 TestError::TestError (const char* message, const char* expr, const char* file, int line) in TestError() argument
89 : TestException(message, expr, file, line, QP_TEST_RESULT_FAIL) in TestError()
98 InternalError::InternalError (const char* message, const char* expr, const char* file, int line) in InternalError() argument
[all …]

12345678910>>...40