HomeSort by relevance Sort by last modified time
    Searched refs:last_dot (Results 1 - 6 of 6) sorted by null

  /external/tensorflow/tensorflow/core/platform/cloud/
oauth_client_test.cc 129 int last_dot = assertion.ToString().find_last_of("."); local
130 string header_dot_claim = assertion.ToString().substr(0, last_dot);
131 string signature_encoded = assertion.ToString().substr(last_dot + 1);
  /external/puffin/src/
main.cc 98 auto last_dot = file_name.find_last_of("."); local
99 if (last_dot == string::npos) {
103 auto extension = file_name.substr(last_dot + 1);
  /external/python/cpython3/Python/
import.c 1349 Py_ssize_t last_dot; local
    [all...]
  /external/libchrome/base/files/
file_path.cc 122 const StringType::size_type last_dot = FinalExtensionSeparatorPosition(path); local
125 if (last_dot == StringType::npos || last_dot == 0U)
126 return last_dot;
129 path.rfind(FilePath::kExtensionSeparator, last_dot - 1);
131 path.find_last_of(FilePath::kSeparators, last_dot - 1,
137 return last_dot;
146 StringType extension(path, last_dot + 1);
149 if ((last_dot - penultimate_dot) <= 5U &&
150 (last_dot - penultimate_dot) > 1U)
    [all...]
  /toolchain/binutils/binutils-2.27/gas/config/
rl78-parse.y 1367 char *last_dot = NULL;
1373 last_dot = tok;
1377 && last_dot != NULL
    [all...]
  /art/dex2oat/
dex2oat.cc 1090 size_t last_dot = in.rfind('.'); local
    [all...]

Completed in 803 milliseconds