Searched defs:expr (Results 126 - 150 of 298) sorted by relevance

1234567891011>>

/external/javassist/src/main/javassist/compiler/
H A DMemberResolver.java280 ASTree expr) throws NoFieldException
289 throw new NoFieldException(jvmClassName + "/" + field, expr);
298 throw new NoFieldException(jvmClassName + "$" + field, expr);
279 lookupFieldByJvmName2(String jvmClassName, Symbol fieldSym, ASTree expr) argument
H A DParser.java77 ASTree expr = null;
80 expr = parseExpression(tbl);
85 return new FieldDecl(mods, new ASTList(d, new ASTList(expr)));
305 ASTree expr = parseParExpression(tbl);
315 return new Stmnt(t, expr, new ASTList(thenp, new ASTList(elsep)));
324 ASTree expr = parseParExpression(tbl);
326 return new Stmnt(t, expr, body);
337 ASTree expr = parseExpression(tbl);
341 return new Stmnt(t, expr, body);
344 /* for.statement : FOR "(" decl.or.expr expressio
785 parseInstanceOf(SymbolTable tbl, ASTree expr) argument
801 binaryExpr2(SymbolTable tbl, ASTree expr, int prec) argument
1161 parseMethodCall(SymbolTable tbl, ASTree expr) argument
[all...]
/external/javassist/src/main/javassist/expr/
H A DExpr.java16 package javassist.expr;
/external/libpcap/
H A Dgrammar.y258 %type <blk> expr id nid pid term rterm qid
316 prog: null expr
324 expr: term label
325 | expr and term { gen_and($1.b, $3.b); $$ = $3; }
326 | expr and id { gen_and($1.b, $3.b); $$ = $3; }
327 | expr or term { gen_or($1.b, $3.b); $$ = $3; }
328 | expr or id { gen_or($1.b, $3.b); $$ = $3; }
418 | paren expr ')' { $$.b = $2.b; $$.q = $1.q; }
/external/lldb/examples/darwin/heap_find/
H A Dheap.py26 expr = '''
36 expr += '''
71 expr += user_init_code;
72 expr += '''
105 expr += get_thread_stack_ranges_struct (process)
107 expr += get_sections_ranges_struct (process)
109 expr += user_init_code
111 expr += '''
156 expr += '''
167 expr
666 expr = get_iterate_memory_expr(options, process, user_init_code, user_return_code) variable
760 expr = get_iterate_memory_expr(options, process, user_init_code, user_return_code) variable
835 expr = get_iterate_memory_expr(options, process, user_init_code, 'baton.matches') variable
1101 expr = get_iterate_memory_expr(options, process, user_init_code, user_return_code) variable
[all...]
/external/lldb/source/Commands/
H A DCommandObjectExpression.cpp192 expr my_struct->a = my_array[3] \n\
193 expr -f bin -- (index * 8) + 5 \n\
194 expr unsigned int $foo = 5\n\
195 expr char c[] = \"foo\"; c[0]\n");
311 const char *expr,
344 exe_results = target->EvaluateExpression (expr,
423 const char * expr = NULL; local
471 expr = end_options;
472 while (::isspace (*expr))
473 ++expr;
309 EvaluateExpression( const char *expr, Stream *output_stream, Stream *error_stream, CommandReturnObject *result ) argument
[all...]
/external/lldb/source/Core/
H A DValueObjectVariable.cpp122 DWARFExpression &expr = variable->LocationExpression(); local
126 // expr doesn't contain DWARF bytes, it contains the constant variable
128 if (expr.GetExpressionData(m_data))
147 if (expr.IsLocationList())
155 if (expr.Evaluate (&exe_ctx, NULL, NULL, NULL, loclist_base_load_addr, NULL, m_value, &m_error))
/external/lldb/source/Expression/
H A DClangExpressionParser.cpp186 ClangExpression &expr) :
187 m_expr (expr),
260 lldb::LanguageType language = expr.Language();
287 if (expr.DesiredResultType() == ClangExpression::eResultTypeId)
185 ClangExpressionParser(ExecutionContextScope *exe_scope, ClangExpression &expr) argument
/external/mesa3d/src/glsl/
H A Dlower_mat_op_to_vec.cpp69 ir_expression *expr = ir->as_expression(); local
72 if (!expr)
75 for (i = 0; i < expr->get_num_operands(); i++) {
76 if (expr->operands[i]->type->is_matrix())
127 ir_expression *expr; local
131 expr = new(mem_ctx) ir_expression(ir_binop_mul,
142 expr = new(mem_ctx) ir_expression(ir_binop_add,
143 expr,
147 assign = new(mem_ctx) ir_assignment(get_column(result, b_col), expr);
159 ir_expression *expr; local
287 has_matrix_operand(const ir_expression *expr, unsigned &columns) argument
[all...]
/external/protobuf/src/google/protobuf/io/
H A Dzero_copy_stream_unittest.cc534 static void MyHandler(const wchar_t *expr, argument
/external/valgrind/main/auxprogs/
H A Dvalgrind-listener.c78 static void my_assert_fail ( const char* expr, const char* file, int line, const char* fn ) argument
82 file, line, fn, expr );
90 #define assert(expr) \
91 ((void) ((expr) ? 0 : \
92 (my_assert_fail (VG_STRINGIFY(expr), \
/external/valgrind/main/coregrind/m_aspacemgr/
H A Daspacemgr-common.c83 void ML_(am_assert_fail)( const HChar* expr, argument
90 VG_(debugLog)(0, "aspacem", " %s\n", expr);
/external/valgrind/main/coregrind/m_debuginfo/
H A Dd3basics.c474 GXResult ML_(evaluate_Dwarf3_Expr) ( UChar* expr, UWord exprszB, argument
517 vg_assert(expr);
519 limit = expr + exprszB;
525 && expr[0] >= DW_OP_reg0 && expr[0] <= DW_OP_reg31) {
527 res.word = (UWord)(expr[0] - DW_OP_reg0);
531 && expr[0] == DW_OP_regx) {
534 expr++;
536 res.word = (UWord)read_leb128U( &expr );
537 if (expr !
[all...]
/external/valgrind/main/coregrind/
H A Dm_libcassert.c387 void VG_(assert_fail) ( Bool isCore, const HChar* expr, const HChar* file, argument
422 if (VG_STREQ(expr, "0")) {
427 component, file, line, fn, expr );
/external/antlr/antlr-3.4/runtime/ActionScript/project/lib/
H A DFlexAntTasks.jar ... dom/ org/jaxen/dom/html/ org/jaxen/dom4j/ org/jaxen/expr/ org/jaxen/expr/iter/ org/jaxen/function/ org/jaxen/function ...
/external/apache-xml/src/main/java/org/apache/xpath/objects/
H A DXObject.java745 public boolean deepEquals(Expression expr) argument
747 if(!isSameClass(expr))
753 if(!this.equals((XObject)expr))
/external/chromium_org/sandbox/linux/tests/
H A Dunit_tests.cc315 void UnitTests::AssertionFailure(const char* expr, const char* file, int line) { argument
316 fprintf(stderr, "%s:%d:%s", file, line, expr);
/external/chromium_org/third_party/protobuf/src/google/protobuf/io/
H A Dzero_copy_stream_unittest.cc757 static void MyHandler(const wchar_t *expr, argument
/external/chromium_org/tools/gn/
H A Dparser.cc17 // if := 'if' '(' expr ')' statement [ else ]
19 // assignment := ident {'=' | '+=' | '-='} expr
243 scoped_ptr<ParseNode> expr = ParseExpression(); local
247 return expr.Pass();
251 scoped_ptr<ParseNode> expr = ParseExpression(PRECEDENCE_PREFIX + 1); local
256 unary_op->set_operand(expr.Pass());
/external/clang/lib/StaticAnalyzer/Core/
H A DSValBuilder.cpp125 const Expr *expr,
132 SymbolRef sym = SymMgr.conjureSymbol(expr, LCtx, type, count, symbolTag);
170 const Expr *expr, QualType type,
175 SymMgr.getMetadataSymbol(region, expr, type, count, symbolTag);
124 conjureSymbolVal(const void *symbolTag, const Expr *expr, const LocationContext *LCtx, QualType type, unsigned count) argument
168 getMetadataSymbolVal(const void *symbolTag, const MemRegion *region, const Expr *expr, QualType type, unsigned count) argument
/external/deqp/framework/qphelper/
H A DqpCrashHandler.c224 static void assertFailureCallback (const char* expr, const char* file, int line) argument
237 qpCrashInfo_set(&g_crashHandler->crashInfo, QP_CRASHTYPE_ASSERT, expr, file, line);
417 static void assertFailureCallback (const char* expr, const char* file, int line) argument
420 qpCrashInfo_set(&g_crashHandler->crashInfo, QP_CRASHTYPE_ASSERT, expr, file, line);
/external/elfutils/0.153/libdw/
H A Dcfi.h200 Dwarf_Block expr; member in union:Dwarf_Frame_s::__anon21151
/external/lldb/include/lldb/Symbol/
H A DUnwindPlan.h185 *opcodes = m_location.expr.opcodes;
186 len = m_location.expr.length;
205 return m_location.expr.opcodes;
213 return m_location.expr.length;
236 } expr; member in union:lldb_private::UnwindPlan::Row::RegisterLocation::__anon25250
/external/llvm/lib/MC/
H A DMCELFStreamer.cpp314 void MCELFStreamer::fixSymbolsInTLSFixups(const MCExpr *expr) { argument
315 switch (expr->getKind()) {
317 cast<MCTargetExpr>(expr)->fixELFSymbolsInTLSFixups(getAssembler());
323 const MCBinaryExpr *be = cast<MCBinaryExpr>(expr);
330 const MCSymbolRefExpr &symRef = *cast<MCSymbolRefExpr>(expr);
391 fixSymbolsInTLSFixups(cast<MCUnaryExpr>(expr)->getSubExpr());
/external/svox/pico/lib/
H A Dpicodbg.c409 void picodbg_assert(const char *file, int line, const char *func, const char *expr) argument
413 expr, picodbg_fileTitle(file), func, line);
416 expr, picodbg_fileTitle(file), line);

Completed in 461 milliseconds

1234567891011>>