Home | History | Annotate | Download | only in common

Lines Matching defs:Language

34 // language.h: Define google_breakpad::Language. Instances of
35 // subclasses of this class provide language-appropriate operations
47 // An abstract base class for language-specific operations. We choose
48 // an instance of a subclass of this when we find the CU's language.
50 // language.
51 class Language {
55 virtual ~Language() {}
57 // Return true if this language has functions to which we can assign
58 // line numbers. (Debugging info for assembly language, for example,
63 // Construct a fully-qualified, language-appropriate form of NAME,
81 static const Language * const CPlusPlus,