Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for writeCDATA (0.09 sec)

  1. subprojects/core/src/main/java/org/gradle/internal/xml/SimpleMarkupWriter.java

            return this;
        }
    
        private void writeCDATA(char[] cdata, int offset, int count) throws IOException {
            int end = offset + count;
            for (int i = offset; i < end;) {
                int codePoint = Character.codePointAt(cdata, i);
                i += Character.charCount(codePoint);
                writeCDATA(codePoint);
            }
        }
    
        private void writeCDATA(CharSequence cdata) throws IOException {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Nov 02 12:15:58 UTC 2021
    - 12K bytes
    - Viewed (0)
Back to top