Home
last modified time | relevance | path

Searched refs:floatLiteral (Results 1 – 10 of 10) sorted by relevance

/external/skia/tests/sksl/errors/
DPrivateTypes.glsl27 error: 8: name '$floatLiteral' is reserved
28 void ctor_literal_private() { $floatLiteral(0); }
30 error: 8: type '$floatLiteral' is generic
31 void ctor_literal_private() { $floatLiteral(0); }
/external/skia/resources/sksl/errors/
DPrivateTypes.rts8 void ctor_literal_private() { $floatLiteral(0); }
19 name '$floatLiteral' is reserved
20 type '$floatLiteral' is generic
/external/clang/unittests/AST/
DASTImporterTest.cpp167 floatLiteral( in TEST()
176 floatLiteral( in TEST()
383 has(floatLiteral( in TEST()
390 has(floatLiteral( in TEST()
397 has(floatLiteral( in TEST()
447 has(floatLiteral(equals(1.0))), in TEST()
453 has(floatLiteral(equals(2.0))), in TEST()
454 has(floatLiteral(equals(1.0))))) in TEST()
/external/clang/unittests/ASTMatchers/
DASTMatchersNodeTest.cpp667 StatementMatcher HasFloatLiteral = floatLiteral(); in TEST()
673 EXPECT_TRUE(matches("double i = 5.0;", floatLiteral(equals(5.0)))); in TEST()
674 EXPECT_TRUE(matches("double i = 5.0;", floatLiteral(equals(5.0f)))); in TEST()
676 matches("double i = 5.0;", floatLiteral(equals(llvm::APFloat(5.0))))); in TEST()
679 EXPECT_TRUE(notMatches("double i = 5.0;", floatLiteral(equals(6.0)))); in TEST()
680 EXPECT_TRUE(notMatches("double i = 5.0;", floatLiteral(equals(6.0f)))); in TEST()
682 notMatches("double i = 5.0;", floatLiteral(equals(llvm::APFloat(6.0))))); in TEST()
711 has(floatLiteral(equals(1.0))), in TEST()
717 has(floatLiteral(equals(2.0))), in TEST()
718 has(floatLiteral(equals(1.0))))) in TEST()
[all …]
/external/turbine/java/com/google/turbine/parse/
DStreamLexer.java320 return floatLiteral(); in next()
373 return floatLiteral(); in next()
686 return floatLiteral(); in decimalLiteral()
689 return floatLiteral(); in decimalLiteral()
720 private Token floatLiteral() { in floatLiteral() method in StreamLexer
/external/turbine/javatests/com/google/turbine/parse/
DLexerTest.java297 public void floatLiteral() { in floatLiteral() method in LexerTest
/external/skia/src/sksl/
DSkSLParser.h277 bool floatLiteral(SKSL_FLOAT* dest);
DSkSLParser.cpp2153 if (!this->floatLiteral(&f)) { in term()
2202 bool Parser::floatLiteral(SKSL_FLOAT* dest) { in floatLiteral() function in SkSL::Parser
/external/clang/lib/ASTMatchers/Dynamic/
DRegistry.cpp181 REGISTER_MATCHER(floatLiteral); in RegistryMaps()
/external/clang/include/clang/ASTMatchers/
DASTMatchers.h1693 FloatingLiteral> floatLiteral; variable