Home | History | Annotate | Download | only in html

Lines Matching defs:amp

35   // The state the strip function can be, normal, in an amp escaped entity or
49 tempMap.put("amp", "&");
98 // Holds the contents of an & (amp) entity before its decoded.
99 StringBuilder amp = new StringBuilder();
116 // If this is isn't the start of an amp of a tag, treat as plain
133 appendDecodedEntityReference(out, amp);
134 amp = new StringBuilder();
136 if (amp.length() < MAX_AMP_LENGTH) {
138 // amp buffer and continue, if it is the last, dump the buffer
141 amp.append(c);
143 out.append('&').append(amp).append(c);
147 out.append('&').append(amp).append(c);
148 amp = new StringBuilder();