Home | History | Annotate | Download | only in src

Lines Matching refs:failure

805 // for a string of length n.  If the failure flag gets set, then we have to
822 // recursion cannot always be avoided. This case is detected, and the failure
830 bool* failure,
856 failure,
858 if (*failure) return 0;
889 failure,
891 if (*failure) return 0;
896 *failure = true;
949 bool failure;
953 failure = false;
955 *str, 0, str->length(), false, kRecursionBudget, &failure, &dummy);
956 if (failure) FlattenString(str);
957 } while (failure);