Searched refs:call_depth (Results 1 - 5 of 5) sorted by relevance

/external/chromium_org/v8/test/mjsunit/regress/
H A Dregress-crbug-138887.js35 return function(call_depth) {
36 if (call_depth == 0) return 10;
37 return 1 + worker(call_depth - 1);
H A Dregress-crbug-147475.js35 return function(call_depth) {
36 if (call_depth == 0) return 10;
37 return 1 + worker(call_depth - 1);
/external/chromium_org/third_party/ots/src/
H A Dcff_type2_charstring.cc31 bool ExecuteType2CharString(size_t call_depth,
120 size_t call_depth,
183 return ExecuteType2CharString(call_depth + 1,
604 // call_depth: The current call depth. Initial value is zero.
615 bool ExecuteType2CharString(size_t call_depth, argument
624 if (call_depth > kMaxSubrNesting) {
663 call_depth,
774 if (!ExecuteType2CharString(0 /* initial call_depth is zero */,
119 ExecuteType2CharStringOperator(int32_t op, size_t call_depth, const ots::CFFIndex& global_subrs_index, const ots::CFFIndex& local_subrs_index, ots::Buffer *cff_table, ots::Buffer *char_string, std::stack<int32_t> *argument_stack, bool *out_found_endchar, bool *in_out_found_width, size_t *in_out_num_stems) argument
/external/v8/test/cctest/
H A Dtest-api.cc10188 static int call_depth; variable
10197 if (--call_depth) CompileRun("throw 'ThrowInJS';");
10202 if (--call_depth) ThrowException(v8_str("ThrowViaApi"));
10230 call_depth = 5;
/external/chromium_org/v8/test/cctest/
H A Dtest-api.cc12558 static int call_depth; variable
12567 if (--call_depth) CompileRun("throw 'ThrowInJS';");
12572 if (--call_depth) CcTest::isolate()->ThrowException(v8_str("ThrowViaApi"));
12601 call_depth = 5;

Completed in 396 milliseconds