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

1 2 3 4 5 6 7 8 91011>>

  /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/freetype/src/truetype/
ttinterp.c 58 ( ((TT_Driver)FT_FACE_DRIVER( exc->face ))->interpreter_version == \
63 exc->func_project( exc, (v1)->x - (v2)->x, (v1)->y - (v2)->y )
66 exc->func_dualproj( exc, (v1)->x - (v2)->x, (v1)->y - (v2)->y )
69 exc->func_project( exc, (v)->x, (v)->y )
72 exc->func_dualproj( exc, (v)->x, (v)->y )
79 typedef void (*TInstruction_Function)( TT_ExecContext exc,
    [all...]
  /external/pdfium/third_party/freetype/src/truetype/
ttinterp.c 58 ( ((TT_Driver)FT_FACE_DRIVER( exc->face ))->interpreter_version == \
63 exc->func_project( exc, (v1)->x - (v2)->x, (v1)->y - (v2)->y )
66 exc->func_dualproj( exc, (v1)->x - (v2)->x, (v1)->y - (v2)->y )
69 exc->func_project( exc, (v)->x, (v)->y )
72 exc->func_dualproj( exc, (v)->x, (v)->y )
79 typedef void (*TInstruction_Function)( TT_ExecContext exc,
    [all...]
  /libcore/ojluni/src/main/java/sun/nio/ch/
CompletedFuture.java 40 private final Throwable exc; field in class:CompletedFuture
42 private CompletedFuture(V result, Throwable exc) {
44 this.exc = exc;
51 static <V> CompletedFuture<V> withFailure(Throwable exc) {
53 if (!(exc instanceof IOException) && !(exc instanceof SecurityException))
54 exc = new IOException(exc);
55 return new CompletedFuture<V>(null, exc);
    [all...]
  /external/antlr/antlr-3.4/runtime/Python/antlr3/
extras.py 45 except ImportError, exc:
47 raise exc
  /external/chromium-trace/catapult/third_party/webapp2/tests/
misc_test.py 3 import webob.exc namespace
13 self.assertRaises(webob.exc.HTTPOk, webapp2.abort, 200)
14 self.assertRaises(webob.exc.HTTPCreated, webapp2.abort, 201)
15 self.assertRaises(webob.exc.HTTPAccepted, webapp2.abort, 202)
16 self.assertRaises(webob.exc.HTTPNonAuthoritativeInformation, webapp2.abort, 203)
17 self.assertRaises(webob.exc.HTTPNoContent, webapp2.abort, 204)
18 self.assertRaises(webob.exc.HTTPResetContent, webapp2.abort, 205)
19 self.assertRaises(webob.exc.HTTPPartialContent, webapp2.abort, 206)
20 self.assertRaises(webob.exc.HTTPMultipleChoices, webapp2.abort, 300)
21 self.assertRaises(webob.exc.HTTPMovedPermanently, webapp2.abort, 301
    [all...]
  /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/opencv3/3rdparty/openexr/Iex/
IexMacros.h 91 #define APPEND_EXC(exc, text) \
96 exc.append (s); \
100 #define REPLACE_EXC(exc, text) \
105 exc.assign (s); \
  /prebuilts/gdb/darwin-x86/lib/python2.7/
contextlib.py 37 except StopIteration, exc:
41 return exc is not value
107 exc = (None, None, None)
116 exc = sys.exc_info()
121 if exit(*exc):
122 exc = (None, None, None)
124 exc = sys.exc_info()
125 if exc != (None, None, None):
129 raise exc[0], exc[1], exc[2
    [all...]
  /prebuilts/gdb/darwin-x86/lib/python2.7/lib2to3/fixes/
fix_raise.py 35 raise_stmt< 'raise' exc=any [',' val=any [',' tb=any]] >
41 exc = results["exc"].clone()
42 if exc.type == token.STRING:
53 if is_tuple(exc):
54 while is_tuple(exc):
55 # exc.children[1:-1] is the unparenthesized tuple
56 # exc.children[1].children[0] is the first element of the tuple
57 exc = exc.children[1].children[0].clone(
    [all...]
  /prebuilts/gdb/linux-x86/lib/python2.7/
contextlib.py 37 except StopIteration, exc:
41 return exc is not value
107 exc = (None, None, None)
116 exc = sys.exc_info()
121 if exit(*exc):
122 exc = (None, None, None)
124 exc = sys.exc_info()
125 if exc != (None, None, None):
129 raise exc[0], exc[1], exc[2
    [all...]
  /prebuilts/gdb/linux-x86/lib/python2.7/lib2to3/fixes/
fix_raise.py 35 raise_stmt< 'raise' exc=any [',' val=any [',' tb=any]] >
41 exc = results["exc"].clone()
42 if exc.type == token.STRING:
53 if is_tuple(exc):
54 while is_tuple(exc):
55 # exc.children[1:-1] is the unparenthesized tuple
56 # exc.children[1].children[0] is the first element of the tuple
57 exc = exc.children[1].children[0].clone(
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
contextlib.py 37 except StopIteration, exc:
41 return exc is not value
107 exc = (None, None, None)
116 exc = sys.exc_info()
121 if exit(*exc):
122 exc = (None, None, None)
124 exc = sys.exc_info()
125 if exc != (None, None, None):
129 raise exc[0], exc[1], exc[2
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/lib2to3/fixes/
fix_raise.py 35 raise_stmt< 'raise' exc=any [',' val=any [',' tb=any]] >
41 exc = results["exc"].clone()
42 if exc.type == token.STRING:
53 if is_tuple(exc):
54 while is_tuple(exc):
55 # exc.children[1:-1] is the unparenthesized tuple
56 # exc.children[1].children[0] is the first element of the tuple
57 exc = exc.children[1].children[0].clone(
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/
contextlib.py 37 except StopIteration, exc:
41 return exc is not value
107 exc = (None, None, None)
116 exc = sys.exc_info()
121 if exit(*exc):
122 exc = (None, None, None)
124 exc = sys.exc_info()
125 if exc != (None, None, None):
129 raise exc[0], exc[1], exc[2
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/lib2to3/fixes/
fix_raise.py 35 raise_stmt< 'raise' exc=any [',' val=any [',' tb=any]] >
41 exc = results["exc"].clone()
42 if exc.type == token.STRING:
53 if is_tuple(exc):
54 while is_tuple(exc):
55 # exc.children[1:-1] is the unparenthesized tuple
56 # exc.children[1].children[0] is the first element of the tuple
57 exc = exc.children[1].children[0].clone(
    [all...]
  /prebuilts/gdb/darwin-x86/lib/python2.7/test/
test_pep352.py 73 exc = getattr(__builtin__, exc_name)
81 self.assertTrue(issubclass(exc, superclasses[-1][1]),
82 "%s is not a subclass of %s" % (exc.__name__,
85 self.verify_instance_interface(exc())
90 last_exc = exc
108 exc = Exception(arg)
109 results = ([len(exc.args), 1], [exc.args[0], arg], [exc.message, arg],
110 [str(exc), str(arg)], [unicode(exc), unicode(arg)]
    [all...]
  /prebuilts/gdb/linux-x86/lib/python2.7/test/
test_pep352.py 73 exc = getattr(__builtin__, exc_name)
81 self.assertTrue(issubclass(exc, superclasses[-1][1]),
82 "%s is not a subclass of %s" % (exc.__name__,
85 self.verify_instance_interface(exc())
90 last_exc = exc
108 exc = Exception(arg)
109 results = ([len(exc.args), 1], [exc.args[0], arg], [exc.message, arg],
110 [str(exc), str(arg)], [unicode(exc), unicode(arg)]
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/
test_pep352.py 73 exc = getattr(__builtin__, exc_name)
81 self.assertTrue(issubclass(exc, superclasses[-1][1]),
82 "%s is not a subclass of %s" % (exc.__name__,
85 self.verify_instance_interface(exc())
90 last_exc = exc
108 exc = Exception(arg)
109 results = ([len(exc.args), 1], [exc.args[0], arg], [exc.message, arg],
110 [str(exc), str(arg)], [unicode(exc), unicode(arg)]
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/
test_pep352.py 73 exc = getattr(__builtin__, exc_name)
81 self.assertTrue(issubclass(exc, superclasses[-1][1]),
82 "%s is not a subclass of %s" % (exc.__name__,
85 self.verify_instance_interface(exc())
90 last_exc = exc
108 exc = Exception(arg)
109 results = ([len(exc.args), 1], [exc.args[0], arg], [exc.message, arg],
110 [str(exc), str(arg)], [unicode(exc), unicode(arg)]
    [all...]
  /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)
  /external/chromium-trace/catapult/telemetry/third_party/modulegraph/modulegraph_tests/testpkg-compatmodule/pkg/
api2.py 7 except ZeroDivisionError, exc:
api3.py 7 except ZeroDivisionError as exc:
  /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,

Completed in 592 milliseconds

1 2 3 4 5 6 7 8 91011>>