Searched defs:throw (Results 1 - 7 of 7) sorted by relevance

/external/antlr/antlr-3.4/runtime/Perl5/t/classes/Test/ANTLR/Runtime/
H A DException.pm21 sub throw : Test(1) { subroutine
24 $self->class->throw(message => 'test error message');
/external/clang/test/SemaTemplate/
H A Dinstantiate-exception-spec.cpp5 template<typename T> void f1(T*) throw(T); // expected-error{{incomplete type 'Incomplete' is not allowed in exception specification}}
14 template<typename T> void f(void (*p)() throw(T)) { argument
16 void (*q)() throw(char) = p; // expected-error {{target exception spec}}
18 extern void (*p2)() throw(T);
19 void (*q2)() throw(char) = p2; // expected-error {{target exception spec}}
21 extern void (*p3)() throw(char);
22 void (*q3)() throw(T) = p3; // expected-error {{target exception spec}}
24 void (*q4)() throw(T) = p2; // ok
/external/toybox/toys/other/
H A Dshred.c52 int fd = open(*try, O_RDWR), iter = 0, throw; local
95 throw = sizeof(toybuf);
97 if (len-pos < throw) throw = len-pos;
99 if (iter != TT.iterations) xread(TT.ufd, toybuf, throw);
100 if (throw != writeall(fd, toybuf, throw)) perror_msg_raw(*try);
101 pos += throw;
/external/toybox/lib/
H A Dlinestack.c7 void linestack_addstack(struct linestack **lls, struct linestack *throw, argument
16 if (catch->len+throw->len >= catch->max) {
18 catch->max = ((catch->len+throw->len)|63)+1;
25 memmove((*lls)->idx+pos+throw->len, catch->idx+pos,
35 memcpy(catch->idx+pos, throw->idx, throw->len*sizeof(struct ptr_len));
36 catch->len += throw->len;
/external/toybox/toys/posix/
H A Dod.c54 int throw = 0, pad = 0; local
83 pad += (throw = 8)+7;
86 pad += (throw = 17)+8;
89 pad += (throw = 21)+9;
92 sprintf(buf, "%.*Le", throw, ld);
104 throw = sprintf(buf, class, 0, or);
115 throw++;
120 sprintf(buf, class, throw, ll);
121 pad += throw+1;
/external/toybox/scripts/
H A Dconfig2help.c250 struct symbol *throw = 0, *catch; local
263 // text out of throw into catch, copying from this to that
264 if (!throw) name = that;
268 if (!throw) len = that-name;
270 if (!throw) {
271 throw = catch;
277 // Grab option description lines to collate from catch and throw
278 tusage = dlist_zap(&throw->help);
279 tdashlines = grab_dashlines(&throw->help, &tfrom, &tlen);
298 // If throw ha
[all...]
/external/clang/test/Preprocessor/
H A Dcxx_oper_keyword_ms_compat.cpp89 #define throw macro
174 throw

Completed in 1168 milliseconds