jdk.nashorn.internal.runtime.regexp.joni.ast.CClassNode.CCStateArg Java Examples

The following examples show how to use jdk.nashorn.internal.runtime.regexp.joni.ast.CClassNode.CCStateArg. You can vote up the ones you like or vote down the ones you don't like, and go to the original project or source file by following the links above each example. You may check out the related API usage on the sidebar.
Example #1
Source File: Parser.java    From openjdk-8 with GNU General Public License v2.0 4 votes vote down vote up
private void parseCharClassValEntry(CClassNode cc, CCStateArg arg) {
    arg.inType = arg.v <= 0xff ? CCVALTYPE.SB : CCVALTYPE.CODE_POINT;
    parseCharClassValEntry2(cc, arg); // val_entry2:
}
 
Example #2
Source File: Parser.java    From hottub with GNU General Public License v2.0 4 votes vote down vote up
private void parseCharClassRangeEndVal(final CClassNode cc, final CCStateArg arg) {
    arg.v = '-';
    arg.vIsRaw = false;
    parseCharClassValEntry(cc, arg); // goto val_entry
}
 
Example #3
Source File: Parser.java    From hottub with GNU General Public License v2.0 4 votes vote down vote up
private void parseCharClassValEntry(final CClassNode cc, final CCStateArg arg) {
    arg.inType = arg.v <= 0xff ? CCVALTYPE.SB : CCVALTYPE.CODE_POINT;
    parseCharClassValEntry2(cc, arg); // val_entry2:
}
 
Example #4
Source File: Parser.java    From hottub with GNU General Public License v2.0 4 votes vote down vote up
private void parseCharClassValEntry2(final CClassNode cc, final CCStateArg arg) {
    cc.nextStateValue(arg, env);
}
 
Example #5
Source File: Parser.java    From openjdk-8-source with GNU General Public License v2.0 4 votes vote down vote up
private void parseCharClassSbChar(CClassNode cc, CCStateArg arg) {
    arg.inType = CCVALTYPE.SB;
    arg.v = token.getC();
    arg.vIsRaw = false;
    parseCharClassValEntry2(cc, arg); // goto val_entry2
}
 
Example #6
Source File: Parser.java    From openjdk-8-source with GNU General Public License v2.0 4 votes vote down vote up
private void parseCharClassRangeEndVal(CClassNode cc, CCStateArg arg) {
    arg.v = '-';
    arg.vIsRaw = false;
    parseCharClassValEntry(cc, arg); // goto val_entry
}
 
Example #7
Source File: Parser.java    From openjdk-8-source with GNU General Public License v2.0 4 votes vote down vote up
private void parseCharClassValEntry(CClassNode cc, CCStateArg arg) {
    arg.inType = arg.v <= 0xff ? CCVALTYPE.SB : CCVALTYPE.CODE_POINT;
    parseCharClassValEntry2(cc, arg); // val_entry2:
}
 
Example #8
Source File: Parser.java    From openjdk-8-source with GNU General Public License v2.0 4 votes vote down vote up
private void parseCharClassValEntry2(CClassNode cc, CCStateArg arg) {
    cc.nextStateValue(arg, env);
}
 
Example #9
Source File: Parser.java    From openjdk-8 with GNU General Public License v2.0 4 votes vote down vote up
private void parseCharClassSbChar(CClassNode cc, CCStateArg arg) {
    arg.inType = CCVALTYPE.SB;
    arg.v = token.getC();
    arg.vIsRaw = false;
    parseCharClassValEntry2(cc, arg); // goto val_entry2
}
 
Example #10
Source File: Parser.java    From openjdk-8 with GNU General Public License v2.0 4 votes vote down vote up
private void parseCharClassRangeEndVal(CClassNode cc, CCStateArg arg) {
    arg.v = '-';
    arg.vIsRaw = false;
    parseCharClassValEntry(cc, arg); // goto val_entry
}
 
Example #11
Source File: Parser.java    From hottub with GNU General Public License v2.0 4 votes vote down vote up
private void parseCharClassSbChar(final CClassNode cc, final CCStateArg arg) {
    arg.inType = CCVALTYPE.SB;
    arg.v = token.getC();
    arg.vIsRaw = false;
    parseCharClassValEntry2(cc, arg); // goto val_entry2
}
 
Example #12
Source File: Parser.java    From openjdk-8 with GNU General Public License v2.0 4 votes vote down vote up
private void parseCharClassValEntry2(CClassNode cc, CCStateArg arg) {
    cc.nextStateValue(arg, env);
}
 
Example #13
Source File: Parser.java    From jdk8u_nashorn with GNU General Public License v2.0 4 votes vote down vote up
private void parseCharClassSbChar(final CClassNode cc, final CCStateArg arg) {
    arg.inType = CCVALTYPE.SB;
    arg.v = token.getC();
    arg.vIsRaw = false;
    parseCharClassValEntry2(cc, arg); // goto val_entry2
}
 
Example #14
Source File: Parser.java    From jdk8u_nashorn with GNU General Public License v2.0 4 votes vote down vote up
private void parseCharClassRangeEndVal(final CClassNode cc, final CCStateArg arg) {
    arg.v = '-';
    arg.vIsRaw = false;
    parseCharClassValEntry(cc, arg); // goto val_entry
}
 
Example #15
Source File: Parser.java    From jdk8u_nashorn with GNU General Public License v2.0 4 votes vote down vote up
private void parseCharClassValEntry(final CClassNode cc, final CCStateArg arg) {
    arg.inType = arg.v <= 0xff ? CCVALTYPE.SB : CCVALTYPE.CODE_POINT;
    parseCharClassValEntry2(cc, arg); // val_entry2:
}
 
Example #16
Source File: Parser.java    From jdk8u_nashorn with GNU General Public License v2.0 4 votes vote down vote up
private void parseCharClassValEntry2(final CClassNode cc, final CCStateArg arg) {
    cc.nextStateValue(arg, env);
}
 
Example #17
Source File: Parser.java    From nashorn with GNU General Public License v2.0 4 votes vote down vote up
private void parseCharClassSbChar(CClassNode cc, CCStateArg arg) {
    arg.inType = CCVALTYPE.SB;
    arg.v = token.getC();
    arg.vIsRaw = false;
    parseCharClassValEntry2(cc, arg); // goto val_entry2
}
 
Example #18
Source File: Parser.java    From nashorn with GNU General Public License v2.0 4 votes vote down vote up
private void parseCharClassRangeEndVal(CClassNode cc, CCStateArg arg) {
    arg.v = '-';
    arg.vIsRaw = false;
    parseCharClassValEntry(cc, arg); // goto val_entry
}
 
Example #19
Source File: Parser.java    From nashorn with GNU General Public License v2.0 4 votes vote down vote up
private void parseCharClassValEntry(CClassNode cc, CCStateArg arg) {
    arg.inType = arg.v <= 0xff ? CCVALTYPE.SB : CCVALTYPE.CODE_POINT;
    parseCharClassValEntry2(cc, arg); // val_entry2:
}
 
Example #20
Source File: Parser.java    From nashorn with GNU General Public License v2.0 4 votes vote down vote up
private void parseCharClassValEntry2(CClassNode cc, CCStateArg arg) {
    cc.nextStateValue(arg, env);
}
 
Example #21
Source File: Parser.java    From openjdk-jdk8u with GNU General Public License v2.0 4 votes vote down vote up
private void parseCharClassValEntry(final CClassNode cc, final CCStateArg arg) {
    arg.inType = arg.v <= 0xff ? CCVALTYPE.SB : CCVALTYPE.CODE_POINT;
    parseCharClassValEntry2(cc, arg); // val_entry2:
}
 
Example #22
Source File: Parser.java    From TencentKona-8 with GNU General Public License v2.0 4 votes vote down vote up
private void parseCharClassRangeEndVal(final CClassNode cc, final CCStateArg arg) {
    arg.v = '-';
    arg.vIsRaw = false;
    parseCharClassValEntry(cc, arg); // goto val_entry
}
 
Example #23
Source File: Parser.java    From TencentKona-8 with GNU General Public License v2.0 4 votes vote down vote up
private void parseCharClassValEntry(final CClassNode cc, final CCStateArg arg) {
    arg.inType = arg.v <= 0xff ? CCVALTYPE.SB : CCVALTYPE.CODE_POINT;
    parseCharClassValEntry2(cc, arg); // val_entry2:
}
 
Example #24
Source File: Parser.java    From TencentKona-8 with GNU General Public License v2.0 4 votes vote down vote up
private void parseCharClassValEntry2(final CClassNode cc, final CCStateArg arg) {
    cc.nextStateValue(arg, env);
}
 
Example #25
Source File: Parser.java    From jdk8u60 with GNU General Public License v2.0 4 votes vote down vote up
private void parseCharClassSbChar(final CClassNode cc, final CCStateArg arg) {
    arg.inType = CCVALTYPE.SB;
    arg.v = token.getC();
    arg.vIsRaw = false;
    parseCharClassValEntry2(cc, arg); // goto val_entry2
}
 
Example #26
Source File: Parser.java    From jdk8u60 with GNU General Public License v2.0 4 votes vote down vote up
private void parseCharClassRangeEndVal(final CClassNode cc, final CCStateArg arg) {
    arg.v = '-';
    arg.vIsRaw = false;
    parseCharClassValEntry(cc, arg); // goto val_entry
}
 
Example #27
Source File: Parser.java    From jdk8u60 with GNU General Public License v2.0 4 votes vote down vote up
private void parseCharClassValEntry(final CClassNode cc, final CCStateArg arg) {
    arg.inType = arg.v <= 0xff ? CCVALTYPE.SB : CCVALTYPE.CODE_POINT;
    parseCharClassValEntry2(cc, arg); // val_entry2:
}
 
Example #28
Source File: Parser.java    From jdk8u60 with GNU General Public License v2.0 4 votes vote down vote up
private void parseCharClassValEntry2(final CClassNode cc, final CCStateArg arg) {
    cc.nextStateValue(arg, env);
}
 
Example #29
Source File: Parser.java    From openjdk-jdk8u with GNU General Public License v2.0 4 votes vote down vote up
private void parseCharClassSbChar(final CClassNode cc, final CCStateArg arg) {
    arg.inType = CCVALTYPE.SB;
    arg.v = token.getC();
    arg.vIsRaw = false;
    parseCharClassValEntry2(cc, arg); // goto val_entry2
}
 
Example #30
Source File: Parser.java    From openjdk-jdk8u with GNU General Public License v2.0 4 votes vote down vote up
private void parseCharClassRangeEndVal(final CClassNode cc, final CCStateArg arg) {
    arg.v = '-';
    arg.vIsRaw = false;
    parseCharClassValEntry(cc, arg); // goto val_entry
}