Lines Matching defs:strict
167 //ObjCLanguageRuntime::MethodName::SetName (const char *name, bool strict)
172 // // If "strict" is true. then the method must be specified with a
173 // // '+' or '-' at the beginning. If "strict" is false, then the '+'
181 // else if (!strict)
183 // // "strict" is false, the name just needs to start with '['
208 // return IsValid(strict);
212 ObjCLanguageRuntime::MethodName::SetName (const char *name, bool strict)
217 // If "strict" is true. then the method must be specified with a
218 // '+' or '-' at the beginning. If "strict" is false, then the '+'
230 else if (!strict)
232 // "strict" is false, the name just needs to start with '['
245 if (name_len >= (5 + (strict ? 1 : 0)) && name[name_len - 1] == ']')
251 return IsValid(strict);