Home
last modified time | relevance | path

Searched refs:variableName (Results 1 – 8 of 8) sorted by relevance

/llvm-project-15.0.7/clang/cmake/caches/
H A DAndroid.cmake34 foreach(variableName ${variableNames})
35 if(variableName MATCHES "^STAGE2_")
36 string(REPLACE "STAGE2_" "" new_name ${variableName})
37 list(APPEND EXTRA_ARGS "-D${new_name}=${${variableName}}")
H A DFuchsia.cmake137 foreach(variableName ${variableNames})
138 if(variableName MATCHES "^STAGE2_")
139 string(REPLACE "STAGE2_" "" new_name ${variableName})
140 list(APPEND EXTRA_ARGS "-D${new_name}=${${variableName}}")
/llvm-project-15.0.7/llvm/runtimes/
H A DCMakeLists.txt107 foreach(variableName ${variableNames})
108 string(FIND "${variableName}" "BUILTINS_${target}" out)
110 string(REPLACE "BUILTINS_${target}_" "" new_name ${variableName})
111 string(REPLACE ";" "|" new_value "${${variableName}}")
313 foreach(variableName ${variableNames})
314 string(FIND "${variableName}" "RUNTIMES_${target}_" out)
316 string(REPLACE "RUNTIMES_${target}_" "" new_name ${variableName})
317 string(REPLACE ";" "|" new_value "${${variableName}}")
322 foreach(variableName ${variableNames})
323 string(FIND "${variableName}" "RUNTIMES_${name}_" out)
[all …]
/llvm-project-15.0.7/clang/runtime/
H A DCMakeLists.txt53 foreach(variableName ${variableNames})
54 if(variableName MATCHES "^COMPILER_RT")
55 string(REPLACE ";" "\;" value "${${variableName}}")
57 -D${variableName}=${value})
/llvm-project-15.0.7/clang/
H A DCMakeLists.txt825 foreach(variableName ${variableNames})
826 if(variableName MATCHES "^BOOTSTRAP_")
827 string(SUBSTRING ${variableName} 10 -1 varName)
828 string(REPLACE ";" "|" value "${${variableName}}")
832 if(${variableName} AND variableName MATCHES "LLVM_EXTERNAL_.*_SOURCE_DIR")
834 -D${variableName}=${${variableName}})
839 foreach(variableName ${CLANG_BOOTSTRAP_PASSTHROUGH} ${_BOOTSTRAP_DEFAULT_PASSTHROUGH})
840 if(DEFINED ${variableName})
841 if("${${variableName}}" STREQUAL "")
844 string(REPLACE ";" "|" value "${${variableName}}")
[all …]
/llvm-project-15.0.7/llvm/cmake/modules/
H A DLLVMExternalProjectUtils.cmake157 foreach(variableName ${variableNames})
158 if(variableName MATCHES "^${prefix}")
159 string(REPLACE ";" "|" value "${${variableName}}")
161 -D${variableName}=${value})
/llvm-project-15.0.7/mlir/lib/Target/SPIRV/Deserialization/
H A DDeserializer.cpp572 auto variableName = nameMap.lookup(variableID).str(); in processGlobalVariable() local
573 if (variableName.empty()) { in processGlobalVariable()
574 variableName = "spirv_var_" + std::to_string(variableID); in processGlobalVariable()
606 loc, TypeAttr::get(type), opBuilder.getStringAttr(variableName), in processGlobalVariable()
/llvm-project-15.0.7/flang/lib/Semantics/
H A Dcheck-omp-structure.cpp1512 const auto &variableName{variable.GetSource().ToString()}; in IsOperatorValid() local
1515 if ((exprLeft.value().source.ToString() != variableName) && in IsOperatorValid()
1516 (exprRight.value().source.ToString() != variableName)) { in IsOperatorValid()
1520 variableName); in IsOperatorValid()