Home
last modified time | relevance | path

Searched refs:actionLine (Results 1 – 16 of 16) sorted by relevance

/dports/math/cgal/CGAL-5.3/demo/Arrangement_on_surface_2/
H A DArrangementDemoWindow.cpp92 this->inputTypeGroup->addAction(this->ui->actionLine); in setupUi()
197 this->ui->actionLine->setVisible(false); in hideInsertMethods()
198 this->ui->actionLine->setChecked(false); in hideInsertMethods()
223 this->ui->actionLine->setVisible(true); in showInsertMethods()
237 this->ui->actionLine->setVisible(true); in showInsertMethods()
265 else if (a == this->ui->actionLine) in updateInputType()
/dports/devel/qtcreator/qt-creator-opensource-src-5.0.3/src/tools/icons/
H A Dexport.py127 actionLine = "; ".join(actions) + "\n"
130 inkscapeProcess.communicate(input=actionLine.encode())
/dports/lang/gcc12-devel/gcc-12-20211205/libgo/go/text/template/parse/
H A Dparse.go33 actionLine int // line of left delim starting action member
194 if t.actionLine != 0 && t.actionLine != token.line {
195 extra = fmt.Sprintf(" in action started at %s:%d", t.ParseName, t.actionLine)
365 t.actionLine = token.line
377 t.actionLine = 0
/dports/lang/go-devel/go-becaeea1199b875bc24800fa88f2f4fea119bf78/src/text/template/parse/
H A Dparse.go33 actionLine int // line of left delim starting action member
194 if t.actionLine != 0 && t.actionLine != token.line {
195 extra = fmt.Sprintf(" in action started at %s:%d", t.ParseName, t.actionLine)
367 t.actionLine = token.line
379 t.actionLine = 0
/dports/lang/gcc11-devel/gcc-11-20211009/libgo/go/text/template/parse/
H A Dparse.go33 actionLine int // line of left delim starting action member
193 if t.actionLine != 0 && t.actionLine != token.line {
194 extra = fmt.Sprintf(" in action started at %s:%d", t.ParseName, t.actionLine)
364 t.actionLine = token.line
376 t.actionLine = 0
/dports/www/gohugo/hugo-0.91.2/tpl/internal/go_templates/texttemplate/parse/
H A Dparse.go33 actionLine int // line of left delim starting action member
193 if t.actionLine != 0 && t.actionLine != token.line {
194 extra = fmt.Sprintf(" in action started at %s:%d", t.ParseName, t.actionLine)
364 t.actionLine = token.line
376 t.actionLine = 0
/dports/lang/gcc11/gcc-11.2.0/libgo/go/text/template/parse/
H A Dparse.go33 actionLine int // line of left delim starting action member
193 if t.actionLine != 0 && t.actionLine != token.line {
194 extra = fmt.Sprintf(" in action started at %s:%d", t.ParseName, t.actionLine)
364 t.actionLine = token.line
376 t.actionLine = 0
/dports/misc/cxx_atomics_pic/gcc-11.2.0/libgo/go/text/template/parse/
H A Dparse.go33 actionLine int // line of left delim starting action member
193 if t.actionLine != 0 && t.actionLine != token.line {
194 extra = fmt.Sprintf(" in action started at %s:%d", t.ParseName, t.actionLine)
364 t.actionLine = token.line
376 t.actionLine = 0
/dports/cad/ldview/ldview-4.4/LDLib/
H A DLDModelParser.h138 int actualColorNumber(LDLActionLine *actionLine, int activeColorNumber);
140 bool actionLineIsActive(LDLActionLine *actionLine);
H A DLDModelParser.cpp939 bool LDModelParser::actionLineIsActive(LDLActionLine *actionLine) in actionLineIsActive() argument
944 return !actionLine->isTexmapFallback(); in actionLineIsActive()
949 return actionLine->getTexmapFilename().size() == 0; in actionLineIsActive()
1284 LDLActionLine *actionLine, in actualColorNumber() argument
1287 int colorNumber = actionLine->getColorNumber(); in actualColorNumber()
1288 LDLModel *model = actionLine->getParentModel(); in actualColorNumber()
H A DLDrawModelViewer.cpp5364 LDLActionLine *actionLine = (LDLActionLine *)fileLine; in resetColors() local
5366 if (actionLine->getColorNumber() != 24) in resetColors()
5368 actionLine->setColorNumber(16); in resetColors()
5370 if (actionLine->getLineType() == LDLLineTypeModel) in resetColors()
5372 resetColors(((LDLModelLine *)actionLine)->getLowResModel()); in resetColors()
5373 resetColors(((LDLModelLine *)actionLine)->getModel(true)); in resetColors()
H A DLDrawModelViewer.h686 void resetColors(LDLFileLine *actionLine);
/dports/cad/ldview/ldview-4.4/LDLoader/
H A DLDLModel.cpp1713 LDLActionLine *actionLine = (LDLActionLine *)fileLine; in parse() local
1716 actionLine->setBFCSettings(m_flags.bfcCertify, m_flags.bfcClip, in parse()
1720 actionLine->setBBoxIgnore(true); in parse()
1731 actionLine->setTexmapFallback(); in parse()
1735 actionLine->setTexmapSettings(m_texmapType, in parse()
2255 LDLActionLine *actionLine = (LDLActionLine *)fileLine; in scanPoints() local
2258 if (!watchBBoxIgnore || !actionLine->getBBoxIgnore()) in scanPoints()
2260 actionLine->scanPoints(scanner, scanPointCallback, in scanPoints()
/dports/devel/antlr/antlr-2.7.7/antlr/
H A Dantlr.g982 {int actionLine=getLine(); int actionColumn = getColumn(); }
993 t.setLine(actionLine); // set action line to start
H A DANTLRLexer.java1109 int actionLine=getLine(); int actionColumn = getColumn(); in mACTION() local
1129 t.setLine(actionLine); // set action line to start in mACTION()
/dports/games/spring/spring_98.0/rts/Game/
H A DUnsyncedGameCommands.cpp119 const string actionLine = command.substr(1); // strip the '/' in ProcessCommandText() local
121 Action fakeAction(actionLine); in ProcessCommandText()