Home
last modified time | relevance | path

Searched refs:tcValue (Results 1 – 25 of 28) sorted by relevance

12

/dports/devel/codeworker/CodeWorker4_5_3/
H A DExternalValueNode.cpp36 const char* tcValue = getValue(); in getValueLength() local
37 if (tcValue == NULL) return 0; in getValueLength()
38 return strlen(tcValue); in getValueLength()
42 const char* tcValue = getValue(); in getDoubleValue() local
43 if (tcValue == NULL) return 0.0; in getDoubleValue()
44 return atof(tcValue); in getDoubleValue()
48 const char* tcValue = getValue(); in getBooleanValue() local
49 return ((tcValue != NULL) && (*tcValue != '\0')); in getBooleanValue()
53 const char* tcValue = getValue(); in getIntValue() local
54 if (tcValue == NULL) return 0; in getIntValue()
[all …]
H A DGrfSaveProject.cpp69 const char* tcValue = myNode.getValue(); in generateXMLFile() local
70 if ((tcValue != NULL) && (*tcValue != '\0')) { in generateXMLFile()
71 std::string sValue = myXMLFile.convertToXMLText(tcValue); in generateXMLFile()
121 const char* tcValue = pReference->getValue(); in generateTextFile() local
122 if ((tcValue != NULL) && (*tcValue != '\0')) { in generateTextFile()
123 std::string sValue = CGRuntime::composeCLikeString(tcValue); in generateTextFile()
128 const char* tcValue = myNode.getValue(); in generateTextFile() local
129 if ((tcValue != NULL) && (*tcValue != '\0')) { in generateTextFile()
130 std::string sValue = CGRuntime::composeCLikeString(tcValue); in generateTextFile()
162 } else if ((tcValue == NULL) || (*tcValue == '\0')) { in generateTextFile()
H A DCppParsingTree.cpp106 return (tcValue != NULL) && (*tcValue != '\0'); in getBooleanValue()
112 if (tcValue == NULL) return 0; in getIntValue()
113 return atoi(tcValue); in getIntValue()
119 if (tcValue == NULL) return 0.0; in getDoubleValue()
120 return atof(tcValue); in getDoubleValue()
124 const char* tcValue = getValue(); in getStringValue() local
125 return ((tcValue == NULL) ? "" : tcValue); in getStringValue()
139 _pInternalNode->setValue(tcValue); in setValue()
196 if (tcValue != 0) sConcatenation += tcValue; in concatenateValue()
199 _pInternalNode->setValue(tcValue); in concatenateValue()
[all …]
H A DCW4dl.h213 inline Parameter2CW(const char* tcValue) : _bValue(true) { _param._tcValue = tcValue; } in Parameter2CW() argument
453 inline void setValue(Tree* pTree, const char* tcValue) { _setValue(pTree, tcValue); } in setValue() argument
584 …inline Tree* pushItem(Tree* pArray, const char* tcValue = NULL) { return _pushItem(pArray, tcValue
597 …m(Tree* pArray, const char* tcKey, const char* tcValue = NULL) { return _insertItem(pArray, tcKey,…
H A DGrfInsertAssignment.cpp48 const char* tcValue = pVariable->getValue(); in executeInternal() local
49 if (tcValue != NULL) sValue = std::string(tcValue) + sValue; in executeInternal()
H A DDtaScriptVariable.cpp78 void onSetValue(const char* tcValue) { in onSetValue() argument
80 (*i)->onSetValue(tcValue); in onSetValue()
86 (*i)->onConcatValue(tcValue); in onConcatValue()
1008 if ((tcValue == NULL) || (*tcValue == '\0')) { in setValue()
1106 if ((tcValue != NULL) && (*tcValue != '\0')) { in concatValue()
1316 if ((tcValue != NULL) && (*tcValue != '\0')) setValue(tcValue); in copyAll()
1457 if (tcValue != NULL) { in traceValue()
1465 if (tcValue != NULL) { in traceValue()
1473 if (tcValue != NULL) { in traceValue()
1529 …if ((tcValue != NULL) && (*tcValue != '\0')) CGRuntime::traceText(" -> \"" + std::string(tcValue) … in traceObject()
[all …]
H A DGrfSetAssignment.cpp59 const char* tcValue = pVariable->getValue(); in executeInternal() local
60 if (tcValue != NULL) sValue = std::string(tcValue) + sValue; in executeInternal()
H A DHTTPRequest.cpp738 const char* tcValue = pValue->getValue(); in fillCurlSession() local
739 if (tcValue != NULL) sValue = tcValue; in fillCurlSession()
894 const char* tcValue = (*i)->getValue(); in get() local
895 if ((tcValue != NULL) && (*tcValue != '\0')) { in get()
896 char* tcGetValue = curl_escape(tcValue, (*i)->getValueLength()); in get()
930 const char* tcValue = (*i)->getValue(); in post() local
931 if ((tcValue != NULL) && (*tcValue != '\0')) { in post()
932 char* tcPostValue = curl_escape(tcValue, (*i)->getValueLength()); in post()
H A DDynPackage.cpp67 inline Parameter2CW(const char* tcValue) : _bValue(true) { _param._tcValue = tcValue; } in Parameter2CW() argument
185 void pfSetValue(Tree* pNode, const char* tcValue) { in pfSetValue() argument
186 pNode->setValue(tcValue); in pfSetValue()
255 Tree* pfPushItem(Tree* pArray, const char* tcValue) { in pfPushItem() argument
256 if (tcValue == NULL) return pArray->pushItem(""); in pfPushItem()
257 return pArray->pushItem(tcValue); in pfPushItem()
260 Tree* pfInsertItem(Tree* pArray, const char* tcKey, const char* tcValue) { in pfInsertItem() argument
262 if (tcValue != NULL) pItem->setValue(tcValue); in pfInsertItem()
398 const char* tcValue = p.getValue(); in populateFunctionWithParameterExpression() local
400 if (tcValue == NULL) pConstant = new ExprScriptConstant; in populateFunctionWithParameterExpression()
[all …]
H A DExprScriptExpression.cpp146 const char* tcValue = _pVariable->getValue(); in getValue() local
147 if (tcValue == NULL) return ""; in getValue()
148 return tcValue; in getValue()
438 const char* tcValue = _pVariable->getValue(); in getValue() local
439 if (tcValue == NULL) return ""; in getValue()
440 return tcValue; in getValue()
H A DDtaScriptVariable.h65 virtual void onSetValue(const char* tcValue) = 0;
66 virtual void onConcatValue(const char* tcValue) = 0;
220 void setValue(const char* tcValue);
229 void concatValue(const char* tcValue);
H A DCppParsingTree.h302 void setValue(const char* tcValue) const;
353 CppParsingTree_value(const char* tcValue);
H A DExprScriptVariable.cpp50 const char* tcValue = pVariable->getValue(); in getValue() local
51 if (tcValue == NULL) return ""; in getValue()
52 return tcValue; in getValue()
H A DExprScriptExpression.h136 inline void setConstant(const char* tcValue, int iLength) { _sValue.assign(tcValue, iLength); } in setConstant() argument
H A DGrfDebugExecution.cpp136 virtual void onSetValue(const char* tcValue) { onHasChanged(); } in onSetValue() argument
137 virtual void onConcatValue(const char* tcValue) { onHasChanged(); } in onConcatValue() argument
H A DScpStream.h217 ScpStream& operator <<(const char* tcValue);
/dports/multimedia/photofilmstrip/photofilmstrip-3.7.0/photofilmstrip/gui/ctrls/
H A DPnlFloatSpinCtrl.py23 parent.Add(self.tcValue, 1, border=0, flag=0)
41 self.tcValue = wx.TextCtrl(id=wxID_PNLFLOATSPINCTRLTCVALUE,
44 self.tcValue.Bind(wx.EVT_KILL_FOCUS, self.OnTextCtrlValueKillFocus,
46 self.tcValue.Bind(wx.EVT_TEXT, self.OnTextCtrlValueText,
59 self.tcValue.SetValidator(FloatValidator())
60 self.spinButtonValue.SetMinSize(wx.Size(-1, self.tcValue.GetSize()[1]))
72 self.tcValue.ChangeValue("%.1f" % value)
77 val = self.tcValue.GetValue()
85 self.tcValue.ChangeValue("%.1f" % value)
91 self.tcValue.ChangeValue("%.1f" % value)
/dports/devel/codeworker/CodeWorker4_5_3/java/src/
H A DJNIParseTree.cpp36 const char* tcValue = pObjectInstance->getName(); in Java_org_codeworker_jni_ParseTree_getName() local
37 if (tcValue == NULL) pResult = NULL; in Java_org_codeworker_jni_ParseTree_getName()
38 else pResult = pEnv->NewStringUTF(tcValue); in Java_org_codeworker_jni_ParseTree_getName()
50 const char* tcValue = pObjectInstance->getValue(); in Java_org_codeworker_jni_ParseTree_getValue() local
51 if (tcValue == NULL) pResult = NULL; in Java_org_codeworker_jni_ParseTree_getValue()
52 else pResult = pEnv->NewStringUTF(tcValue); in Java_org_codeworker_jni_ParseTree_getValue()
64 const char* tcValue = pObjectInstance->getValue(); in Java_org_codeworker_jni_ParseTree_getStringValue() local
65 if (tcValue == NULL) pResult = pEnv->NewStringUTF(""); in Java_org_codeworker_jni_ParseTree_getStringValue()
66 else pResult = pEnv->NewStringUTF(tcValue); in Java_org_codeworker_jni_ParseTree_getStringValue()
78 pObjectInstance->setValue(tcValue); in Java_org_codeworker_jni_ParseTree_setValue()
/dports/audio/tuxguitar/tuxguitar-src-1.2/TuxGuitar-jack/src/org/herac/tuxguitar/jack/sequencer/
H A DJackTickController.java76 double tcValue = tc[1]; in frameToTick() local
81 tempo = tcValue; in frameToTick()
106 double tcValue = tc[1]; in tickToFrame() local
111 tempo = tcValue; in tickToFrame()
/dports/devel/codeworker/CodeWorker4_5_3/WebSite/repository/
H A DChartDirector.cwt53 int string2enum(const char* tcValue) {
54 if ((strncmp(tcValue, "Chart::", 7) == 0) || (strncmp(tcValue, "CHART::", 7) == 0)) {
55 return string2enum(tcValue + 7);
73 int string2int(const char* tcValue) {
75 char* tcNext = strchr(tcValue, '+');
77 std::string sExpr = tcValue;
81 if ((tcValue[0] == '0') && (tcValue[1] == 'x')) {
82 char* u = (char*) (tcValue + 2);
91 } else if (tcValue[0] == 'C') {
92 iResult = string2enum(tcValue);
[all …]
/dports/devel/codeworker/CodeWorker4_5_3/Generation/
H A DCW4dl.h_213 inline Parameter2CW(const char* tcValue) : _bValue(true) { _param._tcValue = tcValue; }
453 inline void setValue(Tree* pTree, const char* tcValue) { _setValue(pTree, tcValue); }
584 …inline Tree* pushItem(Tree* pArray, const char* tcValue = NULL) { return _pushItem(pArray, tcValue
597 …m(Tree* pArray, const char* tcKey, const char* tcValue = NULL) { return _insertItem(pArray, tcKey,…
H A DCppParsingTree.h_302 void setValue(const char* tcValue) const;
350 CppParsingTree_value(const char* tcValue);
/dports/devel/codeworker/CodeWorker4_5_3/java/org/codeworker/
H A DScpStream.java1576 public org.codeworker.ScpStream writeOperator(char[] tcValue) { in writeOperator() argument
1577 if ((tcValue == null)) in writeOperator()
1580 writeText(tcValue); in writeOperator()
H A DScpStream.java.todo1576 public org.codeworker.ScpStream writeOperator(char[] tcValue) {
1577 if ((tcValue == null))
1580 writeText(tcValue);
/dports/devel/codeworker/CodeWorker4_5_3/cs/src/
H A DDOTNET.cpp82 const char* tcValue = cppInstance_->getName(); in get_name() local
83 if (tcValue == NULL) return NULL; in get_name()
84 return CW_CHARARRAY_TO_STRING(tcValue); in get_name()
88 const char* tcValue = cppInstance_->getValue(); in get_text() local
89 if (tcValue == NULL) return NULL; in get_text()
90 return CW_CHARARRAY_TO_STRING(tcValue); in get_text()

12