Coverage report: /home/ellis/comp/ext/cl-ppcre/packages.lisp

KindCoveredAll%
expression02 0.0
branch00nil
Key
Not instrumented
Conditionalized out
Executed
Not executed
 
Both branches taken
One branch taken
Neither branch taken
1
 ;;; $Header: /usr/local/cvsrep/cl-ppcre/packages.lisp,v 1.39 2009/09/17 19:17:31 edi Exp $
2
 
3
 ;;; Copyright (c) 2002-2009, Dr. Edmund Weitz. All rights reserved.
4
 
5
 ;;; Redistribution and use in source and binary forms, with or without
6
 ;;; modification, are permitted provided that the following conditions
7
 ;;; are met:
8
 
9
 ;;;   * Redistributions of source code must retain the above copyright
10
 ;;;     notice, this list of conditions and the following disclaimer.
11
 
12
 ;;;   * Redistributions in binary form must reproduce the above
13
 ;;;     copyright notice, this list of conditions and the following
14
 ;;;     disclaimer in the documentation and/or other materials
15
 ;;;     provided with the distribution.
16
 
17
 ;;; THIS SOFTWARE IS PROVIDED BY THE AUTHOR 'AS IS' AND ANY EXPRESSED
18
 ;;; OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
19
 ;;; WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
20
 ;;; ARE DISCLAIMED.  IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY
21
 ;;; DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
22
 ;;; DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE
23
 ;;; GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
24
 ;;; INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,
25
 ;;; WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
26
 ;;; NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
27
 ;;; SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
28
 
29
 (in-package :cl-user)
30
 
31
 (defpackage :cl-ppcre
32
   (:nicknames :ppcre)
33
   (:use :cl)
34
   (:shadow :digit-char-p :defconstant)
35
   (:export :parse-string
36
            :create-scanner
37
            :create-optimized-test-function
38
            :parse-tree-synonym
39
            :define-parse-tree-synonym
40
            :scan
41
            :scan-to-strings
42
            :do-scans
43
            :do-matches
44
            :do-matches-as-strings
45
            :count-matches
46
            :all-matches
47
            :all-matches-as-strings
48
            :split
49
            :regex-replace
50
            :regex-replace-all
51
            :regex-apropos
52
            :regex-apropos-list
53
            :quote-meta-chars
54
            :*regex-char-code-limit*
55
            :*use-bmh-matchers*
56
            :*allow-quoting*
57
            :*allow-named-registers*
58
            :*optimize-char-classes*
59
            :*property-resolver*
60
            :*look-ahead-for-suffix*
61
            :ppcre-error
62
            :ppcre-invocation-error
63
            :ppcre-syntax-error
64
            :ppcre-syntax-error-string
65
            :ppcre-syntax-error-pos
66
            :register-groups-bind
67
            :do-register-groups))