MCPcopy Create free account

hub / github.com/google/re2j / types & classes

Types & classes78 in github.com/google/re2j

ClassApiTestUtils
Some custom asserts and parametric tests. @author afrozm@google.com (Afroz Mohiuddin)
javatests/com/google/re2j/ApiTestUtils.java:24
ClassBenchmarkBacktrack
benchmarks/src/main/java/com/google/re2j/benchmark/BenchmarkBacktrack.java:19
ClassBenchmarkCaseInsensitiveSubmatch
benchmarks/src/main/java/com/google/re2j/benchmark/BenchmarkCaseInsensitiveSubmatch.java:18
ClassBenchmarkCompile
benchmarks/src/main/java/com/google/re2j/benchmark/BenchmarkCompile.java:18
ClassBenchmarkFullMatch
benchmarks/src/main/java/com/google/re2j/benchmark/BenchmarkFullMatch.java:21
ClassBenchmarkSplit
benchmarks/src/main/java/com/google/re2j/benchmark/BenchmarkSplit.java:19
ClassBenchmarkSubMatch
benchmarks/src/main/java/com/google/re2j/benchmark/BenchmarkSubMatch.java:20
ClassBenchmarkUtils
benchmarks/src/main/java/com/google/re2j/benchmark/BenchmarkUtils.java:13
ClassCharClass
A "builder"-style helper class for manipulating character classes represented as an array of pairs of runes [lo, hi], each denoting an inclusive inter
java/com/google/re2j/CharClass.java:18
ClassCharClassTest
javatests/com/google/re2j/CharClassTest.java:17
ClassCharGroup
java/com/google/re2j/CharGroup.java:14
ClassCharacters
Wraps Character methods to be overridden for GWT.
java/com/google/re2j/Characters.java:10
ClassCharacters
GWT supersource for {@link Character#toLowerCase}.
java/com/google/re2j/super/com/google/re2j/Characters.java:10
ClassCodepointRange
unicode/src/main/java/com/google/re2j/UnicodeTablesGenerator.java:401
ClassCompiler
Compiler from {@code Regexp} (RE2 abstract syntax) to {@code RE2} (compiled regular expression). The only entry point is {@link #compileRegexp}.
java/com/google/re2j/Compiler.java:17
InterfaceDeliverFunc
java/com/google/re2j/RE2.java:528
EnumEncoding
java/com/google/re2j/MatcherInput.java:16
ClassEqualsIgnoreCaseTest
javatests/com/google/re2j/UnicodeTest.java:75
ClassExecTest
javatests/com/google/re2j/ExecTest.java:71
ClassFakeGWTEntryPoint
testdata/com/google/re2j/FakeGWTEntryPoint.java:12
ClassFindTest
javatests/com/google/re2j/FindTest.java:25
ClassFrag
A fragment of a compiled regular expression program. @see http://swtch.com/~rsc/regexp/regexp1.html
java/com/google/re2j/Compiler.java:24
ClassGWTTest
This class exercises the GWT compiler against a small RE2J test GWT module. The purpose of the test is to break when GWT-incompatible changes are made
javatests/com/google/re2j/GWTTest.java:29
ClassGoTestUtils
javatests/com/google/re2j/GoTestUtils.java:12
EnumImplementations
benchmarks/src/main/java/com/google/re2j/benchmark/Implementations.java:9
ClassInst
A single instruction in the regular expression virtual machine. @see http://swtch.com/~rsc/regexp/regexp2.html
java/com/google/re2j/Inst.java:17
ClassJdkMatcher
benchmarks/src/main/java/com/google/re2j/benchmark/Implementations.java:44
ClassJdkPattern
benchmarks/src/main/java/com/google/re2j/benchmark/Implementations.java:95
ClassMachine
java/com/google/re2j/Machine.java:18
ClassMachineInput
MachineInput abstracts different representations of the input text supplied to the Machine. It provides one-character lookahead.
java/com/google/re2j/MachineInput.java:16
ClassMatcher
A stateful iterator that interprets a regex {@code Pattern} on a specific input. Its interface mimics the JDK 1.4.2 {@code java.util.regex.Matcher}.
java/com/google/re2j/Matcher.java:41
ClassMatcher
benchmarks/src/main/java/com/google/re2j/benchmark/Implementations.java:13
ClassMatcherInput
Abstract the representations of input text supplied to Matcher.
java/com/google/re2j/MatcherInput.java:14
ClassMatcherTest
Testing the RE2Matcher class. @author afrozm@google.com (Afroz Mohiuddin)
javatests/com/google/re2j/MatcherTest.java:25
EnumOp
java/com/google/re2j/Regexp.java:23
ClassPair
java/com/google/re2j/Parser.java:1710
ClassParser
A parser of regular expression patterns. The only public entry point is {@link #parse(String pattern, int flags)}.
java/com/google/re2j/Parser.java:25
ClassParserTest
@author adonovan@google.com (Alan Donovan)
javatests/com/google/re2j/ParserTest.java:35
ClassPattern
A compiled representation of an RE2 regular expression, mimicking the {@code java.util.regex.Pattern} API. <p> The matching functions take {@code Str
java/com/google/re2j/Pattern.java:30
ClassPattern
benchmarks/src/main/java/com/google/re2j/benchmark/Implementations.java:68
ClassPatternSyntaxException
An exception thrown by the parser if the pattern was invalid. Following {@code java.util.regex.PatternSyntaxException}, this is an unchecked exceptio
java/com/google/re2j/PatternSyntaxException.java:14
ClassPatternTest
This class checks that the behaviour of Pattern and JDK's Pattern are same, and we expect them that way too. @author afrozm@google.com (Afroz Mohiudd
javatests/com/google/re2j/PatternTest.java:35
ClassProg
A Prog is a compiled regular expression program.
java/com/google/re2j/Prog.java:17
ClassProgTest
javatests/com/google/re2j/ProgTest.java:18
ClassQueue
java/com/google/re2j/Machine.java:32
ClassRE2
An RE2 class instance is a compiled representation of an RE2 regular expression, independent of the public Java-like Pattern/Matcher API. <p> This cl
java/com/google/re2j/RE2.java:46
ClassRE2CompileTest
javatests/com/google/re2j/RE2CompileTest.java:16
ClassRE2MatchTest
javatests/com/google/re2j/RE2MatchTest.java:16
ClassRE2QuoteMetaTest
javatests/com/google/re2j/RE2QuoteMetaTest.java:16
ClassRE2ReplaceAllFunctionTest
javatests/com/google/re2j/RE2ReplaceAllFunctionTest.java:16
ClassRE2ReplaceTest
javatests/com/google/re2j/RE2ReplaceTest.java:16
ClassRE2Test
Tests of RE2 API.
javatests/com/google/re2j/RE2Test.java:21
ClassRE2TestNumSubexps
javatests/com/google/re2j/RE2TestNumSubexps.java:16
ClassRe2Matcher
benchmarks/src/main/java/com/google/re2j/benchmark/Implementations.java:21
ClassRe2Pattern
benchmarks/src/main/java/com/google/re2j/benchmark/Implementations.java:130
EnumRegex
benchmarks/src/main/java/com/google/re2j/benchmark/BenchmarkCompile.java:33
ClassRegexp
Regular expression abstract syntax tree. Produced by parser, used by compiler. NB, this corresponds to {@code syntax.regexp} in the Go implementation;
java/com/google/re2j/Regexp.java:21
ClassRegexpHashcodeEqualsTest
javatests/com/google/re2j/RegexpHashcodeEqualsTest.java:16
InterfaceReplaceFunc
java/com/google/re2j/RE2.java:385
InterfaceRunePredicate
javatests/com/google/re2j/ParserTest.java:38
ClassSimplify
java/com/google/re2j/Simplify.java:14
ClassSimplifyTest
javatests/com/google/re2j/SimplifyTest.java:18
ClassStack
java/com/google/re2j/Parser.java:45
ClassStrconv
javatests/com/google/re2j/Strconv.java:15
ClassStrconvTest
javatests/com/google/re2j/StrconvTest.java:18
ClassStringIterator
java/com/google/re2j/Parser.java:706
ClassTest
javatests/com/google/re2j/FindTest.java:35
ClassThread
java/com/google/re2j/Machine.java:21
ClassUNIXBufferedReader
A simple reader of lines from a UNIX character stream, like java.io.BufferedReader, but doesn't consider '\r' a line terminator. @author adonovan@goo
javatests/com/google/re2j/UNIXBufferedReader.java:18
ClassUTF16Input
java/com/google/re2j/MachineInput.java:174
ClassUTF8Input
java/com/google/re2j/MachineInput.java:63
ClassUnicode
Utilities for dealing with Unicode better than Java does. @author adonovan@google.com (Alan Donovan)
java/com/google/re2j/Unicode.java:17
ClassUnicodeTables
java/com/google/re2j/UnicodeTables.java:15
ClassUnicodeTablesGenerator
Generates Unicode data tables for RE2J. The output of this program should be written to {@code UnicodeTables.java}. Code is google-java-formatted befo
unicode/src/main/java/com/google/re2j/UnicodeTablesGenerator.java:44
ClassUnicodeTest
javatests/com/google/re2j/UnicodeTest.java:17
ClassUtf16MatcherInput
java/com/google/re2j/MatcherInput.java:78
ClassUtf8MatcherInput
java/com/google/re2j/MatcherInput.java:50
ClassUtils
Various constants and helper utilities.
java/com/google/re2j/Utils.java:12