Home
last modified time | relevance | path

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

/netbsd-src/external/apache2/llvm/dist/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.cmake136 foreach(variableName ${variableNames})
137 if(variableName MATCHES "^STAGE2_")
138 string(REPLACE "STAGE2_" "" new_name ${variableName})
139 list(APPEND EXTRA_ARGS "-D${new_name}=${${variableName}}")
/netbsd-src/external/apache2/llvm/dist/llvm/runtimes/
H A DCMakeLists.txt103 foreach(variableName ${variableNames})
104 string(FIND "${variableName}" "BUILTINS_${target}" out)
106 string(REPLACE "BUILTINS_${target}_" "" new_name ${variableName})
107 string(REPLACE ";" "|" new_value "${${variableName}}")
302 foreach(variableName ${variableNames})
303 string(FIND "${variableName}" "RUNTIMES_${target}_" out)
305 string(REPLACE "RUNTIMES_${target}_" "" new_name ${variableName})
306 string(REPLACE ";" "|" new_value "${${variableName}}")
311 foreach(variableName ${variableNames})
312 string(FIND "${variableName}" "RUNTIMES_${name}_" out)
[all …]
/netbsd-src/external/apache2/llvm/dist/clang/runtime/
H A DCMakeLists.txt53 foreach(variableName ${variableNames})
54 if(variableName MATCHES "^COMPILER_RT")
55 string(REPLACE ";" "\;" value "${${variableName}}")
57 -D${variableName}=${value})
/netbsd-src/external/apache2/llvm/dist/clang/
H A DCMakeLists.txt796 foreach(variableName ${variableNames})
797 if(variableName MATCHES "^BOOTSTRAP_")
798 string(SUBSTRING ${variableName} 10 -1 varName)
799 string(REPLACE ";" "|" value "${${variableName}}")
803 if(${variableName} AND variableName MATCHES "LLVM_EXTERNAL_.*_SOURCE_DIR")
805 -D${variableName}=${${variableName}})
810 foreach(variableName ${CLANG_BOOTSTRAP_PASSTHROUGH} ${_BOOTSTRAP_DEFAULT_PASSTHROUGH})
811 if(DEFINED ${variableName})
812 if("${${variableName}}" STREQUAL "")
815 string(REPLACE ";" "|" value "${${variableName}}")
[all …]
/netbsd-src/external/apache2/llvm/dist/llvm/cmake/modules/
H A DLLVMExternalProjectUtils.cmake151 foreach(variableName ${variableNames})
152 if(variableName MATCHES "^${prefix}")
153 string(REPLACE ";" "|" value "${${variableName}}")
155 -D${variableName}=${value})
/netbsd-src/external/mit/expat/dist/lib/
H A Dxmlparse.c588 static unsigned long getDebugLevel(const char *variableName,
8239 getDebugLevel(const char *variableName, unsigned long defaultDebugLevel) { in getDebugLevel() argument
8240 const char *const valueOrNull = getenv(variableName); in getDebugLevel()