Searched refs:ex (Results 1 - 25 of 471) sorted by relevance

1234567891011>>

/macosx-10.9.5/xnu-2422.115.4/bsd/i386/
H A Dexec.h72 #define N_BADMAG(ex) \
73 ((ex).a_magic != NMAGIC && (ex).a_magic != OMAGIC && \
74 (ex).a_magic != ZMAGIC)
80 #define N_DATADDR(ex) \
81 (N_TXTADDR(ex) + ((ex).a_magic == OMAGIC ? (ex).a_text \
82 : __LDPGSZ + ((ex).a_text - 1 & ~(__LDPGSZ - 1))))
85 #define N_TXTOFF(ex) \
[all...]
/macosx-10.9.5/libunwind-35.3/testsuite/
H A Dend_of_stack.c23 struct _Unwind_Exception ex; variable in typeref:struct:_Unwind_Exception
27 ex.exception_class = ((uint64_t)'mymy' << 32) | (uint64_t)'exex';
28 ex.exception_cleanup = NULL;
29 ex.private_1 = 0;
30 ex.private_2 = 0;
32 _Unwind_Reason_Code result = _Unwind_RaiseException(&ex);
/macosx-10.9.5/ksh-20/ksh/src/lib/libast/string/
H A Dstrexpr.c43 #define getchr(ex) (*(ex)->nextchr++)
44 #define peekchr(ex) (*(ex)->nextchr)
45 #define ungetchr(ex) ((ex)->nextchr--)
47 #define error(ex,msg) return(seterror(ex,msg))
63 seterror(register Expr_t* ex, char* msg) argument
65 if (!ex
76 expr(register Expr_t* ex, register int precedence) argument
277 Expr_t ex; local
[all...]
/macosx-10.9.5/crontabs-51/xcodescripts/
H A Dfix_permissions.sh2 set -ex
H A Dinstall_executable.sh2 set -ex
/macosx-10.9.5/xnu-2422.115.4/osfmk/kern/
H A Dassert.h79 #define Assert(file, line, ex) (Assert)("", line, "")
86 #define assert(ex) \
87 ((ex) ? (void)0 : Assert(__FILE__, __LINE__, # ex))
94 #define assert(ex) ((void)0)
95 #define assert_static(ex) do {} while (0)
/macosx-10.9.5/JavaScriptCore-7537.78.1/tests/mozilla/js1_6/Array/
H A Dregress-320887.js50 catch(ex)
52 actual = ex + '';
/macosx-10.9.5/ksh-20/ksh/src/lib/libcoshell/
H A Dcoexport.c37 Coexport_t* ex; local
53 if (!(ex = (Coexport_t*)dtmatch(co->export, name)))
57 if (!(ex = vmnewof(co->vm, 0, Coexport_t, 1, strlen(name))))
59 strcpy(ex->name, name);
60 dtinsert(co->export, ex);
62 if (ex->value)
64 vmfree(co->vm, ex->value);
65 ex->value = 0;
71 ex->value = v;
75 dtdelete(co->export, ex);
[all...]
/macosx-10.9.5/gnudiff-19/diffutils/lib/
H A Dexclude.c99 struct exclude *ex = (struct exclude *) xmalloc (sizeof *ex); local
100 ex->exclude_count = 0;
101 ex->exclude_alloc = (1 << 6); /* This must be a power of 2. */
102 ex->exclude = (struct patopts *) xmalloc (ex->exclude_alloc
103 * sizeof ex->exclude[0]);
104 return ex;
110 free_exclude (struct exclude *ex) argument
112 free (ex
145 excluded_filename(struct exclude const *ex, char const *f) argument
191 add_exclude(struct exclude *ex, char const *pattern, int options) argument
215 add_exclude_file(void (*add_func) PARAMS ((struct exclude *, char const *, int)), struct exclude *ex, char const *filename, int options, char line_end) argument
[all...]
/macosx-10.9.5/ruby-104/ruby/test/psych/
H A Dtest_exception.rb20 ex = assert_raises(Psych::SyntaxError) do
23 assert_nil ex.file
25 ex = assert_raises(Psych::SyntaxError) do
28 assert_equal 'meow', ex.file
32 ex = assert_raises(Psych::SyntaxError) do
35 assert_nil ex.file
36 assert_match '(<unknown>)', ex.message
38 ex = assert_raises(Psych::SyntaxError) do
41 assert_equal 'omg!', ex.file
42 assert_match 'omg!', ex
[all...]
/macosx-10.9.5/curl-78.94.1/xcscripts/
H A Dlink_dylibs.sh2 set -ex
/macosx-10.9.5/ksh-20/ksh/src/cmd/INIT/
H A Dignore.sh24 *x*:[0123456789]*) : bash set -x is broken :; set +ex ;;
H A Dsilent.sh24 *x*:[01234567899]*) : bash set -x is broken :; set +ex ;;
/macosx-10.9.5/libarchive-29/xcodescripts/
H A Dfix_opensource_license.sh3 set -ex
H A Dsimulator_nobins.sh3 set -ex
H A Dcreate_tar_symlinks.sh3 set -ex
/macosx-10.9.5/ruby-104/ruby/lib/rake/
H A Druntest.rb13 rescue Exception => ex
14 $stderr.puts "Error in #{fn}: #{ex.message}"
15 $stderr.puts ex.backtrace
/macosx-10.9.5/gnutar-452/gnutar/lib/
H A Dexclude.c88 free_exclude (struct exclude *ex) argument
90 free (ex->exclude);
91 free (ex);
163 excluded_file_name (struct exclude const *ex, char const *f) argument
165 size_t exclude_count = ex->exclude_count;
172 struct patopts const *exclude = ex->exclude;
195 add_exclude (struct exclude *ex, char const *pattern, int options) argument
199 if (ex->exclude_count == ex->exclude_alloc)
200 ex
214 add_exclude_file(void (*add_func) (struct exclude *, char const *, int), struct exclude *ex, char const *file_name, int options, char line_end) argument
[all...]
/macosx-10.9.5/JavaScriptCore-7537.78.1/tests/mozilla/js1_6/Regress/
H A Dregress-320172.js51 catch(ex)
/macosx-10.9.5/ruby-104/ruby/lib/webrick/httpservlet/
H A Derbhandler.rb59 rescue StandardError => ex
61 rescue Exception => ex
62 @logger.error(ex)
63 raise HTTPStatus::InternalServerError, ex.message
/macosx-10.9.5/shell_cmds-175/find/
H A Dfind.h106 } ex; member in union:_plandata::__anon12574
127 #define e_argv p_un.ex._e_argv
128 #define e_orig p_un.ex._e_orig
129 #define e_len p_un.ex._e_len
130 #define e_pbnum p_un.ex._e_pbnum
131 #define e_ppos p_un.ex._e_ppos
132 #define e_pnummax p_un.ex._e_pnummax
133 #define e_psize p_un.ex._e_psize
134 #define e_pbsize p_un.ex._e_pbsize
135 #define e_psizemax p_un.ex
[all...]
/macosx-10.9.5/CPANInternal-140/Graph/util/
H A Dcover.sh3 set -ex
/macosx-10.9.5/expat-12/xcodescripts/
H A Dlib_symlinks.sh3 set -ex
/macosx-10.9.5/vim-53/xcodescripts/
H A Dinstall-hardlinks.sh5 for X in ex rview rvim vi view vimdiff ; do
/macosx-10.9.5/ruby-104/ruby/test/webrick/
H A Dtest_utils.rb13 ex = Class.new(StandardError)
33 assert_raise(ex){ m.timeout(0.1, ex){ sleep } }
37 assert_raise(ex){
39 m.timeout(1, ex){ i += 1; sleep }
49 m.timeout(10, ex){ i += 1; sleep }

Completed in 307 milliseconds

1234567891011>>