Lines Matching refs:getContext

8482 	  var getContext = noopGetContext;
8534 onError(err, getContext);
8552 onWarning(err, getContext);
8641 getContext = noopGetContext;
9076 getContext = getParseContext;
9127 onText(xml.substring(j, i), decodeEntities, getContext);
9158 onCDATA(xml.substring(i + 9, j), getContext);
9177 onComment(xml.substring(i + 4, j), decodeEntities, getContext);
9196 onQuestion(xml.substring(i, j + 2), getContext);
9238 onAttention(xml.substring(i, j + 1), decodeEntities, getContext);
9385 onOpenTag(elementProxy, decodeEntities, tagEnd, getContext);
9387 onOpenTag(elementName, getAttrs, decodeEntities, tagEnd, getContext);
9400 onCloseTag(proxy ? elementProxy : elementName, decodeEntities, tagStart, getContext);
10102 function handleError(err, getContext, lax) { argument
10104 var ctx = getContext();
10135 function handleWarning(err, getContext) { argument
10138 return handleError(err, getContext, true);
10220 function handleOpen(node, getContext) { argument
10227 if (handleError(err, getContext, lax)) {
10233 function handleCData(text, getContext) { argument
10238 handleWarning(err, getContext);
10242 function handleText(text, getContext) { argument
10251 handleCData(text, getContext);
10263 .on('openTag', function(obj, decodeStr, selfClosing, getContext) { argument
10283 handleOpen(node, getContext);
10288 .on('text', function(text, decodeEntities, getContext) { argument
10289 handleText(decodeEntities(text), getContext);
44110 function getContext() { function
44174 var updateContext = getContext();
52299 var context = document.createElement('canvas').getContext('2d');