Hash :
f81ce4a3
Author :
Date :
2017-04-24T10:49:17
Refactoring: replace NULL by nullptr for pointers (3rd CL). This CL mainly handles passing/returning NULL to/from a function. BUG=angleproject:2001 Change-Id: I34802f792e710e3d7ff697cbe4701dc1bf5ab009 Reviewed-on: https://chromium-review.googlesource.com/485060 Commit-Queue: Jamie Madill <jmadill@chromium.org> Reviewed-by: Jamie Madill <jmadill@chromium.org>
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66
//
// Copyright (c) 2012 The ANGLE Project Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
//
#include "PreprocessorTest.h"
#include "compiler/preprocessor/Token.h"
void SimplePreprocessorTest::preprocess(const char *input,
std::stringstream *output,
pp::Preprocessor *preprocessor)
{
ASSERT_TRUE(preprocessor->init(1, &input, nullptr));
int line = 1;
pp::Token token;
do
{
preprocessor->lex(&token);
if (output)
{
for (; line < token.location.line; ++line)
{
*output << "\n";
}
*output << token;
}
} while (token.type != pp::Token::LAST);
}
void SimplePreprocessorTest::preprocess(const char *input, const pp::PreprocessorSettings &settings)
{
pp::Preprocessor preprocessor(&mDiagnostics, &mDirectiveHandler, settings);
preprocess(input, nullptr, &preprocessor);
}
void SimplePreprocessorTest::preprocess(const char *input)
{
preprocess(input, pp::PreprocessorSettings());
}
void SimplePreprocessorTest::preprocess(const char *input, const char *expected)
{
pp::Preprocessor preprocessor(&mDiagnostics, &mDirectiveHandler, pp::PreprocessorSettings());
std::stringstream output;
preprocess(input, &output, &preprocessor);
std::string actual = output.str();
EXPECT_STREQ(expected, actual.c_str());
}
void SimplePreprocessorTest::lexSingleToken(const char *input, pp::Token *token)
{
pp::Preprocessor preprocessor(&mDiagnostics, &mDirectiveHandler, pp::PreprocessorSettings());
ASSERT_TRUE(preprocessor.init(1, &input, nullptr));
preprocessor.lex(token);
}
void SimplePreprocessorTest::lexSingleToken(size_t count,
const char *const input[],
pp::Token *token)
{
pp::Preprocessor preprocessor(&mDiagnostics, &mDirectiveHandler, pp::PreprocessorSettings());
ASSERT_TRUE(preprocessor.init(count, input, nullptr));
preprocessor.lex(token);
}