HomeSort by relevance Sort by last modified time
    Searched defs:Preprocessor (Results 1 - 16 of 16) sorted by null

  /external/chromium-trace/catapult/third_party/vinn/third_party/parse5/lib/tokenization/
preprocessor.js 25 //Preprocessor
28 var Preprocessor = module.exports = function (html) {
39 Preprocessor.prototype.write = function (html) {
53 Preprocessor.prototype.advanceAndPeekCodePoint = function () {
82 Preprocessor.prototype._processHighRangeCodePoint = function (cp) {
103 Preprocessor.prototype._addGap = function () {
108 Preprocessor.prototype.retreat = function () {
tokenizer.js 3 var Preprocessor = require('./preprocessor'),
148 this.preprocessor = new Preprocessor(html);
215 return this.preprocessor.advanceAndPeekCodePoint();
220 this.preprocessor.retreat();
266 var cp = this.preprocessor.advanceAndPeekCodePoint();
267 this.preprocessor.retreat();
    [all...]
  /external/markdown/markdown/
preprocessors.py 21 class Preprocessor (Processor):
25 Each preprocessor implements a "run" method that takes a pointer to a
29 Preprocessors must extend markdown.Preprocessor.
34 Each subclass of Preprocessor should override the `run` method, which
76 class HtmlBlockPreprocessor(Preprocessor):
191 class ReferencePreprocessor(Preprocessor):
  /external/clang/lib/Lex/
Preprocessor.cpp 1 //===--- Preprocess.cpp - C Language Family Preprocessor Implementation ---===//
10 // This file implements the Preprocessor interface.
17 // -fworking-directory - #line's with preprocessor's working dir.
28 #include "clang/Lex/Preprocessor.h"
59 Preprocessor::Preprocessor(IntrusiveRefCntPtr<PreprocessorOptions> PPOpts,
142 Preprocessor::~Preprocessor() {
173 void Preprocessor::Initialize(const TargetInfo &Target,
188 void Preprocessor::InitializeForModelFile()
    [all...]
  /external/clang/lib/Driver/
Tools.h 163 class LLVM_LIBRARY_VISIBILITY Preprocessor : public Common {
165 Preprocessor(const ToolChain &TC)
166 : Common("gcc::Preprocessor", "gcc preprocessor", TC) {}
    [all...]
ToolChains.h 233 mutable std::unique_ptr<tools::gcc::Preprocessor> Preprocess;
665 mutable std::unique_ptr<tools::gcc::Preprocessor> Preprocessor;
    [all...]