HomeSort by relevance Sort by last modified time
    Searched defs:code_ (Results 1 - 25 of 30) sorted by null

1 2

  /external/v8/src/compiler/
frame-elider.h 34 InstructionSequence* const code_; member in class:v8::internal::compiler::FrameElider
move-optimizer.h 24 InstructionSequence* code() const { return code_; }
36 InstructionSequence* const code_; member in class:v8::internal::compiler::final
code-generator.h 54 InstructionSequence* code() const { return code_; }
203 InstructionSequence* const code_; member in class:v8::internal::compiler::final
pipeline.cc 85 code_(Handle<Code>::null()),
125 code_(Handle<Code>::null()),
154 code_(Handle<Code>::null()),
185 Handle<Code> code() { return code_; }
187 DCHECK(code_.is_null());
188 code_ = code;
304 Handle<Code> code_; member in class:v8::internal::compiler::PipelineData
    [all...]
register-allocator.h 782 InstructionSequence* code() const { return code_; }
831 InstructionSequence* const code_; member in class:v8::internal::compiler::final
    [all...]
  /external/v8/src/
code-factory.h 21 : code_(code), descriptor_(descriptor) {}
23 Handle<Code> code() const { return code_; }
27 const Handle<Code> code_; member in class:v8::internal::BASE_EMBEDDED
basic-block-profiler.h 46 std::string code_; member in class:v8::internal::BasicBlockProfiler::Data
disassembler.cc 23 explicit V8NameConverter(Code* code) : code_(code) {}
26 Code* code() const { return code_; }
28 Code* code_; member in class:v8::internal::V8NameConverter
36 code_ == NULL ? NULL : code_->GetIsolate()->builtins()->Lookup(pc);
43 if (code_ != NULL) {
44 int offs = static_cast<int>(pc - code_->instruction_start());
46 if (0 <= offs && offs < code_->instruction_size()) {
59 return (code_ != NULL) ? reinterpret_cast<const char*>(addr) : "";
frames.h 546 Handle<Code> code() { return code_; }
547 Address pc() { return code_->address() + offset_; }
556 Handle<Code> code_; member in class:v8::internal::BASE_EMBEDDED
  /external/libbrillo/brillo/errors/
error.h 57 const std::string& GetCode() const { return code_; }
115 std::string code_; member in class:brillo::Error
  /external/libweave/include/weave/
error.h 69 const std::string& GetCode() const { return code_; }
109 std::string code_; member in class:weave::final
  /art/runtime/
oat_quick_method_header.h 43 uintptr_t header = code - OFFSETOF_MEMBER(OatQuickMethodHeader, code_);
66 const void* data = reinterpret_cast<const void*>(code_ - vmap_table_offset_);
75 return code_;
84 return (vmap_table_offset_ == 0) ? nullptr : code_ - vmap_table_offset_;
88 uintptr_t code_start = reinterpret_cast<uintptr_t>(code_);
104 ? reinterpret_cast<uint8_t*>(reinterpret_cast<uintptr_t>(code_) | 1)
105 : code_;
135 uint8_t code_[0]; variable
  /external/v8/test/cctest/compiler/
call-tester.h 346 : CallHelper<T>(isolate, csig), code_(code) {}
349 virtual byte* Generate() { return code_->entry(); }
352 Handle<Code> code_; member in class:v8::internal::compiler::CodeRunner
codegen-tester.h 56 return code_.ToHandleChecked();
61 if (code_.is_null()) {
66 code_ = Pipeline::GenerateCodeForTesting(&info, call_descriptor, graph,
69 return this->code_.ToHandleChecked()->entry();
73 MaybeHandle<Code> code_; member in class:v8::internal::compiler::RawMachineAssemblerTester
graph-builder-tester.h 232 return code_.ToHandleChecked();
276 if (code_.is_null()) {
281 code_ = Pipeline::GenerateCodeForTesting(&info, desc, graph());
283 if (!code_.is_null() && FLAG_print_opt_code) {
285 code_.ToHandleChecked()->Disassemble("test code", os);
289 return code_.ToHandleChecked()->entry();
305 MaybeHandle<Code> code_; member in class:v8::internal::compiler::GraphBuilderTester
  /system/update_engine/
omaha_response_handler_action_unittest.cc 66 : code_(ErrorCode::kError),
72 code_ = code;
76 ErrorCode code_; member in class:chromeos_update_engine::OmahaResponseHandlerActionProcessorDelegate
134 return delegate.code_ == ErrorCode::kSuccess;
  /system/update_engine/payload_consumer/
download_action.h 158 ErrorCode code_; member in class:chromeos_update_engine::DownloadAction
filesystem_verifier_action_unittest.cc 71 : action_(action), ran_(false), code_(ErrorCode::kError) {}
96 code_ = code;
100 ErrorCode code() const { return code_; }
105 ErrorCode code_; member in class:chromeos_update_engine::FilesystemVerifierActionTestDelegate
255 code_ = code;
259 ErrorCode code_; member in class:chromeos_update_engine::FilesystemVerifierActionTest2Delegate
279 EXPECT_EQ(ErrorCode::kError, delegate.code_);
309 EXPECT_EQ(ErrorCode::kError, delegate.code_);
  /external/v8/src/runtime/
runtime-compiler.cc 110 Code* code_; member in class:v8::internal::ActivationsFinder
114 : code_(code), has_code_activations_(false) {}
124 if (code_->contains(frame->pc())) has_code_activations_ = true;
  /packages/apps/Test/connectivity/sl4n/rapidjson/include/rapidjson/error/
error.h 104 ParseResult() : code_(kParseErrorNone), offset_(0) {}
106 ParseResult(ParseErrorCode code, size_t offset) : code_(code), offset_(offset) {}
109 ParseErrorCode Code() const { return code_; }
116 bool IsError() const { return code_ != kParseErrorNone; }
118 bool operator==(const ParseResult& that) const { return code_ == that.code_; }
119 bool operator==(ParseErrorCode code) const { return code_ == code; }
120 friend bool operator==(ParseErrorCode code, const ParseResult & err) { return code == err.code_; }
125 void Set(ParseErrorCode code, size_t offset = 0) { code_ = code; offset_ = offset; }
128 ParseErrorCode code_; member in struct:ParseResult
    [all...]
  /system/update_engine/common/
utils.h 440 code_(ErrorCode::kError),
444 processor_->ActionComplete(action_, code_);
446 void set_code(ErrorCode code) { code_ = code; }
450 ErrorCode get_code() const { return code_; }
455 ErrorCode code_; member in class:chromeos_update_engine::ScopedActionCompleter
  /external/webp/src/dsp/
lossless.h 296 int8_t code_; member in struct:__anon26602
307 *code = prefix_code.code_;
319 *code = prefix_code.code_;
  /toolchain/binutils/binutils-2.25/gold/
aarch64-reloc-property.h 83 { return this->code_; }
152 const unsigned int code_; member in class:gold::AArch64_reloc_property
arm-reloc-property.h 68 { return this->code_; }
248 unsigned int code_; member in class:gold::Arm_reloc_property
  /external/regex-re2/re2/
regexp.h 185 RegexpStatus() : code_(kRegexpSuccess), tmp_(NULL) {}
188 void set_code(enum RegexpStatusCode code) { code_ = code; }
191 enum RegexpStatusCode code() const { return code_; }
207 enum RegexpStatusCode code_; // Kind of error member in class:re2::RegexpStatus

Completed in 1030 milliseconds

1 2