Home
last modified time | relevance | path

Searched refs:nextC (Results 1 – 25 of 239) sorted by relevance

12345678910

/dports/java/eclipse/eclipse.platform.releng.aggregator-R4_16/eclipse.jdt.ui/org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/propertiesfileeditor/
H A DPropertiesFileEscapes.java260 char nextC= text.charAt(i + 1); in containsInvalidEscapeSequence() local
261 switch (nextC) { in containsInvalidEscapeSequence()
299 char nextC= text.charAt(i + 1); in containsUnescapedBackslash() local
300 switch (nextC) { in containsUnescapedBackslash()
330 char nextC= text.charAt(i + 1); in containsEscapedBackslashes() local
331 switch (nextC) { in containsEscapedBackslashes()
/dports/graphics/urho3d/Urho3D-1.7.1/Source/Urho3D/Graphics/
H A DRibbonTrail.cpp593 unsigned nextC = endColor_.Lerp(startColor_, nextFactor).ToUInt(); in UpdateVertexBuffer() local
611 ((unsigned&)dest[13]) = nextC; in UpdateVertexBuffer()
642 ((unsigned&)dest[13]) = nextC; in UpdateVertexBuffer()
668 ((unsigned&)dest[13]) = nextC; in UpdateVertexBuffer()
697 unsigned nextC = endColor_.Lerp(startColor_, nextFactor).ToUInt(); in UpdateVertexBuffer() local
724 ((unsigned&)dest[19]) = nextC; in UpdateVertexBuffer()
759 ((unsigned&)dest[19]) = nextC; in UpdateVertexBuffer()
791 ((unsigned&)dest[19]) = nextC; in UpdateVertexBuffer()
/dports/www/chromium-legacy/chromium-88.0.4324.182/chrome/test/android/javatests/src/org/chromium/chrome/test/pagecontroller/utils/
H A DUiAutomatorUtils.java394 char nextC = xmlLine.charAt(i + 1); in formatXml() local
396 if (nextC == '/') { in formatXml()
401 if (nextC != '/') { in formatXml()
408 } else if (c == '/' && nextC == '>') { in formatXml()
/dports/misc/py-mxnet/incubator-mxnet-1.9.0/scala-package/examples/src/main/scala/org/apache/mxnetexamples/rnn/
H A DLstm.scala49 val nextC = (forgetGate * prevState.c) + (ingate * inTransform) constant
50 val nextH = outGate * Symbol.api.Activation(data = Some(nextC), "tanh")
51 LSTMState(c = nextC, h = nextH)
/dports/misc/mxnet/incubator-mxnet-1.9.0/scala-package/examples/src/main/scala/org/apache/mxnetexamples/rnn/
H A DLstm.scala49 val nextC = (forgetGate * prevState.c) + (ingate * inTransform) constant
50 val nextH = outGate * Symbol.api.Activation(data = Some(nextC), "tanh")
51 LSTMState(c = nextC, h = nextH)
/dports/databases/sqlite2/sqlite-2.8.17/src/
H A Ddate.c95 int nextC; in getDigits() local
103 nextC = va_arg(ap, int); in getDigits()
113 if( val<min || val>max || (nextC!=0 && nextC!=*zDate) ){ in getDigits()
119 }while( nextC ); in getDigits()
/dports/databases/p5-DBD-SQLite2/DBD-SQLite2-0.38/
H A Ddate.c95 int nextC; in getDigits() local
103 nextC = va_arg(ap, int); in getDigits()
113 if( val<min || val>max || (nextC!=0 && nextC!=*zDate) ){ in getDigits()
119 }while( nextC ); in getDigits()
/dports/www/firefox-esr/firefox-91.8.0/gfx/skia/skia/src/pathops/
H A DSkOpSpan.cpp268 SkOpPtT* nextC = compare->next(); in merge() local
269 if (nextC->span() == remainder->span() && nextC->fT == remainder->fT) { in merge()
272 compare = nextC; in merge()
/dports/lang/spidermonkey78/firefox-78.9.0/gfx/skia/skia/src/pathops/
H A DSkOpSpan.cpp268 SkOpPtT* nextC = compare->next(); in merge() local
269 if (nextC->span() == remainder->span() && nextC->fT == remainder->fT) { in merge()
272 compare = nextC; in merge()
/dports/www/qt5-webengine/qtwebengine-everywhere-src-5.15.2/src/3rdparty/chromium/third_party/skia/src/pathops/
H A DSkOpSpan.cpp268 SkOpPtT* nextC = compare->next(); in merge() local
269 if (nextC->span() == remainder->span() && nextC->fT == remainder->fT) { in merge()
272 compare = nextC; in merge()
/dports/www/firefox/firefox-99.0/gfx/skia/skia/src/pathops/
H A DSkOpSpan.cpp268 SkOpPtT* nextC = compare->next(); in merge() local
269 if (nextC->span() == remainder->span() && nextC->fT == remainder->fT) { in merge()
272 compare = nextC; in merge()
/dports/mail/thunderbird/thunderbird-91.8.0/gfx/skia/skia/src/pathops/
H A DSkOpSpan.cpp268 SkOpPtT* nextC = compare->next(); in merge() local
269 if (nextC->span() == remainder->span() && nextC->fT == remainder->fT) { in merge()
272 compare = nextC; in merge()
/dports/lang/spidermonkey60/firefox-60.9.0/gfx/skia/skia/src/pathops/
H A DSkOpSpan.cpp259 SkOpPtT* nextC = compare->next(); in merge() local
260 if (nextC->span() == remainder->span() && nextC->fT == remainder->fT) { in merge()
263 compare = nextC; in merge()
/dports/math/speedcrunch/heldercorreia-speedcrunch-c0fc9c68d292/src/gui/
H A Dsyntaxhighlighter.cpp324 ushort nextC = text[i+1].unicode(); in groupDigits() local
325 if ((nextC < 128 && (charType[nextC] & allowedChars)) in groupDigits()
326 || Evaluator::isSeparatorChar(nextC)) in groupDigits()
/dports/www/firefox-legacy/firefox-52.8.0esr/gfx/skia/skia/src/pathops/
H A DSkOpSpan.cpp259 SkOpPtT* nextC = compare->next(); in merge() local
260 if (nextC->span() == remainder->span() && nextC->fT == remainder->fT) { in merge()
263 compare = nextC; in merge()
/dports/www/chromium-legacy/chromium-88.0.4324.182/third_party/skia/src/pathops/
H A DSkOpSpan.cpp268 SkOpPtT* nextC = compare->next(); in merge() local
269 if (nextC->span() == remainder->span() && nextC->fT == remainder->fT) { in merge()
272 compare = nextC; in merge()
/dports/devel/hadoop/hadoop-1.2.1/src/contrib/index/src/java/org/apache/hadoop/contrib/index/example/
H A DLineDocRecordReader.java216 byte nextC = (byte) in.read(); in readData()
217 if (nextC != EOL || c == delimiter) { in readData()
/dports/databases/qt5-sqldrivers-sqlite2/kde-qtbase-5.15.2p263/src/widgets/kernel/
H A Dqgridlayout.cpp147 inline void getNextPos(int &row, int &col) { row = nextR; col = nextC; } in getNextPos()
228 int nextC; member in QGridLayoutPrivate
344 nextR = nextC = 0; in QGridLayoutPrivate()
534 if (col > nextC || (col == nextC && row >= nextR)) { in setNextPosAfter()
536 nextC = col; in setNextPosAfter()
539 nextC++; in setNextPosAfter()
543 if (row > nextR || (row == nextR && col >= nextC)) { in setNextPosAfter()
545 nextC = col + 1; in setNextPosAfter()
546 if (nextC >= cc) { in setNextPosAfter()
547 nextC = 0; in setNextPosAfter()
/dports/databases/qt5-sqldrivers-sqlite3/kde-qtbase-5.15.2p263/src/widgets/kernel/
H A Dqgridlayout.cpp147 inline void getNextPos(int &row, int &col) { row = nextR; col = nextC; } in getNextPos()
228 int nextC; member in QGridLayoutPrivate
344 nextR = nextC = 0; in QGridLayoutPrivate()
534 if (col > nextC || (col == nextC && row >= nextR)) { in setNextPosAfter()
536 nextC = col; in setNextPosAfter()
539 nextC++; in setNextPosAfter()
543 if (row > nextR || (row == nextR && col >= nextC)) { in setNextPosAfter()
545 nextC = col + 1; in setNextPosAfter()
546 if (nextC >= cc) { in setNextPosAfter()
547 nextC = 0; in setNextPosAfter()
/dports/databases/qt5-sqldrivers-tds/kde-qtbase-5.15.2p263/src/widgets/kernel/
H A Dqgridlayout.cpp147 inline void getNextPos(int &row, int &col) { row = nextR; col = nextC; } in getNextPos()
228 int nextC; member in QGridLayoutPrivate
344 nextR = nextC = 0; in QGridLayoutPrivate()
534 if (col > nextC || (col == nextC && row >= nextR)) { in setNextPosAfter()
536 nextC = col; in setNextPosAfter()
539 nextC++; in setNextPosAfter()
543 if (row > nextR || (row == nextR && col >= nextC)) { in setNextPosAfter()
545 nextC = col + 1; in setNextPosAfter()
546 if (nextC >= cc) { in setNextPosAfter()
547 nextC = 0; in setNextPosAfter()
/dports/converters/wkhtmltopdf/qt-5db36ec/src/gui/kernel/
H A Dqgridlayout.cpp148 inline void getNextPos(int &row, int &col) { row = nextR; col = nextC; } in getNextPos()
217 int nextC; member in QGridLayoutPrivate
333 nextR = nextC = 0; in QGridLayoutPrivate()
523 if (col > nextC || (col == nextC && row >= nextR)) { in setNextPosAfter()
525 nextC = col; in setNextPosAfter()
528 nextC++; in setNextPosAfter()
532 if (row > nextR || (row == nextR && col >= nextC)) { in setNextPosAfter()
534 nextC = col + 1; in setNextPosAfter()
535 if (nextC >= cc) { in setNextPosAfter()
536 nextC = 0; in setNextPosAfter()
/dports/textproc/qt5-xml/kde-qtbase-5.15.2p263/src/widgets/kernel/
H A Dqgridlayout.cpp147 inline void getNextPos(int &row, int &col) { row = nextR; col = nextC; } in getNextPos()
228 int nextC; member in QGridLayoutPrivate
344 nextR = nextC = 0; in QGridLayoutPrivate()
534 if (col > nextC || (col == nextC && row >= nextR)) { in setNextPosAfter()
536 nextC = col; in setNextPosAfter()
539 nextC++; in setNextPosAfter()
543 if (row > nextR || (row == nextR && col >= nextC)) { in setNextPosAfter()
545 nextC = col + 1; in setNextPosAfter()
546 if (nextC >= cc) { in setNextPosAfter()
547 nextC = 0; in setNextPosAfter()
/dports/databases/qt5-sqldrivers-mysql/kde-qtbase-5.15.2p263/src/widgets/kernel/
H A Dqgridlayout.cpp147 inline void getNextPos(int &row, int &col) { row = nextR; col = nextC; } in getNextPos()
228 int nextC; member in QGridLayoutPrivate
344 nextR = nextC = 0; in QGridLayoutPrivate()
534 if (col > nextC || (col == nextC && row >= nextR)) { in setNextPosAfter()
536 nextC = col; in setNextPosAfter()
539 nextC++; in setNextPosAfter()
543 if (row > nextR || (row == nextR && col >= nextC)) { in setNextPosAfter()
545 nextC = col + 1; in setNextPosAfter()
546 if (nextC >= cc) { in setNextPosAfter()
547 nextC = 0; in setNextPosAfter()
/dports/databases/qt5-sqldrivers-ibase/kde-qtbase-5.15.2p263/src/widgets/kernel/
H A Dqgridlayout.cpp147 inline void getNextPos(int &row, int &col) { row = nextR; col = nextC; } in getNextPos()
228 int nextC; member in QGridLayoutPrivate
344 nextR = nextC = 0; in QGridLayoutPrivate()
534 if (col > nextC || (col == nextC && row >= nextR)) { in setNextPosAfter()
536 nextC = col; in setNextPosAfter()
539 nextC++; in setNextPosAfter()
543 if (row > nextR || (row == nextR && col >= nextC)) { in setNextPosAfter()
545 nextC = col + 1; in setNextPosAfter()
546 if (nextC >= cc) { in setNextPosAfter()
547 nextC = 0; in setNextPosAfter()
/dports/databases/qt5-sql/kde-qtbase-5.15.2p263/src/widgets/kernel/
H A Dqgridlayout.cpp147 inline void getNextPos(int &row, int &col) { row = nextR; col = nextC; } in getNextPos()
228 int nextC; member in QGridLayoutPrivate
344 nextR = nextC = 0; in QGridLayoutPrivate()
534 if (col > nextC || (col == nextC && row >= nextR)) { in setNextPosAfter()
536 nextC = col; in setNextPosAfter()
539 nextC++; in setNextPosAfter()
543 if (row > nextR || (row == nextR && col >= nextC)) { in setNextPosAfter()
545 nextC = col + 1; in setNextPosAfter()
546 if (nextC >= cc) { in setNextPosAfter()
547 nextC = 0; in setNextPosAfter()

12345678910