Home
last modified time | relevance | path

Searched refs:truePart (Results 1 – 10 of 10) sorted by relevance

/dports/java/eclipse/eclipse.platform.releng.aggregator-R4_16/eclipse.jdt.ui/org.eclipse.jdt.core.manipulation/core extension/org/eclipse/jdt/internal/corext/refactoring/code/flow/
H A DConditionalFlowInfo.java31 public void merge(FlowInfo truePart, FlowInfo falsePart, FlowContext context) { in merge() argument
32 if (truePart == null && falsePart == null) in merge()
36 if (truePart != null) in merge()
37 cond.mergeAccessMode(truePart, context); in merge()
42 if (truePart == null || falsePart == null) in merge()
/dports/lang/mono/mono-5.10.1.57/external/corefx/src/Microsoft.VisualBasic/src/Microsoft/VisualBasic/
H A DInteraction.vb9 …Friend Function IIf(Of T)(ByVal condition As Boolean, ByVal truePart As T, ByVal falsePart As T) A…
11 Return truePart
/dports/graphics/yacreader/yacreader-9.8.2/third_party/QtWebApp/templateengine/
H A Dtemplate.cpp77 QString truePart=mid(start+startTag.length(), ellse-start-startTag.length()); in setCondition() local
78 replace(start, end-start+endTag.length(), truePart); in setCondition()
90 QString truePart=mid(start+startTag.length(), end-start-startTag.length()); in setCondition() local
91 replace(start, end-start+endTag.length(), truePart); in setCondition()
126 QString truePart=mid(ellse+elseTag.length(), end-ellse-elseTag.length()); in setCondition() local
127 replace(start, end-start+endTag.length(), truePart); in setCondition()
/dports/astro/stellarium/stellarium-0.21.3/plugins/RemoteControl/src/qtwebapp/templateengine/
H A Dtemplate.cpp76 QString truePart=mid(start+startTag.length(), ellse-start-startTag.length()); in setCondition() local
77 replace(start, end-start+endTag.length(), truePart); in setCondition()
89 QString truePart=mid(start+startTag.length(), end-start-startTag.length()); in setCondition() local
90 replace(start, end-start+endTag.length(), truePart); in setCondition()
125 QString truePart=mid(ellse+elseTag.length(), end-ellse-elseTag.length()); in setCondition() local
126 replace(start, end-start+endTag.length(), truePart); in setCondition()
/dports/finance/hs-hledger-ui/hledger-ui-1.19/_cabal_deps/vty-5.33/src/Data/Terminfo/
H A DParse.hs179 truePart <- manyExpr $ choice [ try $ lookAhead conditionalEndParser
185 return ( truePart, falsePart )
/dports/devel/hs-git-brunch/git-brunch-1.5.1.0/_cabal_deps/vty-5.33/src/Data/Terminfo/
H A DParse.hs179 truePart <- manyExpr $ choice [ try $ lookAhead conditionalEndParser
185 return ( truePart, falsePart )
/dports/net-im/matterhorn/matterhorn-50200.13.0/_cabal_deps/vty-5.32/src/Data/Terminfo/
H A DParse.hs180 truePart <- manyExpr $ choice [ try $ lookAhead conditionalEndParser
186 return ( truePart, falsePart )
/dports/misc/hs-hascard/hascard-0.3.0.1/_cabal_deps/vty-5.30/src/Data/Terminfo/
H A DParse.hs180 truePart <- manyExpr $ choice [ try $ lookAhead conditionalEndParser
186 return ( truePart, falsePart )
/dports/lang/smalltalk/smalltalk-3.2.5/examples/
H A DLisp.st1904 | predicate then list truePart falsePart bool result |
1908 truePart := LispNil null.
1914 ifTrue: [truePart := LispCons head: each tail: truePart]
1917 truePart := truePart reverse.
1923 ifFalse: [truePart do: [:each | result := self evaluate: each]].
/dports/devel/py-buildbot/buildbot-3.4.1/buildbot/process/
H A Dproperties.py752 truePart, falsePart = self._splitBalancedParen(delim, repl[1:])
758 hasKey=Interpolate(truePart, **self.kwargs),