Searched refs:re (Results 51 - 75 of 133) sorted by relevance

123456

/barrelfish-2018-10-04/lib/pcre/
H A Dpcre_compile.c441 are passed to the outside world. Do not ever re-use any error number, because
5738 repeated ones could be re-implemented independently so as not to need this,
9015 REAL_PCRE *re; local
9363 re = (REAL_PCRE *)(PUBL(malloc))(size);
9364 if (re == NULL)
9376 re->magic_number = MAGIC_NUMBER;
9377 re->size = (int)size;
9378 re->options = cd->external_options;
9379 re->flags = cd->external_flags;
9380 re
[all...]
H A Dpcre_get.c274 const REAL_PCRE *re = (const REAL_PCRE *)code; local
286 if ((re->options & PCRE_DUPNAMES) == 0 && (re->flags & PCRE_JCHANGED) == 0)
290 if ((re->options & PCRE_DUPNAMES) == 0 && (re->flags & PCRE_JCHANGED) == 0)
294 if ((re->options & PCRE_DUPNAMES) == 0 && (re->flags & PCRE_JCHANGED) == 0)
H A Dpcre_printint.c312 REAL_PCRE *re = (REAL_PCRE *)external_re; local
316 unsigned int options = re->options;
317 int offset = re->name_table_offset;
318 int count = re->name_count;
319 int size = re->name_entry_size;
321 if (re->magic_number != MAGIC_NUMBER)
332 code = codestart = (pcre_uchar *)re + offset + count * size;
433 pcre_uchar *entry = (pcre_uchar *)re + offset + (GET2(code, 1) * size) +
451 pcre_uchar *entry = (pcre_uchar *)re + offset + (GET2(code, 1) * size) +
617 pcre_uchar *entry = (pcre_uchar *)re
[all...]
H A Dpcre_exec.c323 #define RMATCH(ra,rb,rc,rd,re,rw) \
326 rrc = match(ra,rb,mstart,rc,rd,re,rdepth+1); \
335 #define RMATCH(ra,rb,rc,rd,re,rw) \
336 rrc = match(ra,rb,mstart,rc,rd,re,rdepth+1)
349 #define RMATCH(ra,rb,rc,rd,re,rw)\
364 newframe->Xeptrb = re;\
813 not a matching mark, we have to re-run the match, ignoring the SKIP_ARG
816 SKIP_ARG gets to top level, the match is re-run with md->ignore_skip_arg
1741 re-instated afterwards. We don't know how many are started and not yet
6325 /* This function applies a compiled re t
6386 const REAL_PCRE *re = (const REAL_PCRE *)argument_re; local
[all...]
H A Dpcre_dfa_exec.c3153 /* This external function applies a compiled re to a subject string using a DFA
3192 REAL_PCRE *re = (REAL_PCRE *)argument_re; local
3212 if (re == NULL || subject == NULL || workspace == NULL ||
3224 if (re->magic_number != MAGIC_NUMBER)
3225 return re->magic_number == REVERSED_MAGIC_NUMBER?
3227 if ((re->flags & PCRE_MODE) == 0) return PCRE_ERROR_BADMODE;
3241 md->tables = re->tables;
3266 utf = (re->options & PCRE_UTF8) != 0;
3272 (re->options & PCRE_ANCHORED) != 0;
3277 re
[all...]
/barrelfish-2018-10-04/usr/tests/octopus/
H A Dd2getset.c27 #define R(var, re) static char var##_[] = STR(re);\
145 R(re, "_ { pattern3: r'^(((((((0?[13578])|(1[02]))[\.\-/]?((0?[1-9])|([12]\d)|(3[01])))|(((0?[469])|(11))[\.\-/]?((0?[1-9])|([12]\d)|(30)))|((0?2)[\.\-/]?((0?[1-9])|(1\d)|(2[0-8]))))[\.\-/]?(((19)|(20))?([\d][\d]))))|((0?2)[\.\-/]?(29)[\.\-/]?(((19)|(20))?(([02468][048])|([13579][26])))))$' }");
146 err = oct_get(&data, re);
/barrelfish-2018-10-04/tools/harness/tests/
H A DTimerTest.py10 import re namespace
H A Ddevif_test.py10 import re, datetime namespace
94 m = re.match(r'# IP Addr (\d+\.\d+\.\d+\.\d+)', line)
197 m = re.match(r'# IP Addr (\d+\.\d+\.\d+\.\d+)', line)
201 m1 = re.match(r'Testing receiving UDP packets', line)
H A Dirqtest.py10 import re namespace
H A Dxeonphi.py13 import re, os, sys, debug, shutil, datetime namespace
126 m = re.search("Xeon Phi operational: xeon_phi." + str(self.nphi - 1) + ".ready", line)
H A Dgreenmarl.py10 import re namespace
H A Dechoserver.py10 import re, os, subprocess, select, time, datetime namespace
45 m = re.match(r'Interface up! IP address (\d+\.\d+\.\d+\.\d+)', line)
143 m = re.match('(\d+),(\d+),(\d+),(\d+),(\d+),(\d+),(\d+),'
/barrelfish-2018-10-04/usr/eclipseclp/Visualisation/src/com/parctechnologies/eclipse/visualisation/
H A DVisClient.java641 } catch(RuntimeException re) {
642 recover_re(re);
703 } catch(RuntimeException re) {
704 recover_re(re);
814 protected void recover_re(RuntimeException re) argument
817 re.printStackTrace(System.err);
819 viewerManager.errorDialog("The following RuntimeException was raised: \n\n"+re+
/barrelfish-2018-10-04/tools/harness/
H A Dbuilds.py10 import os, errno, re namespace
98 if any([line.startswith(k) and re.match(' +=', line[len(k):])
H A Dharness.py15 import re namespace
21 TERM_FILTER = re.compile("\[\d\d?m")
/barrelfish-2018-10-04/usr/eclipseclp/Opium/
H A Dopium.pl144 * re-definition of Sepia events
168 * re-definition of opium_answer/2
257 % set_error_handler(150, true/0), % no opium_init on re-start
/barrelfish-2018-10-04/tools/tracing/
H A Danalyze_traces.py5 import re namespace
256 splitter = re.compile(r'[\ ]')
/barrelfish-2018-10-04/usr/eclipseclp/lib_tcl/
H A Dtkinspect.tcl263 foreach {yfollow le re te be} [$h yfollowstate] {
266 set tkinspectvalues(ysre,$iw) [expr round($re*100)]
300 grid [scale $xf.re -label "% from right edge" -from 0 -to 50 -length 200 \
328 set re [expr $tkinspectvalues(ysre,$iw).0/100]
331 $h yfollowitem $le $re $te $be
/barrelfish-2018-10-04/lib/tommath/
H A Dbn.tex170 which further define symbols. All of the symbols (technically they're macros $\ldots$) represent a given C source
373 This allows operands to be re-used which can make programming simpler.
433 /* We're done with it. */
473 /* We're done with them. */
507 /* We're done with them. */
575 /* We're done with it for now. */
585 /* we're done with it. */
632 /* we're done with it. */
674 /* we're done with it. */
725 /* we're don
[all...]
/barrelfish-2018-10-04/usr/eclipseclp/documents/userman/
H A Dexthsusp.tex296 are re-executed.
603 re-suspending waiting for \about{Y}'s instantiation.
630 we re-suspend on one of the remaining variables. The following predicate
646 \predspec{eval_lazy/2} goal gets woken and re-suspended possibly many times.
742 suspend(report(X), 1, X->constrained) % (re)suspend
895 to succeed or re-suspend.
1241 suspend(report(X), 1, X->constrained) % re-suspend
1249 When a change occurs, it gets woken, does something, and re-suspends.
1250 The repeated re-suspending has two disadvantages: it can be inefficient,
1252 easily referred to, because on every re
[all...]
/barrelfish-2018-10-04/usr/eclipseclp/Kernel/lib/
H A Dqueues.pl18 % when you use or re-distribute any of these files.
/barrelfish-2018-10-04/usr/eclipseclp/documents/internal/kernel/
H A Ddebugger.tex130 % re-enabling within (eg for the debug handler itself).
143 % (re)enables tracing like call/1. However it should not
/barrelfish-2018-10-04/usr/eclipseclp/icparc_solvers/
H A DMakefile.in554 echo === Please re-run configure on this host ; \
562 echo === Please re-run configure on this host ; \
/barrelfish-2018-10-04/usr/eclipseclp/documents/tutorial/
H A Dconstimpl.tex138 \item at what time during search do we want to (re)establish this consistency?
588 This only works if ge/2 has already been (re-)suspended at that time.
614 implicitly re-suspends, it now has to be explicitly killed when
628 true % implicitly re-suspend
/barrelfish-2018-10-04/lib/openssl-1.0.0d/crypto/des/
H A Ddes-lib.com14 $! It was re-written to try to determine which "C" compiler to try to use

Completed in 227 milliseconds

123456