Home
last modified time | relevance | path

Searched refs:decltype (Results 1 – 3 of 3) sorted by relevance

/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/
Dmarkupbase.py98 decltype, j = self._scan_name(j, i)
101 if decltype == "doctype":
108 if decltype == "doctype":
124 if decltype == "doctype":
126 elif decltype in ("attlist", "linktype", "link", "element"):
131 self.error("unsupported '[' char in %s declaration" % decltype)
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Modules/_sqlite/
Dcursor.c174 const char* decltype; in pysqlite_build_row_cast_map() local
213 decltype = sqlite3_column_decltype(self->statement->st, i); in pysqlite_build_row_cast_map()
214 if (decltype) { in pysqlite_build_row_cast_map()
215 for (pos = decltype;;pos++) { in pysqlite_build_row_cast_map()
221 py_decltype = PyString_FromStringAndSize(decltype, pos - decltype); in pysqlite_build_row_cast_map()
/device/linaro/hikey/bluetooth/
Dasync_fd_watcher.cc160 std::vector<decltype(watched_fds_)::value_type> saved_callbacks; in ThreadRoutine()