Home
last modified time | relevance | path

Searched refs:DoubleLiteral (Results 1 – 25 of 63) sorted by relevance

123

/dports/java/phpeclipse/plugins/net.sourceforge.phpeclipse/src/net/sourceforge/phpdt/internal/compiler/ast/
H A DDoubleLiteral.java18 public class DoubleLiteral extends NumberLiteral { class
21 public DoubleLiteral(char[] token, int s, int e) { in DoubleLiteral() method in DoubleLiteral
/dports/java/eclipse/eclipse.platform.releng.aggregator-R4_16/eclipse.jdt.core/org.eclipse.jdt.core.tests.model/workspace/Compiler/src/org/eclipse/jdt/internal/compiler/ast/
H A DDoubleLiteral.java19 public class DoubleLiteral extends NumberLiteral { class
21 public DoubleLiteral(char[] token, int s, int e) { in DoubleLiteral() method in DoubleLiteral
/dports/java/eclipse-ecj/eclipse-ecj-4.4.2_1/org/eclipse/jdt/internal/compiler/ast/
H A DDoubleLiteral.java20 public class DoubleLiteral extends NumberLiteral { class
24 public DoubleLiteral(char[] token, int s, int e) { in DoubleLiteral() method in DoubleLiteral
/dports/java/eclipse/eclipse.platform.releng.aggregator-R4_16/eclipse.jdt.core/org.eclipse.jdt.core/compiler/org/eclipse/jdt/internal/compiler/ast/
H A DDoubleLiteral.java23 public class DoubleLiteral extends NumberLiteral { class
27 public DoubleLiteral(char[] token, int s, int e) { in DoubleLiteral() method in DoubleLiteral
/dports/lang/mono-basic/mono-basic-4.7/vbnc/vbnc/tests/Mono/
H A DDoubleLiteral.vb2 Module DoubleLiteral
H A DDoubleLiteralB.vb3 Module DoubleLiteral
H A DDoubleLiteralA.vb2 Module DoubleLiteral
/dports/lang/mono-basic/mono-basic-4.7/vbnc/vbnc/source/Enums/
H A DTokenType.vb27 DoubleLiteral
/dports/lang/mono/mono-5.10.1.57/mcs/mcs/
H A Dliteral.cs249 public class DoubleLiteral : DoubleConstant, ILiteralConstant class
251 public DoubleLiteral (BuiltinTypes types, double d, Location loc) in DoubleLiteral() method in Mono.CSharp.DoubleLiteral
H A Dcs-tokenizer.cs1748 …return new DoubleLiteral (context.BuiltinTypes, double.Parse (s, styles, csharp_format_info), loc); in adjust_real()
1751 return new DoubleLiteral (context.BuiltinTypes, 0, loc); in adjust_real()
/dports/lang/mono-basic/mono-basic-4.7/vbnc/vbnc/source/Tokens/
H A DToken.vb106 result.m_TokenType = TokenType.DoubleLiteral
206 Case TokenType.SingleLiteral, TokenType.DoubleLiteral
266 …teLiteral, TokenType.CharLiteral, TokenType.DecimalLiteral, TokenType.DoubleLiteral, TokenType.Int…
/dports/java/jflex/jflex-1.8.1/examples/cup-java/src/main/jflex/
H A Djava.flex99 DoubleLiteral = ({FLit1}|{FLit2}|{FLit3}) {Exponent}?
246 {DoubleLiteral} { return symbol(FLOATING_POINT_LITERAL, new Double(yytext())); }
247 …{DoubleLiteral}[dD] { return symbol(FLOATING_POINT_LITERAL, new Double(yytext().substri…
/dports/java/phpeclipse/plugins/net.sourceforge.phpeclipse/src/net/sourceforge/phpdt/internal/compiler/
H A DASTVisitor.java36 import net.sourceforge.phpdt.internal.compiler.ast.DoubleLiteral;
231 public void endVisit(DoubleLiteral doubleLiteral, BlockScope scope) { in endVisit()
573 public boolean visit(DoubleLiteral doubleLiteral, BlockScope scope) { in visit()
H A DIAbstractSyntaxTreeVisitor.java38 import net.sourceforge.phpdt.internal.compiler.ast.DoubleLiteral;
153 void endVisit(DoubleLiteral doubleLiteral, BlockScope scope); in endVisit()
313 boolean visit(DoubleLiteral doubleLiteral, BlockScope scope); in visit()
H A DAbstractSyntaxTreeVisitorAdapter.java38 import net.sourceforge.phpdt.internal.compiler.ast.DoubleLiteral;
186 public void endVisit(DoubleLiteral doubleLiteral, BlockScope scope) { in endVisit()
451 public boolean visit(DoubleLiteral doubleLiteral, BlockScope scope) { in visit()
/dports/java/eclipse/eclipse.platform.releng.aggregator-R4_16/eclipse.jdt.core/org.eclipse.jdt.core.tests.model/workspace/Compiler/src/org/eclipse/jdt/internal/compiler/
H A DASTVisitor.java137 public void endVisit(DoubleLiteral doubleLiteral, BlockScope scope) { in endVisit()
584 public boolean visit(DoubleLiteral doubleLiteral, BlockScope scope) { in visit()
/dports/java/eclipse-ecj/eclipse-ecj-4.4.2_1/org/eclipse/jdt/internal/compiler/
H A DASTVisitor.java130 public void endVisit(DoubleLiteral doubleLiteral, BlockScope scope) { in endVisit()
611 public boolean visit(DoubleLiteral doubleLiteral, BlockScope scope) { in visit()
/dports/java/eclipse/eclipse.platform.releng.aggregator-R4_16/eclipse.jdt.core/org.eclipse.jdt.core/compiler/org/eclipse/jdt/internal/compiler/
H A DASTVisitor.java136 public void endVisit(DoubleLiteral doubleLiteral, BlockScope scope) { in endVisit()
632 public boolean visit(DoubleLiteral doubleLiteral, BlockScope scope) { in visit()
/dports/devel/universal-ctags/ctags-p5.9.20211128.0/misc/packcc/benchmark/grammars/
H A Dkotlin.peg389 RealLiteral <- FloatLiteral / DoubleLiteral
390 FloatLiteral <- DoubleLiteral [fF] / DecDigits [fF]
391 DoubleLiteral <- DecDigits? '.' DecDigits DoubleExponent? / DecDigits DoubleExponent
/dports/textproc/zorba/zorba-2.7.0/src/compiler/parser/
H A Dxquery_scanner.l313 DoubleLiteral (({Dot}[0-9]+)|([0-9]+({Dot}[0-9]*)?))([eE][+-]?[0-9]+)?
778 {DoubleLiteral} {
/dports/devel/antlr/antlr-2.7.7/examples/csharp/csharp_v1/
H A Dcsharp.flex160 DoubleLiteral = ({Real1}|{Real2}|{Real3}) {ExponentPart}? [Dd]?
336 {DoubleLiteral} { return MakeToken(symID.DOUBLE_LITERAL, yytext());}
/dports/devel/universal-ctags/ctags-p5.9.20211128.0/peg/
H A Dkotlin.peg425 RealLiteral <- FloatLiteral / DoubleLiteral
426 FloatLiteral <- DoubleLiteral [fF] / DecDigits [fF]
427 DoubleLiteral <- DecDigits? '.' DecDigits DoubleExponent? / DecDigits DoubleExponent
/dports/textproc/zorba/zorba-2.7.0/test/rbkt/Queries/zorba/no-copy/
H A Dsimple_parser.xqlib1623 "DoubleLiteral",
/dports/lang/mono/mono-5.10.1.57/mcs/class/referencesource/System.Workflow.Activities/Rules/
H A DLiteral.cs290 return new DoubleLiteral((double)literalValue); in MakeDouble()
4422 internal class DoubleLiteral : Literal class
4431 internal DoubleLiteral(double literalValue) in DoubleLiteral() method in System.Workflow.Activities.Rules.DoubleLiteral
/dports/java/eclipse/eclipse.platform.releng.aggregator-R4_16/eclipse.jdt.core/org.eclipse.jdt.core/grammar/
H A Djava.g56 DoubleLiteral
229 Literal -> DoubleLiteral

123