Home
last modified time | relevance | path

Searched refs:get_source_name (Results 1 – 6 of 6) sorted by relevance

/external/antlr/runtime/Perl5/lib/ANTLR/Runtime/
DParser.pm73 sub get_source_name { method in ANTLR::Runtime::Parser
75 return $self->input->get_source_name();
DANTLRFileStream.pm76 sub get_source_name { subroutine
DLexer.pm123 sub get_source_name { method in ANTLR::Runtime::Lexer
125 return $self->input->get_source_name();
DCommonTokenStream.pm334 sub get_source_name { method in ANTLR::Runtime::CommonTokenStream
336 return $self->get_token_source()->get_source_name();
DANTLRStringStream.pm217 sub get_source_name { subroutine
/external/python/cpython2/Python/
D_warnings.c646 static PyObject *get_source_name = NULL; in warnings_warn_explicit() local
655 if (get_source_name == NULL) { in warnings_warn_explicit()
656 get_source_name = PyString_InternFromString("get_source"); in warnings_warn_explicit()
657 if (!get_source_name) in warnings_warn_explicit()
677 source = PyObject_CallMethodObjArgs(loader, get_source_name, in warnings_warn_explicit()