Lines Matching full:param

72  * @param {String} message The message to be printed.
93 * @param {Any} obj The object to convert to a string.
116 * @param {Object} obj The object to clone.
247 * @param {object} object - Object whose presence in this set is to be tested.
258 * @param {lunr.Set} other - set to intersect with this set.
296 * @param {lunr.Set} other - set to union with this set.
316 * @param {object} posting - The posting for a given term
317 * @param {number} documentCount - The total number of documents.
337 * @param {string} [str=''] - The string token being wrapped.
338 * @param {object} [metadata={}] - Metadata associated with this token.
359 * @param {string} str - The string representation of the token.
360 * @param {Object} metadata - All metadata associated with this token.
371 * @param {lunr.Token~updateFunction} fn - A function to apply to the token string.
383 * @param {lunr.Token~updateFunction} [fn] - An optional function to apply to the cloned token.
408 * @param {?(string|object|object[])} obj - The object to convert into tokens
409 * @param {?object} metadata - Optional metadata to associate with every token
521 * @param {lunr.Token} token - A token from the document being processed.
522 * @param {number} i - The index of this token in the complete list of tokens for this document/field.
523 * @param {lunr.Token[]} tokens - All tokens for this document/field.
536 * @param {lunr.PipelineFunction} fn - The function to check for.
537 * @param {String} label - The label to register this function with
551 * @param {lunr.PipelineFunction} fn - The function to check for.
569 * @param {Object} serialised - The serialised pipeline to load.
593 * @param {lunr.PipelineFunction[]} functions - Any number of functions to add to the pipeline.
610 * @param {lunr.PipelineFunction} existingFn - A function that already exists in the pipeline.
611 * @param {lunr.PipelineFunction} newFn - The new function to add to the pipeline.
631 * @param {lunr.PipelineFunction} existingFn - A function that already exists in the pipeline.
632 * @param {lunr.PipelineFunction} newFn - The new function to add to the pipeline.
648 * @param {lunr.PipelineFunction} fn The function to remove from the pipeline.
663 * @param {Array} tokens The tokens to run through the pipeline.
698 * @param {string} str - The string to pass through the pipeline.
699 * @param {?object} metadata - Optional metadata to associate with the token
752 * @param {Number[]} [elements] - The flat list of element index and element value pairs.
767 * @param {Number} insertIdx - The index at which the element should be inserted.
819 * @param {Number} insertIdx - The index at which the element should be inserted.
820 * @param {Number} val - The value to be inserted into the vector.
831 * @param {Number} insertIdx - The index at which the element should be inserted.
832 * @param {Number} val - The value to be inserted into the vector.
833 * @param {function} fn - A function that is called for updates, the existing value and the
869 * @param {lunr.Vector} otherVector - The vector to compute the dot product with.
898 * @param {lunr.Vector} otherVector - The other vector to calculate the
942 * @param {lunr.Token} token - The string to stem
1165 * @param {Array} token The token to pass through the filter
1333 * @param {lunr.Token} token The token to pass through the filter
1390 * @param {String[]} arr - A sorted array of strings to create the set from.
1409 * @param {Object} clause - A single clause from lunr.Query.
1410 * @param {string} clause.term - The query clause term.
1411 * @param {number} [clause.editDistance] - The optional edit distance for the term.
1433 * @param {string} str - The string to create the token set from.
1434 * @param {number} editDistance - The allowed edit distance to match.
1570 * @param {string} str - The string to create a TokenSet from.
1694 * @param {lunr.TokenSet} b - An other TokenSet to intersect with.
1842 * @param {Object} attrs - The attributes of the built search index.
1843 * @param {Object} attrs.invertedIndex - An index of term/field to document reference.
1844 * @param {Object<string, lunr.Vector>} attrs.fieldVectors - Field vectors
1845 * @param {lunr.TokenSet} attrs.tokenSet - An set of all corpus tokens.
1846 * @param {string[]} attrs.fields - The names of indexed document fields.
1847 * @param {lunr.Pipeline} attrs.pipeline - The pipeline to use for search terms.
1924 * @param {lunr.Index~QueryString} queryString - A string containing a lunr query.
1940 * @param {lunr.Query} query - The query object to build up.
1957 * @param {lunr.Index~queryBuilder} fn - A function that is used to build the query.
2276 * @param {Object} serializedIndex - A previously serialized lunr.Index
2376 * @param {string} ref - The name of the reference field in the document.
2390 * @param {object} doc - The document being added to the index.
2408 * @param {string} fieldName - The name of a field to index in all documents.
2409 * @param {object} attributes - Optional attributes associated with this field.
2410 * @param {number} [attributes.boost=1] - Boost applied to all terms within this field.
2411 * @param {fieldExtractor} [attributes.extractor] - Function to extract a field from a document.
2428 * @param {number} number - The value to set for this tuning parameter.
2445 * @param {number} number - The value to set for this tuning parameter.
2464 * @param {object} doc - The document to add to the index.
2465 * @param {object} attributes - Optional attributes associated with this document.
2466 * @param {number} [attributes.boost=1] - Boost applied to all terms within this document.
2673 * @param {Function} plugin The plugin to apply.
2686 * @param {string} term - The term this match data is associated with
2687 * @param {string} field - The field in which the term was found
2688 * @param {object} metadata - The metadata recorded about this term in this field
2720 * @param {lunr.MatchData} otherMatchData - Another instance of match data to merge with this one.
2759 * @param {string} term - The term this match data is associated with
2760 * @param {string} field - The field in which the term was found
2761 * @param {object} metadata - The metadata recorded about this term in this field
2881 * @param {lunr.Query~Clause} clause - The clause to add to this query.
2946 * @param {object|object[]} term - The term(s) to add to the query.
2947 * @param {object} [options] - Any additional properties to add to the query clause.