Home
last modified time | relevance | path

Searched refs:BinASTTokenReaderContext (Results 1 – 11 of 11) sorted by relevance

/dports/lang/spidermonkey78/firefox-78.9.0/js/src/frontend/
H A DBinASTTokenReaderContext.cpp107 using Chars = BinASTTokenReaderContext::Chars;
126 BinASTTokenReaderContext& reader_;
1026 BinASTTokenReaderContext::BinASTTokenReaderContext(JSContext* cx, in BinASTTokenReaderContext() function in js::frontend::BinASTTokenReaderContext
1037 BinASTTokenReaderContext::~BinASTTokenReaderContext() { in ~BinASTTokenReaderContext()
1136 void BinASTTokenReaderContext::flushBitStream() { in flushBitStream()
1214 BinASTTokenReaderContext& owner) { in getHuffmanLookup()
1332 BinASTTokenReaderContext::raiseInvalidValue() { in raiseInvalidValue()
1338 BinASTTokenReaderContext::raiseNotInPrelude() { in raiseNotInPrelude()
1394 JS::Result<bool> BinASTTokenReaderContext::readBool( in readBool()
1471 JS::Result<Ok> BinASTTokenReaderContext::enterSum( in enterSum()
[all …]
H A DBinASTTokenReaderContext.h1435 BinASTTokenReaderContext(JSContext* cx, ErrorReporter* er,
1443 BinASTTokenReaderContext(JSContext* cx, ErrorReporter* er,
1446 ~BinASTTokenReaderContext();
1482 BinASTTokenReaderContext& owner);
1779 BinASTTokenReaderContext(const BinASTTokenReaderContext&) = delete;
1780 BinASTTokenReaderContext(BinASTTokenReaderContext&&) = delete;
1781 BinASTTokenReaderContext& operator=(BinASTTokenReaderContext&) = delete;
1808 explicit AutoBase(BinASTTokenReaderContext& reader) in AutoBase()
1822 friend BinASTTokenReaderContext; variable
1841 BinASTTokenReaderContext& reader_;
[all …]
H A Dmoz.build96 'BinASTTokenReaderContext.cpp',
H A DBinAST.yaml43 #include "frontend/BinASTTokenReaderContext.h"
79 template class BinASTParser<BinASTTokenReaderContext>;
106 #include "frontend/BinASTTokenReaderContext.h"
219 extern template class BinASTParser<BinASTTokenReaderContext>;
1327 if (mozilla::IsSame<Tok, BinASTTokenReaderContext>::value) {
1328 // Hack: optimized `readChars` is not implemented for `BinASTTokenReaderContext`.
H A DBinASTParserPerTokenizer.h365 extern template class BinASTParserPerTokenizer<BinASTTokenReaderContext>;
H A DBytecodeCompiler.cpp778 return CompileGlobalBinASTScriptImpl<BinASTTokenReaderContext>( in CompileGlobalBinASTScript()
1045 return CompileLazyBinASTFunctionImpl<BinASTTokenReaderContext>(cx, lazy, buf, in CompileLazyBinASTFunction()
H A DBinASTParserPerTokenizer.cpp828 template class BinASTParserPerTokenizer<BinASTTokenReaderContext>;
H A DBinASTParser.h487 extern template class BinASTParser<BinASTTokenReaderContext>;
H A DBinASTParser.cpp3555 if constexpr (std::is_same_v<Tok, BinASTTokenReaderContext>) { in parseInterfaceLiteralRegExpExpression()
5073 template class BinASTParser<BinASTTokenReaderContext>;
/dports/lang/spidermonkey78/firefox-78.9.0/js/src/jsapi-tests/
H A DtestBinASTReader.cpp547 runTestFromPath<js::frontend::BinASTTokenReaderContext>(cx, path.get());
/dports/lang/spidermonkey78/firefox-78.9.0/js/src/shell/
H A Djs.cpp5298 : ParseBinASTData<frontend::BinASTTokenReaderContext>; in BinParse()