Home
last modified time | relevance | path

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

/external/apache-xml/src/main/java/org/apache/xpath/functions/
DFuncSubstring.java51 int lenOfS1 = s1.length(); in execute() local
54 if (lenOfS1 <= 0) in execute()
82 else if (end > lenOfS1) in execute()
83 end = lenOfS1; in execute()
85 if (startIndex > lenOfS1) in execute()
86 startIndex = lenOfS1; in execute()
92 if (startIndex > lenOfS1) in execute()
93 startIndex = lenOfS1; in execute()