Home
last modified time | relevance | path

Searched refs:current_flag (Results 1 – 6 of 6) sorted by relevance

/external/chromium-trace/catapult/devil/devil/android/
Dflag_changer.py252 current_flag = None
258 if current_flag is not None and current_flag[-1] == _ESCAPE:
260 current_flag = current_flag[:-1] + c
264 if current_flag is not None:
265 flags.append(current_flag)
266 current_flag = None
268 if current_flag is None:
269 current_flag = ''
270 current_flag += c
272 if current_flag is not None:
[all …]
/external/llvm/cmake/modules/
DChooseMSVCCRT.cmake39 string(REGEX MATCH "${${regex}}" current_flag "${${flagsvar}}")
40 if("${current_flag}" STREQUAL "")
/external/llvm-project/llvm/cmake/modules/
DChooseMSVCCRT.cmake39 string(REGEX MATCH "${${regex}}" current_flag "${${flagsvar}}")
40 if("${current_flag}" STREQUAL "")
/external/deqp-deps/glslang/
DChooseMSVCCRT.cmake72 string(REGEX MATCH "${${regex}}" current_flag "${${flagsvar}}")
73 if("${current_flag}" STREQUAL "")
/external/angle/third_party/vulkan-deps/glslang/src/
DChooseMSVCCRT.cmake72 string(REGEX MATCH "${${regex}}" current_flag "${${flagsvar}}")
73 if("${current_flag}" STREQUAL "")
/external/vulkan-validation-layers/layers/
Dcore_validation.cpp8017 VkPipelineStageFlagBits current_flag = (VkPipelineStageFlagBits)((inflags & 0x1u) << i); in GetLogicallyEarliestGraphicsPipelineStage() local
8018 if (current_flag) { in GetLogicallyEarliestGraphicsPipelineStage()
8019 int new_order = GetGraphicsPipelineStageLogicalOrdinal(current_flag); in GetLogicallyEarliestGraphicsPipelineStage()
8022 earliest_bit = current_flag; in GetLogicallyEarliestGraphicsPipelineStage()