Searched refs:exc (Results 1 - 25 of 167) sorted by relevance

1234567

/external/fdlibm/
H A Dk_standard.c84 struct exception exc; local
95 exc.arg1 = x;
96 exc.arg2 = y;
100 exc.type = DOMAIN;
101 exc.name = "acos";
102 exc.retval = zero;
105 else if (!ieee_matherr(&exc)) {
114 exc.type = DOMAIN;
115 exc.name = "asin";
116 exc
[all...]
/external/antlr/antlr-3.4/runtime/Python/antlr3/
H A Dextras.py45 except ImportError, exc:
47 raise exc
/external/antlr/antlr-3.4/runtime/Python/tests/
H A Dt012lexerXML.py71 except antlr3.NoViableAltException, exc:
72 assert exc.unexpectedType == '>', repr(exc.unexpectedType)
73 assert exc.charPositionInLine == 11, repr(exc.charPositionInLine)
74 assert exc.line == 2, repr(exc.line)
95 except antlr3.MismatchedSetException, exc:
96 assert exc.unexpectedType == 't', repr(exc
[all...]
H A Dt006lexer.py53 except antlr3.MismatchedTokenException, exc:
54 assert exc.expecting == 'f', repr(exc.expecting)
55 assert exc.unexpectedType == '2', repr(exc.unexpectedType)
56 assert exc.charPositionInLine == 10, repr(exc.charPositionInLine)
57 assert exc.line == 1, repr(exc.line)
H A Dt007lexer.py51 except antlr3.EarlyExitException, exc:
52 assert exc.unexpectedType == 'o', repr(exc.unexpectedType)
53 assert exc.charPositionInLine == 6, repr(exc.charPositionInLine)
54 assert exc.line == 1, repr(exc.line)
H A Dt005lexer.py57 except antlr3.MismatchedTokenException, exc:
58 assert exc.expecting == 'f', repr(exc.expecting)
59 assert exc.unexpectedType == '2', repr(exc.unexpectedType)
70 except antlr3.EarlyExitException, exc:
71 assert exc.unexpectedType == antlr3.EOF, repr(exc.unexpectedType)
H A Dt009lexer.py58 except antlr3.MismatchedSetException, exc:
60 assert exc.expecting is None
61 assert exc.unexpectedType == 'a', repr(exc.unexpectedType)
62 assert exc.charPositionInLine == 1, repr(exc.charPositionInLine)
63 assert exc.line == 1, repr(exc.line)
H A Dt008lexer.py59 except antlr3.MismatchedTokenException, exc:
60 assert exc.unexpectedType == 'b', repr(exc.unexpectedType)
61 assert exc.charPositionInLine == 3, repr(exc.charPositionInLine)
62 assert exc.line == 1, repr(exc.line)
H A Dt010lexer.py70 except antlr3.NoViableAltException, exc:
71 assert exc.unexpectedType == '-', repr(exc.unexpectedType)
72 assert exc.charPositionInLine == 1, repr(exc.charPositionInLine)
73 assert exc.line == 1, repr(exc.line)
H A Dt011lexer.py70 except antlr3.NoViableAltException, exc:
71 assert exc.unexpectedType == '-', repr(exc.unexpectedType)
72 assert exc.charPositionInLine == 1, repr(exc.charPositionInLine)
73 assert exc.line == 1, repr(exc.line)
/external/antlr/antlr-3.4/runtime/Python/unittests/
H A Dtestexceptions.py12 exc = antlr3.RecognitionException()
22 exc = antlr3.EarlyExitException()
32 exc = antlr3.FailedPredicateException()
42 exc = antlr3.MismatchedNotSetException()
52 exc = antlr3.MismatchedRangeException()
62 exc = antlr3.MismatchedSetException()
72 exc = antlr3.MismatchedTokenException()
82 exc = antlr3.MismatchedTreeNodeException()
92 exc = antlr3.NoViableAltException()
/external/chromium_org/third_party/speex/libspeex/
H A Dcb_search.h59 spx_sig_t *exc,
68 spx_sig_t *exc,
85 spx_sig_t *exc,
95 spx_sig_t *exc,
/external/speex/libspeex/
H A Dcb_search.h59 spx_sig_t *exc,
68 spx_sig_t *exc,
85 spx_sig_t *exc,
95 spx_sig_t *exc,
/external/wpa_supplicant_8/wpa_supplicant/examples/
H A Dwpas-test.py40 except dbus.dbus_bindings.DBusException, exc:
41 if str(exc) != "wpa_supplicant knows nothing about this interface.":
42 raise exc
45 except dbus.dbus_bindings.DBusException, exc:
46 if str(exc) != "wpa_supplicant already controls this interface.":
47 raise exc
/external/lldb/source/Plugins/Process/Utility/
H A DRegisterContextMach_i386.cpp48 RegisterContextMach_i386::DoReadEXC (lldb::tid_t tid, int flavor, EXC &exc) argument
51 return ::thread_get_state(tid, flavor, (thread_state_t)&exc, &count);
67 RegisterContextMach_i386::DoWriteEXC (lldb::tid_t tid, int flavor, const EXC &exc) argument
69 return ::thread_set_state(tid, flavor, (thread_state_t)&exc, EXCWordCount);
H A DRegisterContextMach_x86_64.cpp48 RegisterContextMach_x86_64::DoReadEXC (lldb::tid_t tid, int flavor, EXC &exc) argument
51 return ::thread_get_state(tid, flavor, (thread_state_t)&exc, &count);
67 RegisterContextMach_x86_64::DoWriteEXC (lldb::tid_t tid, int flavor, const EXC &exc) argument
69 return ::thread_set_state(tid, flavor, (thread_state_t)&exc, EXCWordCount);
H A DRegisterContextMach_arm.h38 DoReadEXC (lldb::tid_t tid, int flavor, EXC &exc);
50 DoWriteEXC (lldb::tid_t tid, int flavor, const EXC &exc);
/external/antlr/antlr-3.4/runtime/Ruby/test/functional/lexer/
H A Dbasic.rb76 b.should raise_error( ANTLR3::Error::NoViableAlternative ) do |exc|
77 exc.unexpected_type.should == '2'
117 should raise_error( ANTLR3::Error::NoViableAlternative ) do |exc|
118 exc.unexpected_type.should == '2'
171 should raise_error( ANTLR3::Error::MismatchedToken ) do |exc|
172 exc.expecting.should == 'f'
173 exc.unexpected_type.should == '2'
219 should raise_error( ANTLR3::Error::MismatchedToken ) do |exc|
220 exc.expecting.should == 'f'
221 exc
[all...]
/external/apache-xml/src/main/java/org/apache/xml/serializer/
H A DToSAXHandler.java367 public void fatalError(SAXParseException exc) throws SAXException { argument
368 super.fatalError(exc);
373 ((ErrorHandler)m_saxHandler).fatalError(exc);
380 public void error(SAXParseException exc) throws SAXException { argument
381 super.error(exc);
384 ((ErrorHandler)m_saxHandler).error(exc);
391 public void warning(SAXParseException exc) throws SAXException { argument
392 super.warning(exc);
395 ((ErrorHandler)m_saxHandler).warning(exc);
/external/lldb/source/Plugins/Process/MacOSX-Kernel/
H A DRegisterContextKDP_arm.cpp66 RegisterContextKDP_arm::DoReadEXC (lldb::tid_t tid, int flavor, EXC &exc) argument
72 if (static_cast<ProcessKDP *>(process_sp.get())->GetCommunication().SendRequestReadRegisters (tid, EXCRegSet, &exc, sizeof(exc), error))
130 RegisterContextKDP_arm::DoWriteEXC (lldb::tid_t tid, int flavor, const EXC &exc) argument
136 if (static_cast<ProcessKDP *>(process_sp.get())->GetCommunication().SendRequestWriteRegisters (tid, EXCRegSet, &exc, sizeof(exc), error))
H A DRegisterContextKDP_i386.cpp66 RegisterContextKDP_i386::DoReadEXC (lldb::tid_t tid, int flavor, EXC &exc) argument
72 if (static_cast<ProcessKDP *>(process_sp.get())->GetCommunication().SendRequestReadRegisters (tid, EXCRegSet, &exc, sizeof(exc), error))
114 RegisterContextKDP_i386::DoWriteEXC (lldb::tid_t tid, int flavor, const EXC &exc) argument
120 if (static_cast<ProcessKDP *>(process_sp.get())->GetCommunication().SendRequestWriteRegisters (tid, EXCRegSet, &exc, sizeof(exc), error))
H A DRegisterContextKDP_x86_64.cpp66 RegisterContextKDP_x86_64::DoReadEXC (lldb::tid_t tid, int flavor, EXC &exc) argument
72 if (static_cast<ProcessKDP *>(process_sp.get())->GetCommunication().SendRequestReadRegisters (tid, EXCRegSet, &exc, sizeof(exc), error))
114 RegisterContextKDP_x86_64::DoWriteEXC (lldb::tid_t tid, int flavor, const EXC &exc) argument
120 if (static_cast<ProcessKDP *>(process_sp.get())->GetCommunication().SendRequestWriteRegisters (tid, EXCRegSet, &exc, sizeof(exc), error))
H A DRegisterContextKDP_arm.h41 DoReadEXC (lldb::tid_t tid, int flavor, EXC &exc);
53 DoWriteEXC (lldb::tid_t tid, int flavor, const EXC &exc);
H A DRegisterContextKDP_i386.h39 DoReadEXC (lldb::tid_t tid, int flavor, EXC &exc);
48 DoWriteEXC (lldb::tid_t tid, int flavor, const EXC &exc);
H A DRegisterContextKDP_x86_64.h40 DoReadEXC (lldb::tid_t tid, int flavor, EXC &exc);
49 DoWriteEXC (lldb::tid_t tid, int flavor, const EXC &exc);

Completed in 1520 milliseconds

1234567