Searched defs:exception (Results 101 - 125 of 263) sorted by relevance

1234567891011

/external/chromium_org/ppapi/cpp/dev/
H A Dscriptable_object_deprecated.cc19 // take to mean an exception occurred.
43 bool HasProperty(void* object, PP_Var name, PP_Var* exception) { argument
44 ExceptionConverter e(exception);
49 bool HasMethod(void* object, PP_Var name, PP_Var* exception) { argument
50 ExceptionConverter e(exception);
57 PP_Var* exception) {
58 ExceptionConverter e(exception);
66 PP_Var* exception) {
67 ExceptionConverter e(exception);
86 PP_Var* exception) {
55 GetProperty(void* object, PP_Var name, PP_Var* exception) argument
63 GetAllPropertyNames(void* object, uint32_t* property_count, PP_Var** properties, PP_Var* exception) argument
83 SetProperty(void* object, PP_Var name, PP_Var value, PP_Var* exception) argument
92 RemoveProperty(void* object, PP_Var name, PP_Var* exception) argument
100 Call(void* object, PP_Var method_name, uint32_t argc, PP_Var* argv, PP_Var* exception) argument
113 Construct(void* object, uint32_t argc, PP_Var* argv, PP_Var* exception) argument
151 GetProperty(const Var& , Var* exception) argument
160 SetProperty(const Var& , const Var& , Var* exception) argument
166 RemoveProperty(const Var& , Var* exception) argument
172 Call(const Var& , const std::vector<Var>& , Var* exception) argument
179 Construct(const std::vector<Var>& , Var* exception) argument
[all...]
/external/chromium_org/ppapi/cpp/private/
H A Dvar_private.cc52 bool VarPrivate::HasProperty(const Var& name, Var* exception) const {
56 var_, name.pp_var(), OutException(exception).get());
59 bool VarPrivate::HasMethod(const Var& name, Var* exception) const {
63 var_, name.pp_var(), OutException(exception).get());
66 VarPrivate VarPrivate::GetProperty(const Var& name, Var* exception) const {
70 var_, name.pp_var(), OutException(exception).get()));
74 Var* exception) const {
80 var_, &prop_count, &props, OutException(exception).get());
94 Var* exception) {
98 var_, name.pp_var(), value.pp_var(), OutException(exception)
93 SetProperty(const Var& name, const Var& value, Var* exception) argument
101 RemoveProperty(const Var& name, Var* exception) argument
108 Call(const Var& method_name, uint32_t argc, Var* argv, Var* exception) argument
146 Call(const Var& method_name, Var* exception) argument
153 Call(const Var& method_name, const Var& arg1, Var* exception) argument
162 Call(const Var& method_name, const Var& arg1, const Var& arg2, Var* exception) argument
171 Call(const Var& method_name, const Var& arg1, const Var& arg2, const Var& arg3, Var* exception) argument
180 Call(const Var& method_name, const Var& arg1, const Var& arg2, const Var& arg3, const Var& arg4, Var* exception) argument
[all...]
/external/chromium_org/ppapi/native_client/src/trusted/plugin/
H A Dscriptable_plugin.cc29 const char* error, pp::Var* exception) {
32 if (!exception->is_undefined()) {
33 error_stream << " - " + exception->AsString();
40 *exception = pp::Var(e);
82 bool ScriptablePlugin::HasProperty(const pp::Var& name, pp::Var* exception) { argument
83 UNREFERENCED_PARAMETER(exception);
89 bool ScriptablePlugin::HasMethod(const pp::Var& name, pp::Var* exception) { argument
90 UNREFERENCED_PARAMETER(exception);
97 pp::Var* exception) {
101 "property getting is not supported", exception);
28 Error(const nacl::string& call_name, const char* caller, const char* error, pp::Var* exception) argument
96 GetProperty(const pp::Var& name, pp::Var* exception) argument
105 SetProperty(const pp::Var& name, const pp::Var& value, pp::Var* exception) argument
115 RemoveProperty(const pp::Var& name, pp::Var* exception) argument
123 GetAllPropertyNames(std::vector<pp::Var>* properties, pp::Var* exception) argument
133 Call(const pp::Var& name, const std::vector<pp::Var>& args, pp::Var* exception) argument
143 Construct(const std::vector<pp::Var>& args, pp::Var* exception) argument
[all...]
/external/chromium_org/ppapi/tests/
H A Dtest_instance_deprecated.cc28 bool HasMethod(const pp::Var& name, pp::Var* exception);
31 pp::Var* exception);
80 bool InstanceSO::HasMethod(const pp::Var& name, pp::Var* exception) { argument
90 pp::Var* exception) {
97 *exception = pp::Var("Bad argument to SetValue(<string>)");
102 *exception = pp::Var("Bad argument to SetException(<string>)");
104 *exception = args[0];
107 *exception = pp::Var("Need single arg to call ReturnValue");
111 *exception = pp::Var("Bad function call");
162 pp::Var exception; local
88 Call(const pp::Var& method_name, const std::vector<pp::Var>& args, pp::Var* exception) argument
262 pp::Var exception; local
[all...]
H A Dtest_var_deprecated.cc32 bool HasMethod(const pp::Var& name, pp::Var* exception);
35 pp::Var* exception);
41 bool VarScriptableObject::HasMethod(const pp::Var& name, pp::Var* exception) { argument
49 pp::Var* exception) {
56 *exception = pp::Var("Bad argument to SetValue(<value>)");
300 pp::Var exception; local
301 ASSERT_TRUE(window.HasProperty("scrollX", &exception));
302 ASSERT_TRUE(exception.is_undefined());
303 ASSERT_FALSE(window.HasMethod("scrollX", &exception));
304 ASSERT_TRUE(exception
47 Call(const pp::Var& method_name, const std::vector<pp::Var>& args, pp::Var* exception) argument
370 pp::Var exception; local
[all...]
/external/chromium_org/third_party/WebKit/Source/bindings/templates/
H A Dmethods.cpp171 v8::Local<v8::Value> exception = state.exception(); variable
173 throwError(exception, info.GetIsolate());
/external/chromium_org/third_party/WebKit/Source/bindings/v8/
H A DV8Initializer.cpp116 DOMException* exception = V8DOMException::toNative(obj); local
117 if (exception && !exception->messageForConsole().isEmpty())
118 event->setUnsanitizedMessage("Uncaught " + exception->toStringForConsole());
123 // avoid storing the exception object, as we can't create a wrapper during context creation.
195 // WorkerGlobalScope::reportException will send the exception to the worker object.
/external/chromium_org/tools/grit/grit/node/
H A Dmessage.py18 from grit import exception namespace
285 raise exception.TooManyExamples()
H A Dbase.py16 from grit import exception namespace
48 # line identifying the offending node if an exception escapes from the body
120 raise exception.UnexpectedChild(explanation)
155 raise exception.UnexpectedContent()
173 raise exception.UnexpectedAttribute(attrib)
226 raise exception.MutuallyExclusiveMandatoryAttribute(mandatt)
229 raise exception.MissingMandatoryAttribute(mandatt)
H A Dmisc.py14 from grit import exception namespace
104 raise exception.UnexpectedChild(
210 raise exception.Parsing('latest_public_release cannot have a greater '
246 raise exception.DuplicateKey(', '.join(duplicate_names))
352 raise exception.MissingElement()
H A Dstructure.py13 from grit import exception namespace
189 raise exception.UnexpectedAttribute(
/external/chromium_org/tools/grit/grit/
H A Dtclib.py13 from grit import exception namespace
221 raise exception.InvalidPlaceholderName(presentation)
H A Dclique.py14 from grit import exception namespace
232 raise exception.MismatchingPlaceholders(
366 raise exception.InvalidMessage(self.GetMessage().GetRealContent())
446 grit.exception.InvalidTranslation if the translation you're trying to add
452 raise exception.InvalidTranslation(
/external/chromium_org/v8/test/mjsunit/
H A Dstrict-mode-implicit-receiver.js42 var exception = false;
43 try { strict_get_y(); } catch(e) { exception = true; }
44 assertTrue(exception);
54 var exception = false;
58 exception = true;
60 assertTrue(exception);
69 var exception = false; variable
76 exception = true;
78 assertTrue(exception);
/external/emma/core/java12/com/vladium/util/exception/
H A DExceptionCommon.java9 package com.vladium.util.exception;
45 * it possible to extend the set of exception error codes across independently
84 * @throws Error if 'namespace' does not correspond to an exception class derived
95 // bail out if the some other exception hierarchy attempts
122 // ignored intentionally: if the exception codes rb is absent,
241 * Provides support for lookup of exception error codes from {@link AbstractException}
248 * @param code the message string value that was passed into exception
293 * Provides support for lookup of exception error codes from {@link AbstractException}
300 * @param code the message string value that was passed into exception
497 // if the exception code
[all...]
/external/fdlibm/
H A Dfdlibm.h75 struct exception { struct
156 extern int ieee_matherr __P((struct exception *));
/external/guava/guava/src/com/google/common/util/concurrent/
H A DAbstractFuture.java181 * @param throwable the exception that the task failed with.
226 private Throwable exception; field in class:AbstractFuture.Sync
281 * on success, an exception on failure, a cancellation on cancellation, or
288 if (exception != null) {
289 throw new ExecutionException(exception);
325 * Transition to the COMPLETED state and set the exception.
346 * @param t the exception to set as the result of the computation.
354 // and exception and then release to the final state.
356 this.exception = t;
/external/objenesis/tck/src/org/objenesis/tck/
H A DTextReporter.java48 Exception exception; field in class:TextReporter.Result
54 * @param exception Exception that might have occured during the test
57 Exception exception) {
61 this.exception = exception;
126 public void exception(Exception exception) { argument
131 currentObjenesis, currentCandidate, false, exception));
184 if(result.exception != null) {
201 element.exception
56 Result(String objenesisDescription, String candidateDescription, boolean result, Exception exception) argument
[all...]
/external/objenesis/tck/test/org/objenesis/tck/
H A DObjenesisTest.java63 public void exception(Exception exception) { argument
68 exception.printStackTrace(out);
H A DTCKTest.java147 public void exception(Exception exception) { argument
148 log.append("exception()\n");
/external/v8/test/mjsunit/
H A Dstrict-mode-implicit-receiver.js42 var exception = false;
43 try { strict_get_y(); } catch(e) { exception = true; }
44 assertTrue(exception);
54 var exception = false;
58 exception = true;
60 assertTrue(exception);
69 var exception = false; variable
76 exception = true;
78 assertTrue(exception);
/external/chromium_org/content/renderer/pepper/
H A Dnpapi_glue.cc219 // before letting this class go out of scope, or the exception will have
227 // the result to the NPVariant output parameter and pass any exception on to
253 // exception. It will pass the exception on to the JS engine and update
272 // Call this to ignore any exception. This prevents the DCHECK from failing
278 // Throws the current exception to JS. The exception must be set.
337 TryCatch::TryCatch(PP_Var* exception) argument
338 : has_exception_(exception && exception
[all...]
H A Dppb_var_deprecated_impl.cc100 // given PP_Var. The module from the object will be used for the exception
104 // an exception if it's invalid. At the end of construction, if there is no
105 // exception, you know that there is no previously set exception, that the
111 ObjectAccessorTryCatch(PP_Var object, PP_Var* exception) argument
112 : TryCatch(exception),
136 // exception if it's invalid.
138 // At the end of construction, if there is no exception, you know that there is
139 // no previously set exception, that the object passed in is valid and ready to
147 PP_Var* exception)
145 ObjectAccessorWithIdentifierTryCatch(PP_Var object, PP_Var identifier, PP_Var* exception) argument
165 HasProperty(PP_Var var, PP_Var name, PP_Var* exception) argument
176 HasPropertyDeprecated(PP_Var var, PP_Var name, PP_Var* exception) argument
182 HasMethodDeprecated(PP_Var var, PP_Var name, PP_Var* exception) argument
192 GetProperty(PP_Var var, PP_Var name, PP_Var* exception) argument
212 EnumerateProperties(PP_Var var, uint32_t* property_count, PP_Var** properties, PP_Var* exception) argument
242 SetPropertyDeprecated(PP_Var var, PP_Var name, PP_Var value, PP_Var* exception) argument
260 DeletePropertyDeprecated(PP_Var var, PP_Var name, PP_Var* exception) argument
272 InternalCallDeprecated(ObjectAccessorTryCatch* accessor, PP_Var method_name, uint32_t argc, PP_Var* argv, PP_Var* exception) argument
326 CallDeprecated(PP_Var var, PP_Var method_name, uint32_t argc, PP_Var* argv, PP_Var* exception) argument
344 Construct(PP_Var var, uint32_t argc, PP_Var* argv, PP_Var* exception) argument
[all...]
/external/chromium_org/ppapi/proxy/
H A Dppb_var_deprecated_proxy.cc35 // exception is set, returns NULL. Otherwise, computes the dispatcher for the
37 // the exception.
39 PP_Var* exception) {
40 // If an exception is already set, we don't need to do anything, just return
42 if (exception && exception->type != PP_VARTYPE_UNDEFINED)
56 // to use, which is OK because the call will fail anyway. Set the exception.
57 if (exception) {
58 *exception = StringVar::StringToPPVar(
68 PP_Var* exception) {
38 CheckExceptionAndGetDispatcher(const PP_Var& object, PP_Var* exception) argument
66 HasProperty(PP_Var var, PP_Var name, PP_Var* exception) argument
85 HasMethod(PP_Var var, PP_Var name, PP_Var* exception) argument
104 GetProperty(PP_Var var, PP_Var name, PP_Var* exception) argument
123 EnumerateProperties(PP_Var var, uint32_t* property_count, PP_Var** properties, PP_Var* exception) argument
146 SetProperty(PP_Var var, PP_Var name, PP_Var value, PP_Var* exception) argument
165 RemoveProperty(PP_Var var, PP_Var name, PP_Var* exception) argument
183 Call(PP_Var object, PP_Var method_name, uint32_t argc, PP_Var* argv, PP_Var* exception) argument
208 Construct(PP_Var object, uint32_t argc, PP_Var* argv, PP_Var* exception) argument
390 OnMsgHasProperty( SerializedVarReceiveInput var, SerializedVarReceiveInput name, SerializedVarOutParam exception, PP_Bool* result) argument
402 OnMsgHasMethodDeprecated( SerializedVarReceiveInput var, SerializedVarReceiveInput name, SerializedVarOutParam exception, PP_Bool* result) argument
414 OnMsgGetProperty( SerializedVarReceiveInput var, SerializedVarReceiveInput name, SerializedVarOutParam exception, SerializedVarReturnValue result) argument
425 OnMsgEnumerateProperties( SerializedVarReceiveInput var, SerializedVarVectorOutParam props, SerializedVarOutParam exception) argument
435 OnMsgSetPropertyDeprecated( SerializedVarReceiveInput var, SerializedVarReceiveInput name, SerializedVarReceiveInput value, SerializedVarOutParam exception) argument
447 OnMsgDeleteProperty( SerializedVarReceiveInput var, SerializedVarReceiveInput name, SerializedVarOutParam exception, PP_Bool* result) argument
461 OnMsgCallDeprecated( SerializedVarReceiveInput object, SerializedVarReceiveInput method_name, SerializedVarVectorReceiveInput arg_vector, SerializedVarOutParam exception, SerializedVarReturnValue result) argument
477 OnMsgConstruct( SerializedVarReceiveInput var, SerializedVarVectorReceiveInput arg_vector, SerializedVarOutParam exception, SerializedVarReturnValue result) argument
[all...]
/external/chromium_org/tools/grit/grit/gather/
H A Dtr_html.py57 from grit import exception namespace
539 raise exception.BlockTagInTranslateableChunk(html)
560 raise exception.BlockTagInTranslateableChunk(html[current:])
648 grit.exception.NotReady() if used before Parse() has been successfully
650 grit.exception.NoSuchTranslation() if 'pseudo_if_not_available' is false
654 raise exception.NotReady()

Completed in 1500 milliseconds

1234567891011