Home
last modified time | relevance | path

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

/external/antlr/antlr-3.4/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
DCommonTokenStream.pm334 sub get_source_name { method in ANTLR::Runtime::CommonTokenStream
336 return $self->get_token_source()->get_source_name();
DLexer.pm123 sub get_source_name { method in ANTLR::Runtime::Lexer
125 return $self->input->get_source_name();
DANTLRStringStream.pm217 sub get_source_name { method in ANTLR::Runtime::ANTLRStringStream
/external/python/cpython2/Python/
D_warnings.c640 static PyObject *get_source_name = NULL; in warnings_warn_explicit() local
649 if (get_source_name == NULL) { in warnings_warn_explicit()
650 get_source_name = PyString_InternFromString("get_source"); in warnings_warn_explicit()
651 if (!get_source_name) in warnings_warn_explicit()
671 source = PyObject_CallMethodObjArgs(loader, get_source_name, in warnings_warn_explicit()