Home
last modified time | relevance | path

Searched refs:currentState (Results 1 – 21 of 21) sorted by relevance

/third_party/node/deps/v8/tools/profview/
Dprofview.js57 currentState : emptyState(), property
61 if (mode !== main.currentState.mode) {
64 let callTreeState = Object.assign({}, main.currentState.callTree);
71 let state = Object.assign({}, main.currentState);
90 main.currentState = state;
96 if (attribution !== main.currentState.attribution) {
97 let callTreeState = Object.assign({}, main.currentState.callTree);
99 main.currentState = setCallTreeState(main.currentState, callTreeState);
105 if (sort !== main.currentState.sort) {
106 let callTreeState = Object.assign({}, main.currentState.callTree);
[all …]
/third_party/node/deps/icu-small/source/common/
Ducnv_ct.cpp346 COMPOUND_TEXT_CONVERTERS currentState, tmpState; in UConverter_fromUnicode_CompoundText_OFFSETS() local
353 currentState = myConverterData->state; in UConverter_fromUnicode_CompoundText_OFFSETS()
402 if (tmpState != DO_SEARCH && currentState != tmpState) { in UConverter_fromUnicode_CompoundText_OFFSETS()
404 currentState = tmpState; in UConverter_fromUnicode_CompoundText_OFFSETS()
405 for (i = 0; escSeqCompoundText[currentState][i] != 0; i++) { in UConverter_fromUnicode_CompoundText_OFFSETS()
406 tmpTargetBuffer[tmpTargetBufferLength++] = escSeqCompoundText[currentState][i]; in UConverter_fromUnicode_CompoundText_OFFSETS()
416 if (currentState != tmpState) { in UConverter_fromUnicode_CompoundText_OFFSETS()
417 currentState = tmpState; in UConverter_fromUnicode_CompoundText_OFFSETS()
418 for (j = 0; escSeqCompoundText[currentState][j] != 0; j++) { in UConverter_fromUnicode_CompoundText_OFFSETS()
419 … tmpTargetBuffer[tmpTargetBufferLength++] = escSeqCompoundText[currentState][j]; in UConverter_fromUnicode_CompoundText_OFFSETS()
[all …]
/third_party/skia/third_party/externals/icu/source/common/
Ducnv_ct.cpp346 COMPOUND_TEXT_CONVERTERS currentState, tmpState; in UConverter_fromUnicode_CompoundText_OFFSETS() local
353 currentState = myConverterData->state; in UConverter_fromUnicode_CompoundText_OFFSETS()
402 if (tmpState != DO_SEARCH && currentState != tmpState) { in UConverter_fromUnicode_CompoundText_OFFSETS()
404 currentState = tmpState; in UConverter_fromUnicode_CompoundText_OFFSETS()
405 for (i = 0; escSeqCompoundText[currentState][i] != 0; i++) { in UConverter_fromUnicode_CompoundText_OFFSETS()
406 tmpTargetBuffer[tmpTargetBufferLength++] = escSeqCompoundText[currentState][i]; in UConverter_fromUnicode_CompoundText_OFFSETS()
416 if (currentState != tmpState) { in UConverter_fromUnicode_CompoundText_OFFSETS()
417 currentState = tmpState; in UConverter_fromUnicode_CompoundText_OFFSETS()
418 for (j = 0; escSeqCompoundText[currentState][j] != 0; j++) { in UConverter_fromUnicode_CompoundText_OFFSETS()
419 … tmpTargetBuffer[tmpTargetBufferLength++] = escSeqCompoundText[currentState][j]; in UConverter_fromUnicode_CompoundText_OFFSETS()
[all …]
/third_party/icu/icu4c/source/common/
Ducnv_ct.cpp346 COMPOUND_TEXT_CONVERTERS currentState, tmpState; in UConverter_fromUnicode_CompoundText_OFFSETS() local
353 currentState = myConverterData->state; in UConverter_fromUnicode_CompoundText_OFFSETS()
402 if (tmpState != DO_SEARCH && currentState != tmpState) { in UConverter_fromUnicode_CompoundText_OFFSETS()
404 currentState = tmpState; in UConverter_fromUnicode_CompoundText_OFFSETS()
405 for (i = 0; escSeqCompoundText[currentState][i] != 0; i++) { in UConverter_fromUnicode_CompoundText_OFFSETS()
406 tmpTargetBuffer[tmpTargetBufferLength++] = escSeqCompoundText[currentState][i]; in UConverter_fromUnicode_CompoundText_OFFSETS()
416 if (currentState != tmpState) { in UConverter_fromUnicode_CompoundText_OFFSETS()
417 currentState = tmpState; in UConverter_fromUnicode_CompoundText_OFFSETS()
418 for (j = 0; escSeqCompoundText[currentState][j] != 0; j++) { in UConverter_fromUnicode_CompoundText_OFFSETS()
419 … tmpTargetBuffer[tmpTargetBufferLength++] = escSeqCompoundText[currentState][j]; in UConverter_fromUnicode_CompoundText_OFFSETS()
[all …]
/third_party/icu/icu4j/main/classes/charset/src/com/ibm/icu/charset/
DCharsetCompoundText.java351 byte currentState = state; in encodeLoop()
444 if (currentState != tmpState) { in encodeLoop()
445 currentState = tmpState; in encodeLoop()
448 for (i = 0; i < escSeqCompoundText[currentState].length; i++) { in encodeLoop()
449 targetBytes[i] = escSeqCompoundText[currentState][i]; in encodeLoop()
480 state = currentState; in encodeLoop()
516 byte currentState = state; in decodeLoop()
517 byte tmpState = currentState; in decodeLoop()
553 if (tmpState != currentState) { in decodeLoop()
554 currentState = tmpState; in decodeLoop()
[all …]
/third_party/skia/third_party/externals/oboe/apps/fxlab/app/src/main/cpp/
DDuplexEngine.cpp77 auto currentState = outStream->getState(); in startStreams() local
79 while (result == oboe::Result::OK && currentState != oboe::StreamState::Started) { in startStreams()
80 result = outStream->waitForStateChange(currentState, &nextState, timeoutNanos); in startStreams()
81 currentState = nextState; in startStreams()
/third_party/typescript/src/compiler/transformers/
Des2015.ts2847 const currentState = createConvertedLoopState(node); constant
2851 convertedLoopState = currentState;
2853 …rOfForStatement(node) ? createFunctionForInitializerOfForStatement(node, currentState) : undefined;
2854 …tionStatement(node) ? createFunctionForBodyOfIterationStatement(node, currentState, outerConverted…
2861 addExtraDeclarationsForConvertedLoop(statements, currentState, outerConvertedLoopState);
2966 const currentState: ConvertedLoopState = { loopParameters, loopOutParameters }; constant
2973 currentState.argumentsName = convertedLoopState.argumentsName;
2978 currentState.thisName = convertedLoopState.thisName;
2983 currentState.hoistedLocalVariables = convertedLoopState.hoistedLocalVariables;
2986 return currentState;
[all …]
/third_party/skia/third_party/externals/oboe/src/opensles/
DAudioStreamOpenSLES.cpp366 Result AudioStreamOpenSLES::waitForStateChange(StreamState currentState, in waitForStateChange() argument
378 if (currentState != state) { // state changed? in waitForStateChange()
DAudioStreamOpenSLES.h77 Result waitForStateChange(StreamState currentState,
/third_party/skia/third_party/externals/oboe/src/aaudio/
DAudioStreamAAudio.h76 Result waitForStateChange(StreamState currentState,
DAudioStreamAAudio.cpp451 Result AudioStreamAAudio::waitForStateChange(StreamState currentState, in waitForStateChange() argument
456 aaudio_stream_state_t currentAAudioState = static_cast<aaudio_stream_state_t>(currentState); in waitForStateChange()
/third_party/skia/src/gpu/d3d/
DGrD3DTextureResource.h50 D3D12_RESOURCE_STATES currentState() const { in currentState() function
DGrD3DTextureResource.cpp16 D3D12_RESOURCE_STATES currentResourceState = this->currentState(); in setResourceState()
DGrD3DCommandList.cpp509 SkASSERT(dstTexture->currentState() == D3D12_RESOURCE_STATE_RESOLVE_DEST); in resolveSubresourceRegion()
510 SkASSERT(srcTexture->currentState() == D3D12_RESOURCE_STATE_RESOLVE_SOURCE); in resolveSubresourceRegion()
DGrD3DGpu.cpp1141 D3D12_RESOURCE_STATES currentResourceState = uavTexture->currentState(); in onRegenerateMipMapLevels()
/third_party/skia/src/gpu/vk/
DGrVkGpu.cpp1821 sk_sp<GrBackendSurfaceMutableStateImpl> currentState, in setBackendSurfaceState() argument
1829 std::move(currentState), in setBackendSurfaceState()
1855 sk_sp<GrBackendSurfaceMutableStateImpl> currentState = backendTeture.getMutableState(); in setBackendTextureState() local
1856 SkASSERT(currentState); in setBackendTextureState()
1858 return this->setBackendSurfaceState(info, std::move(currentState), backendTeture.dimensions(), in setBackendTextureState()
1869 sk_sp<GrBackendSurfaceMutableStateImpl> currentState = backendRenderTarget.getMutableState(); in setBackendRenderTargetState() local
1870 SkASSERT(currentState); in setBackendRenderTargetState()
1872 return this->setBackendSurfaceState(info, std::move(currentState), in setBackendRenderTargetState()
DGrVkGpu.h234 sk_sp<GrBackendSurfaceMutableStateImpl> currentState,
/third_party/typescript/src/compiler/factory/
Dutilities.ts1124 …(machine: BinaryExpressionStateMachine<TOuterState, TState, TResult>, currentState: BinaryExpressi…
1125 switch (currentState) {
/third_party/typescript/lib/
Dtsc.js25202 function nextState(machine, currentState) { argument
25203 switch (currentState) {
88058 var currentState = createConvertedLoopState(node);
88061 convertedLoopState = currentState;
88062 …rOfForStatement(node) ? createFunctionForInitializerOfForStatement(node, currentState) : undefined;
88063 …tionStatement(node) ? createFunctionForBodyOfIterationStatement(node, currentState, outerConverted…
88069 addExtraDeclarationsForConvertedLoop(statements, currentState, outerConvertedLoopState);
88140 … var currentState = { loopParameters: loopParameters, loopOutParameters: loopOutParameters }; variable
88143 currentState.argumentsName = convertedLoopState.argumentsName;
88146 currentState.thisName = convertedLoopState.thisName;
[all …]
DtypingsInstaller.js31243 function nextState(machine, currentState) { argument
31244 switch (currentState) {
105305 var currentState = createConvertedLoopState(node);
105308 convertedLoopState = currentState;
105309 …rOfForStatement(node) ? createFunctionForInitializerOfForStatement(node, currentState) : undefined;
105310 …tionStatement(node) ? createFunctionForBodyOfIterationStatement(node, currentState, outerConverted…
105316 addExtraDeclarationsForConvertedLoop(statements, currentState, outerConvertedLoopState);
105390 … var currentState = { loopParameters: loopParameters, loopOutParameters: loopOutParameters }; variable
105397 currentState.argumentsName = convertedLoopState.argumentsName;
105402 currentState.thisName = convertedLoopState.thisName;
[all …]
/third_party/typescript/tests/lib/
Dlib.d.ts11427 currentState: number; property
11431 …leArg: boolean, viewArg: Window, detailArg: number, lastState: number, currentState: number): void;