Searched refs:comment (Results 1 - 25 of 33) sorted by relevance

12

/system/tools/hidl/
H A DEnumType.cpp181 std::string comment = entry->comment(); local
182 if (!comment.empty() && comment != value) {
183 out << " // " << comment; local
383 std::string comment = entry->comment(); local
384 if (!comment.empty() && comment != value) {
385 out << " // " << comment; local
598 std::string comment = entry->comment(); local
600 out << " // " << comment; local
636 std::string comment = entry->comment(); local
638 out << " // " << comment; local
683 std::string EnumValue::comment() const { function in class:android::EnumValue
[all...]
/system/tools/hidl/c2hal/
H A DDeclaration.cpp57 void Declaration::setComment(const std::string &comment) { argument
59 mComment = regex_replace(comment, RE_LEADING_SPACES, "\n ");
H A DDeclaration.h42 void setComment(const std::string &comment);
/system/tools/aidl/
H A Dast_java_unittest.cpp33 R"(// class comment
49 a_class.comment = "// class comment";
H A Dgenerate_java_binder.cpp57 this->comment = "/** Local-side IPC implementation stub class. */";
74 ctor->comment =
127 m->comment = "/**\n * Cast an IBinder object into an ";
128 m->comment += interfaceType->JavaType();
129 m->comment += " interface,\n";
130 m->comment += " * generating a proxy if needed.\n */";
283 decl->comment = method.GetComments();
384 proxy->comment = method.GetComments();
517 interface->comment = iface->GetComments();
H A Dast_java.cpp70 if (this->comment.length() != 0) {
71 to->Write("%s\n", this->comment.c_str());
375 if (this->comment.length() != 0) {
376 to->Write("%s\n", this->comment.c_str());
433 if (this->comment.length() != 0) {
434 to->Write("%s\n", this->comment.c_str());
494 Document::Document(const std::string& comment, argument
498 : comment_(comment),
H A Dast_java.h113 std::string comment; member in struct:android::aidl::java::Field
314 std::string comment; member in struct:android::aidl::java::Method
354 std::string comment; member in struct:android::aidl::java::Class
370 Document(const std::string& comment,
/system/media/camera/docs/
H A DCameraDeviceInfo.mako20 * modify the comment blocks at the start or end.
H A DCaptureResultTest.mako20 * modify the comment blocks at the start or end.
H A DACameraMetadata.mako49 * modify the comment blocks at the start or end.
H A DCameraMetadataEnums.mako23 * modify the comment blocks at the start or end.
H A DCameraMetadataKeys.mako24 * modify the comment blocks at the start or end.
/system/core/logd/
H A DLogTags.cpp48 // Sniff for first uid=%d in utf8z comment string
49 static uid_t sniffUid(const char* comment, const char* endp) { argument
50 if (!comment) return AID_ROOT;
52 if (*comment == '#') ++comment;
53 while ((comment < endp) && (*comment != '\n') && isspace(*comment))
54 ++comment;
56 if (((comment
[all...]
/system/core/libpixelflinger/codeflinger/
H A DGGLAssembler.cpp247 comment("fetch color-buffer");
306 comment("store");
359 comment("compute ct (# of pixels to process)");
391 comment("compute color-buffer pointer");
405 comment("compute initial fog coordinate");
419 comment("compute initial Z coordinate");
462 comment(comments[component]);
634 comment("update iterated color");
677 comment("coverage application");
701 comment("Alph
[all...]
H A DARMAssembler.cpp91 ssize_t comment = mComments.indexOfKey(i); local
92 if (comment >= 0) {
93 printf("; %s\n", mComments.valueAt(comment));
101 void ARMAssembler::comment(const char* string) function in class:android::ARMAssembler
347 void ARMAssembler::SWI(int cc, uint32_t comment) { argument
348 *mPC++ = (cc<<28) | (0xF<<24) | comment;
H A DARMAssemblerProxy.cpp68 void ARMAssemblerProxy::comment(const char* string) { function in class:android::ARMAssemblerProxy
69 mTarget->comment(string);
249 void ARMAssemblerProxy::SWI(int cc, uint32_t comment) { argument
250 mTarget->SWI(cc, comment);
H A DARMAssembler.h58 virtual void comment(const char* string);
140 virtual void SWI(int cc, uint32_t comment);
H A DARMAssemblerProxy.h49 virtual void comment(const char* string);
127 virtual void SWI(int cc, uint32_t comment);
H A Dtexturing.cpp53 comment("compute initial iterated color (smooth and/or dither case)");
131 comment("load initial iterated color (8888 packed)");
136 comment("load initial iterated color (dest format packed)");
334 comment("compute texture coordinates");
450 comment("fetch texel");
458 comment("reload s/t (multitexture or linear filtering)");
468 comment("compute repeat/clamp");
511 comment("compute linear filtering offsets");
600 comment("iterate s,t");
621 comment("merg
[all...]
H A DMIPSAssembler.h56 virtual void comment(const char* string);
139 virtual void SWI(int cc, uint32_t comment);
257 virtual void comment(const char* string);
H A DMIPS64Assembler.cpp106 void ArmToMips64Assembler::comment(const char* string) function in class:android::ArmToMips64Assembler
108 mMips->comment(string);
1004 void ArmToMips64Assembler::SWI(int cc, uint32_t comment) { argument
1005 // *mPC++ = (cc<<28) | (0xF<<24) | comment;
1350 ssize_t comment = mComments.indexOfKey(mipsPC); local
1351 if (comment >= 0) {
1352 ALOGW("; %s\n", mComments.valueAt(comment));
H A DArm64Assembler.h71 virtual void comment(const char* string);
157 virtual void SWI(int cc, uint32_t comment);
H A DMIPS64Assembler.h58 virtual void comment(const char* string);
144 virtual void SWI(int cc, uint32_t comment);
/system/chre/build/sys_support/qcom/
H A Duimage.lcs.toolv80185 .comment 0 : { *(.comment) }
/system/extras/simpleperf/
H A Dcmd_stat.cpp59 std::string comment; member in struct:__anon1765::CounterSummary
165 s.comment = GetCommentForSummary(s, duration_in_sec);
177 comment_column_width = std::max(comment_column_width, s.comment.size());
183 s.Name().c_str(), s.comment.c_str(), 1.0 / s.scale * 100,
189 static_cast<int>(comment_column_width), s.comment.c_str(),

Completed in 3330 milliseconds

12