Home
last modified time | relevance | path

Searched refs:toChain (Results 1 – 25 of 157) sorted by relevance

1234567

/dports/sysutils/kubectl/kubernetes-1.22.2/pkg/proxy/util/iptables/
H A Dtraffic.go36 JumpIfLocal(args []string, toChain string) []string
40 JumpIfNotLocal(args []string, toChain string) []string
54 func (n *noOpLocalDetector) JumpIfLocal(args []string, toChain string) []string {
58 func (n *noOpLocalDetector) JumpIfNotLocal(args []string, toChain string) []string {
83 func (d *detectLocalByCIDR) JumpIfLocal(args []string, toChain string) []string {
84 line := append(args, "-s", d.cidr, "-j", toChain)
89 func (d *detectLocalByCIDR) JumpIfNotLocal(args []string, toChain string) []string {
90 line := append(args, "!", "-s", d.cidr, "-j", toChain)
/dports/devel/lfcbase/lfcbase-1.16.2/basecheck/
H A DBigDecTest.cc33 if ( d01.toChain() == Chain("0.97") ) in main()
41 if ( d02.toChain() == Chain("0.0") ) in main()
49 if ( d03.toChain() == Chain("4.45") ) in main()
56 if ( d04.toChain() == Chain("4.45") ) in main()
63 if ( d05.toChain() == Chain("0.0678") ) in main()
107 if ( ddiv.toChain() == Chain("0.0") ) in main()
123 if ( ddivn.toChain() == Chain("98.858227") ) in main()
134 if ( dsub.toChain() == Chain("59.86") ) in main()
/dports/databases/cego/cego-2.47.11/src/
H A DCegoProcCond.cc90 Chain CegoProcCond::toChain() const in toChain() function in CegoProcCond
98 s = _pCond->toChain() + " and " + _pPred->toChain(); in toChain()
103 s = _pCond->toChain() + " or " + _pPred->toChain(); in toChain()
108 s = _pPred->toChain(); in toChain()
H A DCegoAttrComp.cc743 s += Chain("#btw#") + _fv.toChain() + Chain("#") + _fv2.toChain(); in getId()
746 s += Chain("#btw#") + _fv.toChain() + Chain("#") + _attrDesc2.toChain(); in getId()
749 s += Chain("#btw#") + _attrDesc.toChain() + Chain("#") + _fv2.toChain(); in getId()
752 s += Chain("#btw#") + _attrDesc.toChain() + Chain("#") + _attrDesc2.toChain(); in getId()
788 s += _fv.toChain(); in getId()
793 s += _fv.toChain(); in getId()
813 s += Chain(" between ") + _fv.toChain() + Chain(" and ") + _fv2.toChain(); in toChain()
816 s += Chain(" between ") + _fv.toChain() + Chain(" and ") + _attrDesc2.toChain(); in toChain()
819 s += Chain(" between ") + _attrDesc.toChain() + Chain(" and ") + _fv2.toChain(); in toChain()
858 s += _fv.toChain(); in toChain()
[all …]
H A DCegoLogReader.cc152 cout << to.toChain(); in main()
166 cout << vo.toChain(); in main()
173 cout << po.toChain(); in main()
180 cout << ko.toChain(); in main()
227 cout << to.toChain(); in main()
242 cout << vo.toChain(); in main()
249 cout << po.toChain(); in main()
256 cout << ko.toChain(); in main()
380 cout << "where " << pPred->toChain() << endl; in main()
409 cout << "Set " << pF->getAttrName() << " = " << (*pExpr)->toChain() << endl; in main()
[all …]
H A DCegoProcPred.cc172 Chain CegoProcPred::toChain() const in toChain() function in CegoProcPred
177 s = _pCond->toChain(); in toChain()
181 s = _pExpr1->toChain(); in toChain()
217 s += _pExpr2->toChain(); in toChain()
221 s = _pExpr1->toChain(); in toChain()
241 s << e.toChain(); in operator <<()
H A DCegoJoinObject.cc274 Chain CegoJoinObject::toChain() const in toChain() function in CegoJoinObject
282 s += _pLeftObject->toChain() + Chain(" inner join ") + _pRightObject->toChain(); in toChain()
284 s += Chain(" on ") + _pPred->toChain(); in toChain()
289 s += _pLeftObject->toChain() + Chain(" left outer join ") + _pRightObject->toChain(); in toChain()
291 s += Chain(" on ") + _pPred->toChain(); in toChain()
296 s += _pLeftObject->toChain() + Chain(" right outer join ") + _pRightObject->toChain(); in toChain()
298 s += Chain(" on ") + _pPred->toChain(); in toChain()
H A DCegoProcBlockStmt.cc52 Chain CegoProcBlockStmt::toChain(const Chain& indent) const in toChain() function in CegoProcBlockStmt
56 s += _pBlock->toChain(indent + Chain(DEFAULTINDENT)); in toChain()
61 s += indent + Chain("exception when ") + (*pException)->toChain() + Chain(" then \n"); in toChain()
62 s += (*pException)->getBlock()->toChain(indent + Chain(DEFAULTINDENT)); in toChain()
H A DCegoProcIfStmt.cc90 Chain CegoProcIfStmt::toChain(const Chain& indent) const in toChain() function in CegoProcIfStmt
101 s += (*pCond)->toChain(); in toChain()
103 s += (*pBlock)->toChain(indent + Chain(DEFAULTINDENT)); in toChain()
115 s += (*pBlock)->toChain(indent + Chain(DEFAULTINDENT)); in toChain()
H A DCegoAggregation.cc317 Chain CegoAggregation::toChain() const in toChain() function in CegoAggregation
323 s = Chain("min(") + _pExpr->toChain() + Chain(")"); in toChain()
326 s = Chain("max(") + _pExpr->toChain() + Chain(")"); in toChain()
329 s = Chain("avg(") + _pExpr->toChain() + Chain(")"); in toChain()
332 s = Chain("sum(") + _pExpr->toChain() + Chain(")"); in toChain()
342 s = distOpt + Chain("count(") + _pExpr->toChain() + Chain(")"); in toChain()
358 s << ag.toChain(); in operator <<()
H A DCegoProcThrowStmt.cc49 _pBlock->setExceptionMsg(fv.toChain()); in execute()
53 Chain CegoProcThrowStmt::toChain(const Chain& indent) const in toChain() function in CegoProcThrowStmt
56 s = indent + Chain("throw ") + _pExpr->toChain(); in toChain()
H A DCegoFactor.cc1093 s = fv.toChain(); in getId()
1103 s = _pFetch->toChain(); in getId()
1130 Chain CegoFactor::toChain(const Chain& indent) const in toChain() function in CegoFactor
1136 s = _fv.toChain(); in toChain()
1139 s = _pAttrDesc->toChain(); in toChain()
1145 s = Chain("(") + _pExpr->toChain(indent) + Chain(")"); in toChain()
1148 s = _pFetch->toChain(); in toChain()
1151 s = _pAggr->toChain(); in toChain()
1154 s = _pFunction->toChain(); in toChain()
1160 s = _pCaseCond->toChain(); in toChain()
[all …]
H A DCegoProcWhileStmt.cc82 Chain CegoProcWhileStmt::toChain(const Chain& indent) const in toChain() function in CegoProcWhileStmt
85 s = indent + Chain("while ") + _pCond->toChain() + Chain("\n") + indent + Chain("begin\n"); in toChain()
86 s += _pBlock->toChain(indent + Chain(DEFAULTINDENT)); in toChain()
H A DCegoExpr.cc368 f = CegoField( Chain("EXPR"), Chain("EXPR"), toChain(), VARCHAR_TYPE, 20 ); in evalField()
491 Chain CegoExpr::toChain(const Chain& indent) const in toChain() function in CegoExpr
497 s = _pExpr->toChain(indent) + " + " + _pTerm->toChain(indent); in toChain()
500 s = _pExpr->toChain(indent) + " - " + _pTerm->toChain(indent); in toChain()
503 s = _pExpr->toChain(indent) + " | " + _pTerm->toChain(indent); in toChain()
506 s = _pTerm->toChain(indent); in toChain()
715 s << e.toChain(); in operator <<()
H A DCegoPredDesc.cc1436 s = _pExpr1->toChain(indent); in toChain()
1469 s = _pExpr1->toChain(indent); in toChain()
1487 s = _pExpr1->toChain(indent); in toChain()
1494 s = _pExpr1->toChain(indent); in toChain()
1501 s = _pExpr1->toChain(indent); in toChain()
1507 s = _pExpr1->toChain(indent); in toChain()
1519 s = _pExpr1->toChain(indent); in toChain()
1531 s = _pExpr1->toChain(indent); in toChain()
1543 s = _pExpr1->toChain(indent); in toChain()
1549 s += (*pExpr)->toChain(); in toChain()
[all …]
H A DCegoProcAssignStmt.cc98 Chain CegoProcAssignStmt::toChain(const Chain& indent) const in toChain() function in CegoProcAssignStmt
106 s = indent + _pExpr->toChain(indent); in toChain()
115 s = indent + prefix + _pExpr->toChain(indent + addIndent); in toChain()
H A DCegoTrigger.cc122 return _pBlock->toChain(); in getTriggerText()
125 Chain CegoTrigger::toChain() const in toChain() function in CegoTrigger
156 s += _pBlock->toChain(indent); in toChain()
H A DCegoCheckObject.cc144 Chain CegoCheckObject::toChain() const in toChain() function in CegoCheckObject
147 s = CegoObject::toChain(); in toChain()
150 s += Chain("PredDesc: ") + _pPredDesc->toChain(); in toChain()
225 s += _pPredDesc->toChain(); in getFormatted()
H A DCegoHavingDesc.cc215 Chain CegoHavingDesc::toChain(const Chain& indent) const in toChain() function in CegoHavingDesc
219 s += indent + _pAggExpr->toChain(); in toChain()
243 s += _pExpr->toChain(); in toChain()
260 s << p.toChain(); in operator <<()
H A DCegoProcBlock.cc214 (*pStmt)->toChain().replaceAll(Chain("\n"), Chain(" "), plainStmt); in execute()
282 Chain CegoProcBlock::toChain(const Chain& indent) const in toChain() function in CegoProcBlock
350 s += (*pStmt)->toChain(indent) + Chain(";\n"); in toChain()
357 s += Chain("exception when ") + (*pException)->toChain() + Chain("\nthen\n"); in toChain()
358 s += (*pException)->getBlock()->toChain(indent + Chain(DEFAULTINDENT)); in toChain()
H A DCegoReturnVar.cc53 Chain CegoReturnVar::toChain() const in toChain() function in CegoReturnVar
56 s = Chain(":") + _varName + " = " + _pExpr->toChain(); in toChain()
H A DCegoProcReturnStmt.cc57 Chain CegoProcReturnStmt::toChain(const Chain& indent) const in toChain() function in CegoProcReturnStmt
62 s += Chain(" ") + _pExpr->toChain(); in toChain()
H A DCegoProcCursorCreateStmt.cc49 Chain CegoProcCursorCreateStmt::toChain(const Chain& indent) const in toChain() function in CegoProcCursorCreateStmt
56 s += indent + _pSelect->toChain(indent + Chain(DEFAULTINDENT)); in toChain()
/dports/devel/lfcbase/lfcbase-1.16.2/src/
H A DBigDecimal.cc160 return BigDecimal(i3.toChain(), maxScale); in add()
194 return BigDecimal(i3.toChain(), maxScale); in sub()
213 return BigDecimal(i3.toChain(), _scale + d._scale); in mul()
266 Chain v = i3.toChain(); in div()
267 if ( i3.toChain().length()-1 < maxScale ) in div()
269 int c = 1 + maxScale - ( i3.toChain().length() -1 ); in div()
290 Chain BigDecimal::toChain() const in toChain() function in BigDecimal
429 cout << d.toChain(); in operator <<()
/dports/lang/elm/compiler-0.19.1/compiler/src/Optimize/
H A DCase.hs73 toChain path test successTree failureTree
76 toChain path test successTree failureTree
93 toChain :: DT.Path -> DT.Test -> DT.DecisionTree -> DT.DecisionTree -> Opt.Decider Int
94 toChain path test successTree failureTree = function

1234567