Home
last modified time | relevance | path

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

/external/python/cpython2/Objects/
Dabstract.c1611 static PyObject *trunc_name = NULL; local
1616 if (trunc_name == NULL) {
1617 trunc_name = PyString_InternFromString("__trunc__");
1618 if (trunc_name == NULL)
1645 trunc_func = PyObject_GetAttr(o, trunc_name);
1705 static PyObject *trunc_name = NULL; local
1710 if (trunc_name == NULL) {
1711 trunc_name = PyString_InternFromString("__trunc__");
1712 if (trunc_name == NULL)
1740 trunc_func = PyObject_GetAttr(o, trunc_name);
/external/v8/src/wasm/
Dmodule-compiler.cc2022 TruncatedUserString<> trunc_name(name->GetCharVector<uint8_t>()); in ProcessExports() local
2023 thrower_->LinkError("export of %.*s failed.", trunc_name.length(), in ProcessExports()
2024 trunc_name.start()); in ProcessExports()
/external/v8/src/compiler/
Dwasm-compiler.cc5218 wasm::TruncatedUserString<> trunc_name(wasm_unit_->func_name_); in FinishCompilation() local
5220 wasm_unit_->func_index_, trunc_name.length(), in FinishCompilation()
5221 trunc_name.start()); in FinishCompilation()