Home
last modified time | relevance | path

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

/third_party/icu/icu4j/main/classes/core/src/com/ibm/icu/lang/
DCharacterProperties.java71 int nextValue = UCharacter.getIntPropertyValue(c, property); in makeMap() local
72 if (value != nextValue) { in makeMap()
77 value = nextValue; in makeMap()
/third_party/icu/ohos_icu4j/src/main/java/ohos/global/icu/lang/
DCharacterProperties.java72 int nextValue = UCharacter.getIntPropertyValue(c, property); in makeMap() local
73 if (value != nextValue) { in makeMap()
78 value = nextValue; in makeMap()
/third_party/flutter/skia/third_party/externals/icu/source/common/
Dcharacterproperties.cpp314 uint32_t nextValue = u_getIntPropertyValue(c, property); in makeMap() local
315 if (value != nextValue) { in makeMap()
320 value = nextValue; in makeMap()
/third_party/icu/icu4c/source/common/
Dcharacterproperties.cpp316 uint32_t nextValue = u_getIntPropertyValue(c, property); in makeMap() local
317 if (value != nextValue) { in makeMap()
322 value = nextValue; in makeMap()
/third_party/skia/third_party/externals/icu/source/common/
Dcharacterproperties.cpp316 uint32_t nextValue = u_getIntPropertyValue(c, property); in makeMap() local
317 if (value != nextValue) { in makeMap()
322 value = nextValue; in makeMap()
/third_party/flutter/engine/flutter/shell/platform/android/io/flutter/plugin/common/
DJSONMessageCodec.java53 final Object value = tokener.nextValue(); in decodeMessage()
/third_party/node/deps/icu-small/source/common/
Dcharacterproperties.cpp344 uint32_t nextValue = u_getIntPropertyValue(c, property); in makeMap() local
345 if (value != nextValue) { in makeMap()
350 value = nextValue; in makeMap()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Transforms/Utils/
DLowerSwitch.cpp418 int64_t nextValue = J->Low->getSExtValue(); in Clusterify() local
425 assert(nextValue > currentValue && "Cases should be strictly ascending"); in Clusterify()
426 if ((nextValue == currentValue + 1) && (currentBB == nextBB)) { in Clusterify()
/third_party/vk-gl-cts/modules/egl/
DteglQuerySurfaceTests.cpp555 …const EGLint nextValue = (value == EGL_BUFFER_DESTROYED) ? EGL_BUFFER_PRESERVED : EGL_BUFFER_DESTR… in testAttributes() local
557 egl.surfaceAttrib(display, surface, EGL_SWAP_BEHAVIOR, nextValue); in testAttributes()
559 if (eglu::querySurfaceInt(egl, display, surface, EGL_SWAP_BEHAVIOR) != nextValue) in testAttributes()
561 …< " Fail, tried to set swap behavior to " << eglu::getSurfaceAttribStr(nextValue) << TestLog::End… in testAttributes()
/third_party/skia/src/sksl/
DSkSLDSLParser.cpp1114 dsl::DSLExpression nextValue = this->expression(); in forStatement() local
1115 if (!nextValue.hasValue()) { in forStatement()
1118 next.swap(nextValue); in forStatement()