Lines Matching refs:i_option
49 const String & i_option );
54 const String & i_option );
58 IsIncludeOption(const String & i_option) in IsIncludeOption() argument
60 return strncmp(i_option, sIncludeOptionShort, nIncludeOptionShort_Length) == 0 in IsIncludeOption()
62 strncmp(i_option, sIncludeOptionLong, nIncludeOptionLong_Length) == 0; in IsIncludeOption()
66 IncludeFile_fromIncludeOption(const String & i_option) in IncludeFile_fromIncludeOption() argument
68 if ( strncmp(i_option, sIncludeOptionShort, nIncludeOptionShort_Length) in IncludeFile_fromIncludeOption()
71 return String(i_option, nIncludeOptionShort_Length, str::maxsize); in IncludeFile_fromIncludeOption()
74 if ( strncmp(i_option, sIncludeOptionLong, nIncludeOptionLong_Length) in IncludeFile_fromIncludeOption()
77 return String(i_option, nIncludeOptionLong_Length, str::maxsize); in IncludeFile_fromIncludeOption()
96 i_option ) in operator ()()
97 { return i_option.sText == sOption; } in operator ()()
101 const String & i_option ) in FindOptionByText()
102 : sOption(i_option) { } in FindOptionByText()