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.py246 current_flag = None
252 if current_flag is not None and current_flag[-1] == _ESCAPE:
254 current_flag = current_flag[:-1] + c
258 if current_flag is not None:
259 flags.append(current_flag)
260 current_flag = None
262 if current_flag is None:
263 current_flag = ''
264 current_flag += c
266 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/swiftshader/third_party/llvm-7.0/llvm/cmake/modules/
DChooseMSVCCRT.cmake39 string(REGEX MATCH "${${regex}}" current_flag "${${flagsvar}}")
40 if("${current_flag}" STREQUAL "")
/external/swiftshader/third_party/LLVM/cmake/modules/
DChooseMSVCCRT.cmake39 string(REGEX MATCH "${${regex}}" current_flag "${${flagsvar}}")
40 if("${current_flag}" STREQUAL "")
/external/deqp-deps/glslang/
DChooseMSVCCRT.cmake39 string(REGEX MATCH "${${regex}}" current_flag "${${flagsvar}}")
40 if("${current_flag}" STREQUAL "")
/external/vulkan-validation-layers/layers/
Dcore_validation.cpp7652 VkPipelineStageFlagBits current_flag = (VkPipelineStageFlagBits)((inflags & 0x1u) << i); in GetLogicallyEarliestGraphicsPipelineStage() local
7653 if (current_flag) { in GetLogicallyEarliestGraphicsPipelineStage()
7654 int new_order = GetGraphicsPipelineStageLogicalOrdinal(current_flag); in GetLogicallyEarliestGraphicsPipelineStage()
7657 earliest_bit = current_flag; in GetLogicallyEarliestGraphicsPipelineStage()