Lines Matching refs:Function
78 * @param {Function} opt_whenDone if specified, called when the last entry
84 function _pr_isIE6() {
87 _pr_isIE6 = function () { return isIE6; };
92 (function () {
96 function wordSet(words) {
128 "debugger eval export function get null set undefined var with " +
141 "function in local set then until ";
179 function isWordChar(ch) {
192 function spliceArrayInto(
214 var REGEXP_PRECEDER_PATTERN = function () {
250 // object each time the function containing them is called.
258 function attribToHtml(str) {
266 function textToHtml(str) {
280 function htmlToText(html) {
312 function isRawContent(node) {
316 function normalizedHtml(node, out) {
345 function getInnerHtml(node) {
372 /** returns a function that expand tabs to spaces. This function can be fed
375 * @return {function (string) : string} a function that takes
379 function makeTabExpander(tabWidth) {
383 return function (plainText) {
441 function extractTags(s) {
503 function isNoCodeTag(tag) {
512 /** Given triples of [style, pattern, context] returns a lexing function,
513 * The lexing function interprets the patterns to find token boundaries and
540 * @return {function (string, number?) : Array.<number|string>} a
541 * function that takes source code and returns a list of decorations.
543 function createSimpleLexer(shortcutStylePatterns,
546 (function () {
562 return function (sourceCode, opt_basePos) {
629 function tokenizeMarkup(source) {
666 function splitTagAttributes(source, decorations) {
682 /** returns a function that produces a list of decorations from source text.
694 * @return {function (string) : Array.<string|number>} a
698 function sourceDecorator(options) {
775 function splitNonStringNonCommentTokens(source, decorations) {
807 return function (sourceCode) {
833 function splitSourceNodes(source, decorations) {
856 function splitSourceAttributes(source, decorations) {
922 function decorateMarkup(sourceCode) {
923 // This function works as follows:
956 function recombineTagsAndDecorations(sourceText, extractedTags, decorations) {
973 // A helper function that is responsible for opening sections of decoration
975 function emitTextUpTo(sourceIdx) {
1051 * @param {function (string) : Array.<number|string>} handler
1052 * a function from source code to a list of decorations.
1055 function registerLangHandler(handler, fileExtensions) {
1111 function prettyPrintOne(sourceCodeHtml, opt_langExtension) {
1151 function prettyPrint(opt_whenDone) {
1171 function doWork() {