Lines Matching defs:position
344 std::size_t position = result.find("yyyy");
345 if (position == std::string::npos) {
348 order[position] = "year";
350 position = result.find("MM");
351 if (position == std::string::npos) {
354 order[position] = "month";
356 position = result.find("dd");
357 if (position == std::string::npos) {
360 order[position] = "day";
378 std::size_t position = dateOrder.find("y");
379 if (position == std::string::npos) {
382 order[position] = "year";
384 position = dateOrder.find("M");
385 if (position == std::string::npos) {
388 order[position] = "month";
390 position = dateOrder.find("d");
391 if (position == std::string::npos) {
394 order[position] = "day";