Searched defs:exceptions (Results 126 - 150 of 176) sorted by relevance

12345678

/external/chromium_org/tools/telemetry/telemetry/page/
H A Dpage_runner_unittest.py13 from telemetry.core import exceptions namespace
159 raise exceptions.BrowserGoneException(tab.browser)
476 raise exceptions.IntentionalException
/external/doclava/src/com/google/doclava/
H A DPackageInfo.java91 enums(), exceptions() };
116 enums(), exceptions() };
215 ClassInfo.makeLinkListHDF(data, base + ".exceptions", exceptions());
255 public ClassInfo[] exceptions() { method in class:PackageInfo
259 Converter.convertClasses(mPackage.exceptions())));
H A DStubs.java709 // bad exception indicates that the exceptions thrown by the super constructor
947 // but write exceptions in canonicalized order
948 ArrayList<ClassInfo> exceptions = mi.thrownExceptions();
949 Collections.sort(exceptions, ClassInfo.comparator);
950 for (ClassInfo pi : exceptions) {
980 ArrayList<ClassInfo> exceptions = mi.thrownExceptions();
981 Collections.sort(exceptions, ClassInfo.comparator);
982 for (ClassInfo pi : exceptions) {
1318 static void writeThrowsApi(PrintStream apiWriter, ArrayList<ClassInfo> exceptions) { argument
1320 exceptions
[all...]
/external/javassist/src/main/javassist/bytecode/
H A DCodeAttribute.java45 private ExceptionTable exceptions; field in class:CodeAttribute
64 exceptions = etable;
84 exceptions = src.getExceptionTable().copy(cp, classnames);
93 info = src.copyCode(cp, classnames, exceptions, this);
109 exceptions = new ExceptionTable(cp, in);
161 return 18 + info.length + exceptions.size() * 8
172 exceptions.write(out);
285 public ExceptionTable getExceptionTable() { return exceptions; }
H A DClassFileWriter.java339 * @param exceptions throws clause. It may be null.
345 String[] exceptions, AttributeWriter aw) {
349 if (exceptions == null)
352 intfs = constPool.addClassInfo(exceptions);
363 * @param exceptions throws clause. indexes indicating <code>CONSTANT_Class_info</code>s.
367 public void begin(int accessFlags, int name, int descriptor, int[] exceptions, AttributeWriter aw) { argument
375 if (exceptions != null)
380 if (exceptions != null)
381 writeThrows(exceptions);
396 private void writeThrows(int[] exceptions) { argument
344 begin(int accessFlags, String name, String descriptor, String[] exceptions, AttributeWriter aw) argument
[all...]
H A DSignatureAttribute.java230 ObjectType[] exceptions; field in class:SignatureAttribute.MethodSignature
236 exceptions = ex;
259 * Returns the types of the exceptions that may be thrown.
261 * @return a zero-length array if exceptions are never thrown or
264 public ObjectType[] getExceptionTypes() { return exceptions; }
277 if (exceptions.length > 0) {
279 Type.toString(sbuf, exceptions);
688 ArrayList exceptions = new ArrayList();
695 exceptions.add(t);
699 ObjectType[] ex = (ObjectType[])exceptions
[all...]
/external/mockito/cglib-and-asm/src/org/mockito/asm/tree/
H A DMethodNode.java77 public List exceptions; field in class:MethodNode
158 * @param exceptions the internal names of the method's exception classes
167 final String[] exceptions)
174 this.exceptions = new ArrayList(exceptions == null
176 : exceptions.length);
182 if (exceptions != null) {
183 this.exceptions.addAll(Arrays.asList(exceptions));
404 String[] exceptions
162 MethodNode( final int access, final String name, final String desc, final String signature, final String[] exceptions) argument
[all...]
/external/chromium_org/chrome/browser/content_settings/
H A Dhost_content_settings_map.cc617 // Change the exceptions using the same rules.
618 ContentSettingsForOneType exceptions; local
623 &exceptions,
625 for (ContentSettingsForOneType::iterator it = exceptions.begin();
626 it != exceptions.end(); ++it) {
654 // Handle the case using compound values for its exceptions and arbitrary
655 // values for its default setting. Here we assume all the exceptions
/external/chromium_org/storage/browser/quota/
H A Dquota_database.cc330 const std::set<GURL>& exceptions,
346 if (exceptions.find(url) != exceptions.end())
328 GetLRUOrigin( StorageType type, const std::set<GURL>& exceptions, SpecialStoragePolicy* special_storage_policy, GURL* origin) argument
/external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/thirdparty/coverage/
H A Dtracer.c110 unsigned exceptions; member in struct:__anon11461::__anon11462
129 self->stats.exceptions = 0;
447 STATS( self->stats.exceptions++; )
568 "exceptions", self->stats.exceptions,
/external/chromium_org/third_party/icu/source/common/
H A Ducase.cpp37 const uint16_t *exceptions; member in struct:UCaseProps
86 #define GET_EXCEPTIONS(csp, props) ((csp)->exceptions+((props)>>UCASE_EXC_SHIFT))
116 * @param excWord (in) initial exceptions word
242 * c has exceptions, so there may be multiple simple and/or
/external/icu/icu4c/source/common/
H A Ducase.cpp37 const uint16_t *exceptions; member in struct:UCaseProps
86 #define GET_EXCEPTIONS(csp, props) ((csp)->exceptions+((props)>>UCASE_EXC_SHIFT))
116 * @param excWord (in) initial exceptions word
242 * c has exceptions, so there may be multiple simple and/or
/external/mockito/cglib-and-asm/src/org/mockito/cglib/core/
H A DEmitUtils.java877 public static void wrap_undeclared_throwable(CodeEmitter e, Block handler, Type[] exceptions, Type wrapper) { argument
878 Set set = (exceptions == null) ? Collections.EMPTY_SET : new HashSet(Arrays.asList(exceptions));
883 boolean needThrow = exceptions != null;
892 if (exceptions != null) {
893 for (int i = 0; i < exceptions.length; i++) {
894 e.catch_exception(handler, exceptions[i]);
/external/wpa_supplicant_8/hostapd/src/utils/
H A Deloop.c90 struct eloop_sock_table exceptions; member in struct:eloop_data
161 eloop.exceptions.type = EVENT_TYPE_EXCEPTION;
342 struct eloop_sock_table *exceptions,
393 if (exceptions && exceptions->table) {
394 for (i = 0; i < exceptions->count; i++) {
399 fd = exceptions->table[i].sock;
451 struct eloop_sock_table *exceptions,
464 eloop_sock_table_dispatch_table(exceptions, pollfds_map,
573 return &eloop.exceptions;
340 eloop_sock_table_set_fds(struct eloop_sock_table *readers, struct eloop_sock_table *writers, struct eloop_sock_table *exceptions, struct pollfd *pollfds, struct pollfd **pollfds_map, int max_pollfd_map) argument
449 eloop_sock_table_dispatch(struct eloop_sock_table *readers, struct eloop_sock_table *writers, struct eloop_sock_table *exceptions, struct pollfd **pollfds_map, int max_pollfd_map) argument
[all...]
/external/wpa_supplicant_8/src/utils/
H A Deloop.c90 struct eloop_sock_table exceptions; member in struct:eloop_data
161 eloop.exceptions.type = EVENT_TYPE_EXCEPTION;
342 struct eloop_sock_table *exceptions,
393 if (exceptions && exceptions->table) {
394 for (i = 0; i < exceptions->count; i++) {
399 fd = exceptions->table[i].sock;
451 struct eloop_sock_table *exceptions,
464 eloop_sock_table_dispatch_table(exceptions, pollfds_map,
573 return &eloop.exceptions;
340 eloop_sock_table_set_fds(struct eloop_sock_table *readers, struct eloop_sock_table *writers, struct eloop_sock_table *exceptions, struct pollfd *pollfds, struct pollfd **pollfds_map, int max_pollfd_map) argument
449 eloop_sock_table_dispatch(struct eloop_sock_table *readers, struct eloop_sock_table *writers, struct eloop_sock_table *exceptions, struct pollfd **pollfds_map, int max_pollfd_map) argument
[all...]
/external/wpa_supplicant_8/wpa_supplicant/src/utils/
H A Deloop.c90 struct eloop_sock_table exceptions; member in struct:eloop_data
161 eloop.exceptions.type = EVENT_TYPE_EXCEPTION;
342 struct eloop_sock_table *exceptions,
393 if (exceptions && exceptions->table) {
394 for (i = 0; i < exceptions->count; i++) {
399 fd = exceptions->table[i].sock;
451 struct eloop_sock_table *exceptions,
464 eloop_sock_table_dispatch_table(exceptions, pollfds_map,
573 return &eloop.exceptions;
340 eloop_sock_table_set_fds(struct eloop_sock_table *readers, struct eloop_sock_table *writers, struct eloop_sock_table *exceptions, struct pollfd *pollfds, struct pollfd **pollfds_map, int max_pollfd_map) argument
449 eloop_sock_table_dispatch(struct eloop_sock_table *readers, struct eloop_sock_table *writers, struct eloop_sock_table *exceptions, struct pollfd **pollfds_map, int max_pollfd_map) argument
[all...]
/external/chromium_org/chrome/browser/ui/webui/options/
H A Dcontent_settings_handler.cc140 // in a HostContentSettingsMap-controlled exceptions table (e.g., cookies).
159 // in the Geolocation exceptions table. Ownership of the pointer is passed to
173 // in the desktop notifications exceptions table. Ownership of the pointer is
201 // Add an "Allow"-entry to the list of |exceptions| for a |url_pattern| from
204 const extensions::Extension& app, base::ListValue* exceptions) {
212 exceptions->Append(exception);
216 // adds their web extent and launch URL to the |exceptions| list.
219 base::ListValue* exceptions) {
232 AddExceptionForHostedApp(url_pattern, *extension->get(), exceptions);
240 AddExceptionForHostedApp(launch_url.spec(), *extension->get(), exceptions);
203 AddExceptionForHostedApp(const std::string& url_pattern, const extensions::Extension& app, base::ListValue* exceptions) argument
217 AddExceptionsGrantedByHostedApps(content::BrowserContext* context, AppFilter app_filter, base::ListValue* exceptions) argument
796 base::ListValue exceptions; local
845 base::ListValue exceptions; local
1030 base::ListValue exceptions; local
1032 GetContentSettingsMap(), type, &exceptions); local
1067 GetExceptionsFromHostContentSettingsMap( const HostContentSettingsMap* map, ContentSettingsType type, base::ListValue* exceptions) argument
[all...]
/external/chromium_org/v8/src/mips/
H A Dsimulator-mips.h326 int16_t exceptions[kNumExceptions]; member in class:v8::internal::Simulator
/external/chromium_org/v8/src/mips64/
H A Dsimulator-mips64.h378 int16_t exceptions[kNumExceptions]; member in class:v8::internal::Simulator
/external/javassist/src/main/javassist/util/proxy/
H A DProxyFactory.java1174 Class[] exceptions = orig.getExceptionTypes();
1175 setThrows(minfo, cp, exceptions);
1179 Class[] exceptions) {
1180 if (exceptions.length == 0)
1183 String[] list = new String[exceptions.length];
1184 for (int i = 0; i < exceptions.length; i++)
1185 list[i] = exceptions[i].getName();
1178 setThrows(MethodInfo minfo, ConstPool cp, Class[] exceptions) argument
/external/mockito/cglib-and-asm/src/org/mockito/asm/
H A DClassWriter.java682 final String[] exceptions)
689 exceptions,
677 visitMethod( final int access, final String name, final String desc, final String signature, final String[] exceptions) argument
H A DMethodWriter.java173 * Number of exceptions that can be thrown by this method.
178 * The exceptions that can be thrown by this method. More precisely, this
182 int[] exceptions; field in class:MethodWriter
404 * @param exceptions the internal names of the method's exceptions. May be
417 final String[] exceptions,
435 if (exceptions != null && exceptions.length > 0) {
436 exceptionCount = exceptions.length;
437 this.exceptions
411 MethodWriter( final ClassWriter cw, final int access, final String name, final String desc, final String signature, final String[] exceptions, final boolean computeMaxs, final boolean computeFrames) argument
[all...]
/external/mockito/src/org/mockito/exceptions/
H A DReporter.java6 package org.mockito.exceptions;
8 import org.mockito.exceptions.base.MockitoAssertionError;
9 import org.mockito.exceptions.base.MockitoException;
10 import org.mockito.exceptions.misusing.*;
11 import org.mockito.exceptions.verification.*;
13 import org.mockito.internal.exceptions.VerificationAwareInvocation;
14 import org.mockito.internal.exceptions.util.ScenarioPrinter;
/external/qemu-pc-bios/bochs/
H A Dbochs.h444 bx_bool exceptions; member in struct:__anon30290
/external/dexmaker/lib/
H A Dmockito-core-1.9.1-SNAPSHOT.jar ... impl/ org/mockito/cglib/util/ org/mockito/configuration/ org/mockito/exceptions/ org/mockito/exceptions/base/ org/mockito/exceptions/misusing/ org/mockito ...

Completed in 1694 milliseconds

12345678