Home
last modified time | relevance | path

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

/packages/modules/AdServices/sdksandbox/service/java/com/android/server/sdksandbox/helpers/
DStringHelper.java66 int inputMatchStartIndex = 0; in doesInputMatchWildcardPattern() local
74 inputMatchStartIndex = patternSubstrings[i].length(); in doesInputMatchWildcardPattern()
78 if (!input.substring(inputMatchStartIndex).endsWith(patternSubstrings[i])) { in doesInputMatchWildcardPattern()
81 inputMatchStartIndex = input.length(); in doesInputMatchWildcardPattern()
85 int substringIndex = input.indexOf(patternSubstrings[i], inputMatchStartIndex); in doesInputMatchWildcardPattern()
89 inputMatchStartIndex = substringIndex + patternSubstrings[i].length(); in doesInputMatchWildcardPattern()
94 return inputMatchStartIndex >= input.length(); in doesInputMatchWildcardPattern()