Searched refs:exception_value (Results 1 - 10 of 10) sorted by relevance

/external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/common/
H A Dmessage_pool.py155 def _handle_worker_exception(source, exception_type, exception_value, _):
157 raise exception_type(exception_value)
158 raise WorkerException(str(exception_value))
292 exception_type, exception_value, exception_traceback = exc_info
294 raise exception_type, exception_value, exception_traceback
300 _log.error("%s: %s('%s') raised:" % (self.name, exception_value.__class__.__name__, str(exception_value)))
304 self._post(name='worker_exception', args=(exception_type, exception_value, stack), from_user=False)
/external/chromium_org/third_party/cython/src/Cython/Compiler/
H A DPyrexTypes.py443 if self.exception_value:
445 result_code, self.typedef_cname, self.exception_value)
473 exception_value = None variable in class:MemoryViewSliceType
632 exception_value="-1",
1191 exception_value = None variable in class:CType
1207 elif self.exception_value is not None:
1208 conds.append("(%s == (%s)%s)" % (result_code, self.sign_and_name(), self.exception_value))
1413 exception_value = -1 variable in class:CIntType
1647 exception_value = -1 variable in class:CFloatType
2114 self.exception_value
3305 exception_value = "0" variable in class:ErrorType
[all...]
H A DTypeSlots.py121 def exception_value(self): member in class:Signature
138 exc_value = self.exception_value()
140 ret_type, args, exception_value=exc_value,
H A DNodes.py575 # exception_value ConstNode
581 child_attrs = ["base", "args", "exception_value"]
656 and (self.exception_value or self.exception_check)
661 if self.exception_value:
662 self.exception_value = self.exception_value.analyse_const_expression(env)
664 exc_val_type = self.exception_value.type
670 error(self.exception_value.pos,
672 exc_val = self.exception_value
674 self.exception_value
[all...]
H A DOptimize.py285 exception_value = '-1')
1833 exception_value = "((char)-1)",
2060 exception_value = "((double)-1)",
2148 exception_value="-1")
2414 exception_value="-1")
2437 exception_value="-1")
2444 exception_value="-1")
2542 exception_value = "-1")
2734 exception_value = '-1')
2777 exception_value
[all...]
H A DExprNodes.py4607 elif func_type.exception_value is not None \
4622 if func_type.exception_value is None:
4697 exc_val = func_type.exception_value
4718 if func_type.exception_value is None:
4720 elif func_type.exception_value.type.is_pyobject:
4722 func_type.exception_value.entry.cname,
4723 func_type.exception_value.entry.cname)
4725 raise_py_exception = '%s(); if (!PyErr_Occurred()) PyErr_SetString(PyExc_RuntimeError , "Error converting c++ exception.");' % func_type.exception_value.entry.cname
H A DParsing.py2387 exception_value = exc_val, exception_check = exc_check,
/external/chromium_org/gpu/config/
H A Dgpu_control_list.cc738 const base::DictionaryValue* exception_value = NULL; local
739 if (!exception_list_value->GetDictionary(i, &exception_value)) {
744 exception_value, false, feature_map, supports_feature_type_all));
/external/chromium_org/v8/src/arm64/
H A Dcode-stubs-arm64.cc2555 Register exception_value = x0;
2563 __ Ldr(exception_value, MemOperand(x11));
2564 __ Cmp(x10, exception_value);
2571 __ JumpIfRoot(exception_value,
2575 __ Throw(exception_value, x10, x11, x12, x13);
2578 __ ThrowUncatchable(exception_value, x10, x11, x12, x13);
/external/chromium_org/v8/test/cctest/
H A Dtest-api.cc4262 String::Utf8Value exception_value(try_catch.Exception());
4263 CHECK_EQ(*exception_value, "panama!");
4534 String::Utf8Value exception_value(try_catch.Exception());
4535 CHECK_EQ("exception", *exception_value);
5199 String::Utf8Value exception_value(try_catch.Exception());
5200 CHECK_EQ("konto", *exception_value);
5702 String::Utf8Value exception_value(try_catch.Exception());
5703 CHECK_EQ(*exception_value, "TypeError: Cannot redefine property: x");
5750 String::Utf8Value exception_value(try_catch.Exception());
5751 CHECK_EQ(*exception_value, "TypeErro
[all...]

Completed in 1469 milliseconds