HomeSort by relevance Sort by last modified time
    Searched refs:JtlCompiler (Results 1 - 4 of 4) sorted by null

  /external/chromium_org/chrome/tools/profile_reset/
jtl_compiler_unittest.cc 40 TEST(JtlCompiler, CompileSingleInstructions) {
82 EXPECT_TRUE(JtlCompiler::Compile(
88 TEST(JtlCompiler, CompileEntireProgram) {
105 JtlCompiler::Compile(kSourceCode, kTestHashSeed, &bytecode, NULL));
109 TEST(JtlCompiler, InvalidOperationName) {
113 JtlCompiler::CompileError error;
115 JtlCompiler::Compile(kSourceCode, kTestHashSeed, &bytecode, &error));
118 EXPECT_EQ(JtlCompiler::CompileError::INVALID_OPERATION_NAME,
122 TEST(JtlCompiler, InvalidArgumentsCount) {
130 JtlCompiler::CompileError error
    [all...]
jtl_compiler_frontend.cc 41 const char* ResolveErrorCode(JtlCompiler::CompileError::ErrorCode code) {
43 case JtlCompiler::CompileError::MISMATCHED_DOUBLE_QUOTES:
45 case JtlCompiler::CompileError::PARSING_ERROR:
47 case JtlCompiler::CompileError::INVALID_ARGUMENT_COUNT:
49 case JtlCompiler::CompileError::INVALID_ARGUMENT_TYPE:
51 case JtlCompiler::CompileError::INVALID_ARGUMENT_VALUE:
53 case JtlCompiler::CompileError::INVALID_OPERATION_NAME:
88 JtlCompiler::CompileError error;
90 if (!JtlCompiler::Compile(source_code, hash_seed, &bytecode, &error)) {
jtl_compiler.h 36 class JtlCompiler {
71 DISALLOW_IMPLICIT_CONSTRUCTORS(JtlCompiler);
jtl_compiler.cc 94 JtlCompiler::CompileError::ErrorCode TranscodeInstruction(
101 return JtlCompiler::CompileError::INVALID_OPERATION_NAME;
104 return JtlCompiler::CompileError::INVALID_ARGUMENT_COUNT;
111 return JtlCompiler::CompileError::INVALID_ARGUMENT_TYPE;
118 return JtlCompiler::CompileError::INVALID_ARGUMENT_TYPE;
125 return JtlCompiler::CompileError::INVALID_ARGUMENT_TYPE;
128 return JtlCompiler::CompileError::INVALID_ARGUMENT_VALUE;
140 return JtlCompiler::CompileError::INVALID_ARGUMENT_TYPE;
146 return JtlCompiler::CompileError::INVALID_ARGUMENT_TYPE;
151 return JtlCompiler::CompileError::ERROR_NONE
    [all...]

Completed in 423 milliseconds