/system/tools/hidl/ |
D | DocComment.cpp | 26 DocComment::DocComment(const std::string& comment) { in DocComment() argument 28 StringHelper::SplitString(comment, '\n', &lines); in DocComment() 59 void DocComment::merge(const DocComment* comment) { in merge() argument 60 mComment = mComment + "\n\n" + comment->mComment; in merge()
|
D | DocComment.h | 28 DocComment(const std::string& comment); 30 void merge(const DocComment* comment);
|
D | EnumType.cpp | 267 std::string comment = entry->comment(); in emitTypeDeclarations() local 268 if (!comment.empty()) { in emitTypeDeclarations() 269 out << " // " << comment; in emitTypeDeclarations() 492 std::string comment = entry->comment(); in emitJavaTypeDeclarations() local 493 if (!comment.empty()) { in emitJavaTypeDeclarations() 494 out << " // " << comment; in emitJavaTypeDeclarations() 711 std::string comment = entry->comment(); in emitExportedHeader() local 712 if (!comment.empty()) { in emitExportedHeader() 713 out << " // " << comment; in emitExportedHeader() 749 std::string comment = entry->comment(); in emitExportedHeader() local [all …]
|
/system/tools/hidl/c2hal/ |
D | Declaration.cpp | 57 void Declaration::setComment(const std::string &comment) { in setComment() argument 59 mComment = regex_replace(comment, RE_LEADING_SPACES, "\n "); in setComment()
|
D | Declaration.h | 42 void setComment(const std::string &comment);
|
/system/core/logd/ |
D | LogTags.cpp | 49 static uid_t sniffUid(const char* comment, const char* endp) { in sniffUid() argument 50 if (!comment) return AID_ROOT; in sniffUid() 52 if (*comment == '#') ++comment; in sniffUid() 53 while ((comment < endp) && (*comment != '\n') && isspace(*comment)) in sniffUid() 54 ++comment; in sniffUid() 56 if (((comment + strlen(uid_str)) >= endp) || in sniffUid() 57 fastcmp<strncmp>(comment, uid_str, strlen(uid_str)) || in sniffUid() 58 !isdigit(comment[strlen(uid_str)])) in sniffUid() 61 unsigned long Uid = strtoul(comment + 4, &cp, 10); in sniffUid()
|
/system/tools/aidl/ |
D | ast_java.cpp | 70 if (this->comment.length() != 0) { in Write() 71 to->Write("%s\n", this->comment.c_str()); in Write() 375 if (this->comment.length() != 0) { in Write() 376 to->Write("%s\n", this->comment.c_str()); in Write() 433 if (this->comment.length() != 0) { in Write() 434 to->Write("%s\n", this->comment.c_str()); in Write() 494 Document::Document(const std::string& comment, in Document() argument 498 : comment_(comment), in Document()
|
D | ast_java_unittest.cpp | 49 a_class.comment = "// class comment"; in TEST()
|
D | generate_java_binder.cpp | 83 this->comment = "/** Local-side IPC implementation stub class. */"; in StubClass() 100 ctor->comment = in StubClass() 191 m->comment = "/**\n * Cast an IBinder object into an "; in make_as_interface() 192 m->comment += interfaceType->JavaType(); in make_as_interface() 193 m->comment += " interface,\n"; in make_as_interface() 194 m->comment += " * generating a proxy if needed.\n */"; in make_as_interface() 328 decl->comment = method.GetComments(); in generate_interface_method() 554 proxy->comment = method.GetComments(); in generate_proxy_method() 790 interface->comment = iface->GetComments(); in generate_binder_interface_class()
|
D | ast_java.h | 113 std::string comment; member 314 std::string comment; member 354 std::string comment; member 370 Document(const std::string& comment,
|
D | aidl_language_l.ll | 105 // comment and whitespace handling
|
/system/core/libpixelflinger/codeflinger/ |
D | GGLAssembler.cpp | 245 comment("fetch color-buffer"); in scanline_core() 304 comment("store"); in scanline_core() 356 comment("compute ct (# of pixels to process)"); in build_scanline_prolog() 388 comment("compute color-buffer pointer"); in build_scanline_prolog() 402 comment("compute initial fog coordinate"); in build_scanline_prolog() 416 comment("compute initial Z coordinate"); in build_scanline_prolog() 459 comment(comments[component]); in build_component() 631 comment("update iterated color"); in build_smooth_shade() 674 comment("coverage application"); in build_coverage_application() 698 comment("Alpha Test"); in build_alpha_test() [all …]
|
D | ARMAssembler.cpp | 91 ssize_t comment = mComments.indexOfKey(i); in disassemble() local 92 if (comment >= 0) { in disassemble() 93 printf("; %s\n", mComments.valueAt(comment)); in disassemble() 101 void ARMAssembler::comment(const char* string) in comment() function in android::ARMAssembler 347 void ARMAssembler::SWI(int cc, uint32_t comment) { in SWI() argument 348 *mPC++ = (cc<<28) | (0xF<<24) | comment; in SWI()
|
D | ARMAssemblerProxy.cpp | 68 void ARMAssemblerProxy::comment(const char* string) { in comment() function in android::ARMAssemblerProxy 69 mTarget->comment(string); in comment() 249 void ARMAssemblerProxy::SWI(int cc, uint32_t comment) { in SWI() argument 250 mTarget->SWI(cc, comment); in SWI()
|
D | texturing.cpp | 52 comment("compute initial iterated color (smooth and/or dither case)"); in init_iterated_color() 130 comment("load initial iterated color (8888 packed)"); in init_iterated_color() 135 comment("load initial iterated color (dest format packed)"); in init_iterated_color() 331 comment("compute texture coordinates"); in init_textures() 442 comment("fetch texel"); in build_textures() 450 comment("reload s/t (multitexture or linear filtering)"); in build_textures() 460 comment("compute repeat/clamp"); in build_textures() 503 comment("compute linear filtering offsets"); in build_textures() 592 comment("iterate s,t"); in build_textures() 613 comment("merge base & offset"); in build_textures() [all …]
|
D | ARMAssembler.h | 58 virtual void comment(const char* string); 140 virtual void SWI(int cc, uint32_t comment);
|
D | ARMAssemblerProxy.h | 49 virtual void comment(const char* string); 127 virtual void SWI(int cc, uint32_t comment);
|
D | MIPSAssembler.h | 56 virtual void comment(const char* string); 139 virtual void SWI(int cc, uint32_t comment); 257 virtual void comment(const char* string);
|
D | MIPS64Assembler.cpp | 107 void ArmToMips64Assembler::comment(const char* string) in comment() function in android::ArmToMips64Assembler 109 mMips->comment(string); in comment() 1005 void ArmToMips64Assembler::SWI(int cc __unused, uint32_t comment __unused) { in SWI() 1353 ssize_t comment = mComments.indexOfKey(mipsPC); in disassemble() local 1354 if (comment >= 0) { in disassemble() 1355 ALOGW("; %s\n", mComments.valueAt(comment)); in disassemble()
|
/system/chre/external/flatbuffers/ |
D | README.md | 4 changes described in the comment at the top of flatbuffers.h, and apply them to
|
/system/extras/simpleperf/ |
D | cmd_stat.cpp | 59 std::string comment; member 165 s.comment = GetCommentForSummary(s, duration_in_sec); in GenerateComments() 177 comment_column_width = std::max(comment_column_width, s.comment.size()); in Show() 183 s.Name().c_str(), s.comment.c_str(), 1.0 / s.scale * 100, in Show() 189 static_cast<int>(comment_column_width), s.comment.c_str(), in Show()
|
/system/chre/build/sys_support/qcom/ |
D | uimage_v2.lcs | 140 .comment 0 : { *(.comment) }
|
/system/media/camera/docs/ |
D | CaptureResultTest.mako | 20 * modify the comment blocks at the start or end.
|
D | CameraDeviceInfo.mako | 20 * modify the comment blocks at the start or end.
|
/system/libufdt/utils/ |
D | README.md | 148 <ftb1_filename> # comment 149 <entry1_option> # comment
|