Home
last modified time | relevance | path

Searched refs:sCommentBegin (Results 1 – 12 of 12) sorted by relevance

/dports/devel/codeworker/CodeWorker4_5_3/
H A DGrfSetCommentBegin.cpp39 std::string sCommentBegin = _pCommentBegin->getValue(visibility); in executeInternal() local
40 return CGRuntime::setCommentBegin(sCommentBegin); in executeInternal()
H A DDtaPatternScript.cpp675 std::string sCommentBegin = myProject.getCommentBegin(); in writeStandardArea() local
677 std::string::size_type iNextIndex = sAreaCode.find(sCommentBegin + "##"); in writeStandardArea()
687 int iIndex = iNextIndex + 8 + sCommentBegin.size(); in writeStandardArea()
692 int iIndex = iNextIndex + 9 + sCommentBegin.size(); in writeStandardArea()
697 int iIndex = iNextIndex + 11 + sCommentBegin.size(); in writeStandardArea()
698 iEndIndex = sAreaCode.find(sCommentBegin + "##temporary", iIndex); in writeStandardArea()
718 (*_pOutputStream) << sCommentBegin + "##temporary END##" << sCommentEnd; in writeStandardArea()
721 iNextIndex = sAreaCode.find(sCommentBegin + "##", iEndIndex); in writeStandardArea()
736 std::string sCommentBegin = myProject.getCommentBegin(); in writeTargetedArea() local
741 if (strncmp(sAreaCode.c_str() + iNextIndex, sCommentBegin.c_str(), sCommentBegin.size()) != 0) { in writeTargetedArea()
[all …]
H A DDtaProject.h123 inline void setCommentBegin(const std::string& sCommentBegin) { _sCommentBegin = sCommentBegin; } in setCommentBegin() argument
H A DCGRuntime.cpp1192 SEQUENCE_INTERRUPTION_LIST CGRuntime::setCommentBegin(const std::string& sCommentBegin) { in setCommentBegin() argument
1194 DtaProject::getInstance().setCommentBegin(sCommentBegin); in setCommentBegin()
4039 std::string sCommentBegin = DtaProject::getInstance().getCommentBegin(); in extractGenerationHeader() local
4040 std::string sBeginningMarker = sCommentBegin + "##generation header##"; in extractGenerationHeader()
4059 …if (theStream.findString(sCommentBegin + "##header start##") && theStream.findString(sCommentEnd))… in extractGenerationHeader()
4062 std::string sMarker = sCommentBegin + "##header end##"; in extractGenerationHeader()
4068 std::string sSeparator = sCommentEnd + sCommentBegin; in extractGenerationHeader()
4069 sComment = sComment.substr(sCommentBegin.size(), sComment.size() - sSeparator.size()); in extractGenerationHeader()
H A DWorkspace.cpp522 std::string sCommentBegin = readArgument(tsArgs, i); in executeArguments() local
523 DtaProject::getInstance().setCommentBegin(sCommentBegin); in executeArguments()
H A DCGRuntime.h208 static SEQUENCE_INTERRUPTION_LIST setCommentBegin(const std::string& sCommentBegin);
/dports/devel/codeworker/CodeWorker4_5_3/cs/src/
H A DDOTNET.h705 static void setCommentBegin(System::String* sCommentBegin);
H A DDOTNET.cpp708 std::string sCommentBegin; in setCommentBegin() local
710 sCommentBegin = tchCommentBegin; in setCommentBegin()
711 CGRuntime::setCommentBegin(sCommentBegin); in setCommentBegin()
/dports/devel/codeworker/CodeWorker4_5_3/java/org/codeworker/jni/
H A DRuntime.java58 public static native void setCommentBegin(java.lang.String sCommentBegin); in setCommentBegin() argument
/dports/devel/codeworker/CodeWorker4_5_3/java/src/
H A DJNIRuntime.h62 …d JNICALL Java_org_codeworker_jni_Runtime_setCommentBegin(JNIEnv *, jclass, jstring sCommentBegin);
H A DJNIRuntime.cpp367 std::string sCommentBegin; in Java_org_codeworker_jni_Runtime_setCommentBegin() local
369 sCommentBegin = tcCommentBegin; in Java_org_codeworker_jni_Runtime_setCommentBegin()
370 CodeWorker::CGRuntime::setCommentBegin(sCommentBegin); in Java_org_codeworker_jni_Runtime_setCommentBegin()
/dports/devel/codeworker/CodeWorker4_5_3/Generation/
H A DCGRuntime.h_194 static SEQUENCE_INTERRUPTION_LIST setCommentBegin(const std::string& sCommentBegin);