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

1 2 3

  /external/flatbuffers/src/
idl_gen_cpp.cpp 89 code_ += "#include \"" + *it + "\"";
99 code_ += "#include \"" + parser_.opts.include_prefix +
104 if (num_includes) code_ += "";
122 code_.Clear();
123 code_ += "// " + std::string(FlatBuffersGeneratedWarning()) + "\n\n";
126 code_ += "#ifndef " + include_guard;
127 code_ += "#define " + include_guard;
128 code_ += "";
131 code_ += "#pragma clang system_header\n\n";
134 code_ += "#include \"flatbuffers/flatbuffers.h\""
346 CodeWriter code_; member in class:flatbuffers::cpp::CppGenerator
828 code_ += ""; member in class:flatbuffers::cpp::CppGenerator
829 code_ += "};"; member in class:flatbuffers::cpp::CppGenerator
834 code_ += ""; member in class:flatbuffers::cpp::CppGenerator
838 code_ += "inline {{ENUM_NAME}} (&EnumValues{{ENUM_NAME}}())[" + num_fields + "] {"; member in class:flatbuffers::cpp::CppGenerator
839 code_ += " static {{ENUM_NAME}} values[] = {"; member in class:flatbuffers::cpp::CppGenerator
847 code_ += " };"; member in class:flatbuffers::cpp::CppGenerator
848 code_ += " return values;"; member in class:flatbuffers::cpp::CppGenerator
849 code_ += "}"; member in class:flatbuffers::cpp::CppGenerator
850 code_ += ""; member in class:flatbuffers::cpp::CppGenerator
    [all...]
idl_gen_json_schema.cpp 118 CodeWriter code_; member in class:flatbuffers::jsons::JsonSchemaGenerator
129 code_.Clear();
130 code_ += "{";
131 code_ += " \"$schema\": \"http://json-schema.org/draft-04/schema#\",";
132 code_ += " \"definitions\": {";
136 code_ += " \"" + GenFullName(*e) + "\" : {";
137 code_ += " " + GenType("string") + ",";
148 code_ += enumdef;
149 code_ += " },"; // close type
155 code_ += " \"" + GenFullName(structure) + "\" : {"
    [all...]
  /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...]
  /art/runtime/
oat_quick_method_header.h 46 uintptr_t header = code - OFFSETOF_MEMBER(OatQuickMethodHeader, code_);
70 return reinterpret_cast<const void*>(code_ - vmap_table_offset_);
75 return code_ - vmap_table_offset_;
84 return reinterpret_cast<const void*>(code_ - method_info_offset_);
89 return code_ - method_info_offset_;
97 return code_;
134 return (vmap_table_offset_ == 0) ? nullptr : code_ - vmap_table_offset_;
138 uintptr_t code_start = reinterpret_cast<uintptr_t>(code_);
154 ? reinterpret_cast<uint8_t*>(reinterpret_cast<uintptr_t>(code_) | 1)
155 : code_;
204 uint8_t code_[0]; variable
    [all...]
  /external/v8/src/compiler/
frame-elider.h 34 InstructionSequence* const code_; member in class:v8::internal::compiler::FrameElider
move-optimizer.h 25 InstructionSequence* code() const { return code_; }
53 InstructionSequence* const code_; member in class:v8::internal::compiler::final
frame-elider.cc 13 FrameElider::FrameElider(InstructionSequence* code) : code_(code) {}
152 return code_->instruction_blocks();
157 return code_->InstructionBlockAt(rpo_number);
162 return code_->InstructionAt(index);
  /art/compiler/jni/quick/
jni_compiler.h 40 code_(std::move(code)),
50 ArrayRef<const uint8_t> GetCode() const { return ArrayRef<const uint8_t>(code_); }
58 std::vector<uint8_t> code_; member in class:art::JniCompiledMethod
  /system/update_engine/payload_consumer/
postinstall_runner_action_unittest.cc 65 code_ = code;
70 ErrorCode code_{ErrorCode::kError};
244 EXPECT_EQ(ErrorCode::kSuccess, processor_delegate_.code_);
254 EXPECT_EQ(ErrorCode::kSuccess, processor_delegate_.code_);
261 EXPECT_EQ(ErrorCode::kSuccess, processor_delegate_.code_);
271 EXPECT_EQ(ErrorCode::kPostinstallRunnerError, processor_delegate_.code_);
283 EXPECT_EQ(ErrorCode::kPostinstallRunnerError, processor_delegate_.code_);
292 processor_delegate_.code_);
299 EXPECT_EQ(ErrorCode::kPostinstallRunnerError, processor_delegate_.code_);
308 EXPECT_EQ(ErrorCode::kSuccess, processor_delegate_.code_);
    [all...]
filesystem_verifier_action_unittest.cc 66 : action_(action), ran_(false), code_(ErrorCode::kError) {}
91 code_ = code;
95 ErrorCode code() const { return code_; }
100 ErrorCode code_; member in class:chromeos_update_engine::FilesystemVerifierActionTestDelegate
229 code_ = code;
233 ErrorCode code_; member in class:chromeos_update_engine::FilesystemVerifierActionTest2Delegate
252 EXPECT_EQ(ErrorCode::kError, delegate.code_);
281 EXPECT_EQ(ErrorCode::kError, delegate.code_);
download_action.cc 55 code_(ErrorCode::kSuccess),
335 if (writer_ && !writer_->Write(bytes, length, &code_)) {
336 if (code_ != ErrorCode::kSuccess) {
337 LOG(ERROR) << "Error " << utils::ErrorCodeToString(code_) << " (" << code_
412 if (code_ != ErrorCode::kSuccess) {
413 processor_->ActionComplete(this, code_);
  /external/v8/src/
disassembler.cc 28 explicit V8NameConverter(Code* code) : code_(code) {}
31 Code* code() const { return code_; }
33 Code* code_; member in class:v8::internal::V8NameConverter
41 code_ == NULL ? NULL : code_->GetIsolate()->builtins()->Lookup(pc);
48 if (code_ != NULL) {
49 int offs = static_cast<int>(pc - code_->instruction_start());
51 if (0 <= offs && offs < code_->instruction_size()) {
64 return (code_ != NULL) ? reinterpret_cast<const char*>(addr) : "";
basic-block-profiler.cc 25 InsertIntoString(os, &code_);
107 if (!d.code_.empty()) {
108 os << d.code_.c_str() << std::endl;
basic-block-profiler.h 47 std::string code_; member in class:v8::internal::BasicBlockProfiler::Data
  /external/tensorflow/tensorflow/compiler/xla/
status_macros.cc 95 code_(code),
109 code_(!status.ok() ? status.code() : tensorflow::error::UNKNOWN),
150 return MakeError(file_, line_, code_,
157 return MakeError(file_, line_, code_, str, should_log_, log_severity_,
  /external/vixl/src/aarch64/
operands-aarch64.h 58 CPURegister() : code_(0), size_(0), type_(kNoRegister) {
64 : code_(code), size_(size), type_(type) {
70 return code_;
81 VIXL_ASSERT(code_ < (sizeof(RegList) * 8));
82 return IsValid() ? (static_cast<RegList>(1) << code_) : 0;
146 ((code_ < kNumberOfRegisters) || (code_ == kSPRegInternalCode));
153 (code_ < kNumberOfVRegisters);
157 return IsFPRegister() && (code_ < kNumberOfVRegisters);
162 VIXL_ASSERT((type_ != kNoRegister) || (code_ == 0))
    [all...]
operands-aarch64.cc 245 return Register::GetWRegFromCode(code_);
251 return Register::GetXRegFromCode(code_);
257 return VRegister::GetBRegFromCode(code_);
263 return VRegister::GetHRegFromCode(code_);
269 return VRegister::GetSRegFromCode(code_);
275 return VRegister::GetDRegFromCode(code_);
281 return VRegister::GetQRegFromCode(code_);
287 return VRegister::GetVRegFromCode(code_);
  /external/v8/src/parsing/
preparser.h 131 : code_(TypeField::encode(kEmpty)), variables_(nullptr) {}
247 bool IsEmpty() const { return TypeField::decode(code_) == kEmpty; }
250 return TypeField::decode(code_) == kIdentifierExpression;
255 return PreParserIdentifier(IdentifierTypeField::decode(code_));
259 return TypeField::decode(code_) == kExpression &&
260 ExpressionTypeField::decode(code_) == kAssignment;
264 return TypeField::decode(code_) == kObjectLiteralExpression;
268 return TypeField::decode(code_) == kArrayLiteralExpression;
272 return TypeField::decode(code_) == kStringLiteralExpression;
276 return TypeField::decode(code_) == kStringLiteralExpression &
398 uint32_t code_; member in class:v8::internal::PreParserExpression
536 Type code_; member in class:v8::internal::PreParserStatement
    [all...]
  /external/webp/src/dsp/
lossless_common.h 119 int8_t code_; member in struct:__anon43734
130 *code = prefix_code.code_;
142 *code = prefix_code.code_;
  /external/libbrillo/brillo/errors/
error.h 57 const std::string& GetCode() const { return code_; }
115 std::string code_; member in class:brillo::Error
error.cc 76 new Error(location_, domain_, code_, message_, std::move(inner_error)));
112 code_(code),
  /toolchain/binutils/binutils-2.27/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
  /system/update_engine/common/
utils.h 379 code_(ErrorCode::kError),
383 processor_->ActionComplete(action_, code_);
385 void set_code(ErrorCode code) { code_ = code; }
389 ErrorCode get_code() const { return code_; }
394 ErrorCode code_; member in class:chromeos_update_engine::ScopedActionCompleter
  /external/freetype/src/cff/
cffparse.c 1170 #define CFF_FIELD_CALLBACK( code_, name_, id_ ) \
1172 clazz[i].code = code_ | CFFCODE; \
1181 #define CFF_FIELD( code_, name_, id_, kind_ ) \
1183 clazz[i].code = code_ | CFFCODE; \
1192 #define CFF_FIELD_DELTA( code_, name_, max_, id_ ) \
1194 clazz[i].code = code_ | CFFCODE; \
1203 #define CFF_FIELD_BLEND( code_, id_ ) \
1205 clazz[i].code = code_ | CFFCODE; \
    [all...]

Completed in 638 milliseconds

1 2 3