Home
last modified time | relevance | path

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

/external/chromium_org/third_party/WebKit/Source/devtools/front_end/cm/
Dpython.js92 var floatLiteral = false;
94 if (stream.match(/^\d*\.\d+(e[\+\-]?\d+)?/i)) { floatLiteral = true; }
95 if (stream.match(/^\d+\.\d*/)) { floatLiteral = true; }
96 if (stream.match(/^\.\d+/)) { floatLiteral = true; }
97 if (floatLiteral) {
Dcoffeescript.js82 var floatLiteral = false;
85 floatLiteral = true;
88 floatLiteral = true;
91 floatLiteral = true;
94 if (floatLiteral) {
/external/clang/lib/ASTMatchers/Dynamic/
DRegistry.cpp154 REGISTER_MATCHER(floatLiteral); in RegistryMaps()
/external/clang/include/clang/ASTMatchers/
DASTMatchers.h1183 FloatingLiteral> floatLiteral; variable
/external/clang/unittests/ASTMatchers/
DASTMatchersTest.cpp1966 StatementMatcher HasFloatLiteral = floatLiteral(); in TEST()