HomeSort by relevance Sort by last modified time
    Searched refs:exc (Results 1 - 25 of 174) sorted by null

1 2 3 4 5 6 7

  /external/fdlibm/
k_standard.c 84 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.retval = zero
    [all...]
  /external/antlr/antlr-3.4/runtime/Python/antlr3/
extras.py 45 except ImportError, exc:
47 raise exc
  /external/antlr/antlr-3.4/runtime/Python/unittests/
testexceptions.py 12 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/antlr/antlr-3.4/runtime/Python/tests/
t012lexerXML.py 71 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.unexpectedType
    [all...]
t006lexer.py 53 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)
t009lexer.py 58 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)
t007lexer.py 51 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)
t008lexer.py 59 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)
t005lexer.py 57 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)
t010lexer.py 70 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)
t011lexer.py 70 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)
t001lexer.py 51 except antlr3.MismatchedTokenException, exc:
52 self.failUnlessEqual(exc.expecting, '0')
53 self.failUnlessEqual(exc.unexpectedType, '1')
  /external/speex/libspeex/
cb_search.h 59 spx_sig_t *exc,
68 spx_sig_t *exc,
85 spx_sig_t *exc,
95 spx_sig_t *exc,
ltp.h 64 spx_sig_t exc[], /* Overlapping codebook */
83 spx_word16_t exc[], /* Input excitation */
107 spx_sig_t exc[], /* Excitation */
126 spx_word16_t exc[], /* Input excitation */
  /frameworks/av/media/libstagefright/codecs/amrnb/common/include/
pred_lt.h 98 Word16 exc[], /* in/out: excitation buffer */
  /frameworks/av/media/libstagefright/codecs/amrwb/src/
synthesis_amr_wb.h 78 int16 exc[], /* (i) : excitation at 12kHz */
79 int16 Q_new, /* (i) : scaling performed on exc */
  /frameworks/av/media/libstagefright/codecs/amrwbenc/src/
voicefac.c 29 Word16 exc[], /* (i) Q_exc : pitch excitation */
30 Word16 Q_exc, /* (i) : exc format */
41 ener1 = extract_h(Dot_product12_asm(exc, exc, L_subfr, &exp1));
43 ener1 = extract_h(Dot_product12(exc, exc, L_subfr, &exp1));
  /external/antlr/antlr-3.4/runtime/Ruby/test/functional/lexer/
basic.rb 76 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.unexpected_type.should == '2
    [all...]
  /external/apache-xml/src/main/java/org/apache/xml/serializer/
ToSAXHandler.java 367 public void fatalError(SAXParseException exc) throws SAXException {
368 super.fatalError(exc);
373 ((ErrorHandler)m_saxHandler).fatalError(exc);
380 public void error(SAXParseException exc) throws SAXException {
381 super.error(exc);
384 ((ErrorHandler)m_saxHandler).error(exc);
391 public void warning(SAXParseException exc) throws SAXException {
392 super.warning(exc);
395 ((ErrorHandler)m_saxHandler).warning(exc);
  /external/wpa_supplicant_8/wpa_supplicant/examples/
wpas-test.py 40 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
  /frameworks/av/media/libstagefright/codecs/amrnb/enc/src/
spreproc.h 120 Word16 exc[], /* o : long term prediction residual */
spstproc.h 124 Word16 *exc, /* o : long term prediction residual */
spreproc.cpp 115 exc -- Word16 array -- long term prediction residual
183 Word16 exc[], /* o : long term prediction residual */
223 memcpy(exc, res2, L_SUBFR*sizeof(Word16));
225 Syn_filt(Aq, exc, error, L_SUBFR, mem_err, 0);
  /ndk/sources/cxx-stl/gabi++/src/
helper_func_internal.h 62 void saveDataToBarrierCache(_Unwind_Exception* exc,
66 void loadDataFromBarrierCache(_Unwind_Exception* exc,
69 void prepareBeginCleanup(_Unwind_Exception* exc);
71 void saveUnexpectedDataToBarrierCache(_Unwind_Exception* exc,
  /external/v8/src/
execution.h 98 static Handle<Object> ToNumber(Handle<Object> obj, bool* exc);
101 static Handle<Object> ToInteger(Handle<Object> obj, bool* exc);
104 static Handle<Object> ToInt32(Handle<Object> obj, bool* exc);
107 static Handle<Object> ToUint32(Handle<Object> obj, bool* exc);
110 static Handle<Object> ToString(Handle<Object> obj, bool* exc);
113 static Handle<Object> ToDetailString(Handle<Object> obj, bool* exc);
116 static Handle<Object> ToObject(Handle<Object> obj, bool* exc);
119 static Handle<Object> NewDate(double time, bool* exc);
124 bool* exc);
131 Handle<FunctionTemplateInfo> data, bool* exc);
    [all...]

Completed in 362 milliseconds

1 2 3 4 5 6 7