Home
last modified time | relevance | path

Searched refs:reserved_names (Results 1 – 2 of 2) sorted by relevance

/freebsd-12-stable/contrib/subversion/subversion/libsvn_client/
Dcmdline.c130 apr_array_header_t *reserved_names = NULL; in svn_client_args_to_target_array2() local
280 if (!reserved_names) in svn_client_args_to_target_array2()
281 reserved_names = apr_array_make(pool, DEFAULT_ARRAY_SIZE, in svn_client_args_to_target_array2()
284 APR_ARRAY_PUSH(reserved_names, const char *) = utf8_target; in svn_client_args_to_target_array2()
359 if (reserved_names) in svn_client_args_to_target_array2()
363 for (i = 0; i < reserved_names->nelts; ++i) in svn_client_args_to_target_array2()
366 APR_ARRAY_IDX(reserved_names, i, in svn_client_args_to_target_array2()
/freebsd-12-stable/contrib/googletest/googletest/src/
Dgtest.cc2188 const std::vector<std::string>& reserved_names) { in ValidateTestPropertyName() argument
2189 if (std::find(reserved_names.begin(), reserved_names.end(), property_name) != in ValidateTestPropertyName()
2190 reserved_names.end()) { in ValidateTestPropertyName()
2192 << " (" << FormatWordList(reserved_names) in ValidateTestPropertyName()