/external/flatbuffers/src/ |
D | idl_gen_cpp.cpp | 65 code_ += "#include \"" + *it + "\""; in GenIncludeDependencies() 73 code_ += "#include \"" + parser_.opts.include_prefix + basename + in GenIncludeDependencies() 78 if (num_includes) code_ += ""; in GenIncludeDependencies() 86 code_.Clear(); in generate() 87 code_ += "// " + std::string(FlatBuffersGeneratedWarning()); in generate() 90 code_ += "#ifndef " + include_guard; in generate() 91 code_ += "#define " + include_guard; in generate() 92 code_ += ""; in generate() 94 code_ += "#include \"flatbuffers/flatbuffers.h\""; in generate() 95 code_ += ""; in generate() [all …]
|
/external/v8/src/parsing/ |
D | preparser.h | 128 : code_(TypeField::encode(kEmpty)), identifiers_(nullptr) {} in PreParserExpression() 227 bool IsEmpty() const { return TypeField::decode(code_) == kEmpty; } in IsEmpty() 230 return TypeField::decode(code_) == kIdentifierExpression; in IsIdentifier() 235 return PreParserIdentifier(IdentifierTypeField::decode(code_)); in AsIdentifier() 239 return TypeField::decode(code_) == kExpression && in IsAssignment() 240 ExpressionTypeField::decode(code_) == kAssignment; in IsAssignment() 244 return TypeField::decode(code_) == kObjectLiteralExpression; in IsObjectLiteral() 248 return TypeField::decode(code_) == kArrayLiteralExpression; in IsArrayLiteral() 252 return TypeField::decode(code_) == kStringLiteralExpression; in IsStringLiteral() 256 return TypeField::decode(code_) == kStringLiteralExpression && in IsUseStrictLiteral() [all …]
|
/external/vixl/src/aarch64/ |
D | operands-aarch64.h | 58 CPURegister() : code_(0), size_(0), type_(kNoRegister) { in CPURegister() 64 : code_(code), size_(size), type_(type) { in CPURegister() 70 return code_; in GetCode() 81 VIXL_ASSERT(code_ < (sizeof(RegList) * 8)); in GetBit() 82 return IsValid() ? (static_cast<RegList>(1) << code_) : 0; in GetBit() 146 ((code_ < kNumberOfRegisters) || (code_ == kSPRegInternalCode)); in IsValidRegister() 153 (code_ < kNumberOfVRegisters); in IsValidVRegister() 157 return IsFPRegister() && (code_ < kNumberOfVRegisters); in IsValidFPRegister() 162 VIXL_ASSERT((type_ != kNoRegister) || (code_ == 0)); in IsNone() 170 return (code_ == other.code_) && (type_ == other.type_); in Aliases() [all …]
|
D | operands-aarch64.cc | 245 return Register::GetWRegFromCode(code_); in W() 251 return Register::GetXRegFromCode(code_); in X() 257 return VRegister::GetBRegFromCode(code_); in B() 263 return VRegister::GetHRegFromCode(code_); in H() 269 return VRegister::GetSRegFromCode(code_); in S() 275 return VRegister::GetDRegFromCode(code_); in D() 281 return VRegister::GetQRegFromCode(code_); in Q() 287 return VRegister::GetVRegFromCode(code_); in V()
|
/external/v8/src/ |
D | disassembler.cc | 26 explicit V8NameConverter(Code* code) : code_(code) {} in V8NameConverter() 29 Code* code() const { return code_; } in code() 31 Code* code_; member in v8::internal::V8NameConverter 39 code_ == NULL ? NULL : code_->GetIsolate()->builtins()->Lookup(pc); in NameOfAddress() 46 if (code_ != NULL) { in NameOfAddress() 47 int offs = static_cast<int>(pc - code_->instruction_start()); in NameOfAddress() 49 if (0 <= offs && offs < code_->instruction_size()) { in NameOfAddress() 62 return (code_ != NULL) ? reinterpret_cast<const char*>(addr) : ""; in NameInCode()
|
D | basic-block-profiler.cc | 25 InsertIntoString(os, &code_); in SetCode() 107 if (!d.code_.empty()) { in operator <<() 108 os << d.code_.c_str() << std::endl; in operator <<()
|
D | safepoint-table.cc | 39 code_ = code; in SafepointTable() 53 unsigned pc_offset = static_cast<unsigned>(pc - code_->instruction_start()); in FindEntry() 74 int last_bits = code_->stack_slots() - ((last - first) * kBitsPerByte); in PrintEntry()
|
D | code-factory.h | 21 : code_(code), descriptor_(descriptor) {} in Callable() 23 Handle<Code> code() const { return code_; } in code() 27 const Handle<Code> code_;
|
D | compilation-info.h | 76 Handle<Code> code() const { return code_; } in code() 190 void SetCode(Handle<Code> code) { code_ = code; } in SetCode() 352 Handle<Code> code_; variable
|
D | basic-block-profiler.h | 47 std::string code_; variable
|
D | messages.cc | 174 code_ = handle(array->Code(frame_ix), isolate); in FromFrameArray() 188 code_(code), in JSStackFrame() 612 int JSStackFrame::GetPosition() const { return code_->SourcePosition(offset_); } in GetPosition() 629 code_ = handle(array->Code(frame_ix), isolate); in FromFrameArray() 676 return (offset_ < 0) ? (-1 - offset_) : code_->SourcePosition(offset_); in GetPosition() 708 int byte_offset = code_->SourcePosition(offset_); in GetPosition()
|
/external/v8/src/compiler/ |
D | frame-elider.cc | 12 FrameElider::FrameElider(InstructionSequence* code) : code_(code) {} in FrameElider() 128 return code_->instruction_blocks(); in instruction_blocks() 133 return code_->InstructionBlockAt(rpo_number); in InstructionBlockAt() 138 return code_->InstructionAt(index); in InstructionAt()
|
D | move-optimizer.h | 25 InstructionSequence* code() const { return code_; } in code() 53 InstructionSequence* const code_; variable
|
D | frame-elider.h | 34 InstructionSequence* const code_; variable
|
D | code-generator.h | 60 InstructionSequence* code() const { return code_; } in code() 262 InstructionSequence* const code_; variable
|
/external/pdfium/third_party/freetype/src/cff/ |
D | cffparse.c | 842 #define CFF_FIELD_CALLBACK( code_, name_, id_ ) \ in FT_Create_Class_cff_field_handlers() argument 844 clazz[i].code = code_ | CFFCODE; \ in FT_Create_Class_cff_field_handlers() 853 #define CFF_FIELD( code_, name_, id_, kind_ ) \ in FT_Create_Class_cff_field_handlers() argument 855 clazz[i].code = code_ | CFFCODE; \ in FT_Create_Class_cff_field_handlers() 864 #define CFF_FIELD_DELTA( code_, name_, max_, id_ ) \ in FT_Create_Class_cff_field_handlers() argument 866 clazz[i].code = code_ | CFFCODE; \ in FT_Create_Class_cff_field_handlers() 889 #define CFF_FIELD_CALLBACK( code_, name_, id_ ) \ in FT_Create_Class_cff_field_handlers() argument 891 clazz[i].code = code_ | CFFCODE; \ in FT_Create_Class_cff_field_handlers() 901 #define CFF_FIELD( code_, name_, id_, kind_ ) \ in FT_Create_Class_cff_field_handlers() argument 903 clazz[i].code = code_ | CFFCODE; \ in FT_Create_Class_cff_field_handlers() [all …]
|
/external/freetype/src/cff/ |
D | cffparse.c | 1145 #define CFF_FIELD_CALLBACK( code_, name_, id_ ) \ in FT_Create_Class_cff_field_handlers() argument 1147 clazz[i].code = code_ | CFFCODE; \ in FT_Create_Class_cff_field_handlers() 1156 #define CFF_FIELD( code_, name_, id_, kind_ ) \ in FT_Create_Class_cff_field_handlers() argument 1158 clazz[i].code = code_ | CFFCODE; \ in FT_Create_Class_cff_field_handlers() 1167 #define CFF_FIELD_DELTA( code_, name_, max_, id_ ) \ in FT_Create_Class_cff_field_handlers() argument 1169 clazz[i].code = code_ | CFFCODE; \ in FT_Create_Class_cff_field_handlers() 1178 #define CFF_FIELD_BLEND( code_, id_ ) \ in FT_Create_Class_cff_field_handlers() argument 1180 clazz[i].code = code_ | CFFCODE; \ in FT_Create_Class_cff_field_handlers() 1203 #define CFF_FIELD_CALLBACK( code_, name_, id_ ) \ in FT_Create_Class_cff_field_handlers() argument 1205 clazz[i].code = code_ | CFFCODE; \ in FT_Create_Class_cff_field_handlers() [all …]
|
/external/webp/src/dsp/ |
D | lossless_common.h | 127 int8_t code_; member 138 *code = prefix_code.code_; in VP8LPrefixEncodeBits() 150 *code = prefix_code.code_; in VP8LPrefixEncode()
|
/external/libbrillo/brillo/errors/ |
D | error.h | 57 const std::string& GetCode() const { return code_; } in GetCode() 115 std::string code_; variable
|
D | error.cc | 76 new Error(location_, domain_, code_, message_, std::move(inner_error))); in Clone() 112 code_(code), in Error()
|
/external/llvm/lib/Target/Mips/ |
D | MicroMipsInstrFormats.td | 233 bits<4> code_; 238 let Inst{3-0} = code_; 613 bits<10> code_; 616 let Inst{25-16} = code_; 622 bits<10> code_; 626 let Inst{25-16} = code_; 654 bits<4> code_; 661 let Inst{15-12} = code_; 896 bits<10> code_; 901 let Inst{25-16} = code_;
|
D | MipsInstrFormats.td | 518 bits<10> code_; 525 let Inst{15-6} = code_; 621 // System calls format <op|code_|funct> 626 bits<20> code_; 629 let Inst{25-6} = code_; 906 bits<20> code_; 911 let Inst{25-6} = code_;
|
/external/regex-re2/re2/ |
D | regexp.h | 185 RegexpStatus() : code_(kRegexpSuccess), tmp_(NULL) {} in RegexpStatus() 188 void set_code(enum RegexpStatusCode code) { code_ = code; } in set_code() 191 enum RegexpStatusCode code() const { return code_; } in code() 207 enum RegexpStatusCode code_; // Kind of error variable
|
/external/vixl/src/aarch32/ |
D | instructions-aarch32.h | 153 uint32_t code_; variable 156 explicit RegisterOrAPSR_nzcv(uint32_t code) : code_(code) { in RegisterOrAPSR_nzcv() 157 VIXL_ASSERT(code_ < kNumberOfRegisters); in RegisterOrAPSR_nzcv() 159 bool IsAPSR_nzcv() const { return code_ == kPcCode; } in IsAPSR_nzcv() 160 uint32_t GetCode() const { return code_; } in GetCode() 163 return Register(code_); in AsRegister() 936 uint32_t code_; variable 939 explicit CRegister(uint32_t code) : code_(code) { in CRegister() 942 uint32_t GetCode() const { return code_; } in GetCode() 943 bool Is(CRegister value) const { return code_ == value.code_; } in Is()
|
/external/v8/src/runtime/ |
D | runtime-compiler.cc | 140 Code* code_; member in v8::internal::ActivationsFinder 144 : code_(code), has_code_activations_(false) {} in ActivationsFinder() 154 if (code_->contains(frame->pc())) has_code_activations_ = true; in VisitFrames()
|