Lines Matching refs:context

386   function bind(context) {  argument
391 return __method.apply(context, a);
395 function bindAsEventListener(context) { argument
399 return __method.apply(context, a);
821 function each(iterator, context) { argument
825 iterator.call(context, value, index++);
833 function eachSlice(number, iterator, context) { argument
838 return slices.collect(iterator, context);
841 function all(iterator, context) { argument
845 result = result && !!iterator.call(context, value, index);
851 function any(iterator, context) { argument
855 if (result = !!iterator.call(context, value, index))
861 function collect(iterator, context) { argument
865 results.push(iterator.call(context, value, index));
870 function detect(iterator, context) { argument
873 if (iterator.call(context, value, index)) {
881 function findAll(iterator, context) { argument
884 if (iterator.call(context, value, index))
890 function grep(filter, iterator, context) { argument
899 results.push(iterator.call(context, value, index));
926 function inject(memo, iterator, context) { argument
928 memo = iterator.call(context, memo, value, index);
940 function max(iterator, context) { argument
944 value = iterator.call(context, value, index);
951 function min(iterator, context) { argument
955 value = iterator.call(context, value, index);
962 function partition(iterator, context) { argument
966 (iterator.call(context, value, index) ?
980 function reject(iterator, context) { argument
983 if (!iterator.call(context, value, index))
989 function sortBy(iterator, context) { argument
993 criteria: iterator.call(context, value, index)
1089 function each(iterator, context) { argument
1091 if (i in this) iterator.call(context, this[i], i, this);
1351 function times(iterator, context) { argument
1352 $R(0, this, true).each(iterator, context);
3186 function getPixelValue(value, property, context) { argument
3201 var isPercentage = value.include('%'), isViewport = (context === document.viewport);
3215 context = context || element.parentNode;
3226 if (context === document.viewport) {
3234 whole = $(context).measure('width');
3236 whole = $(context).measure('height');
3337 var context = (position === 'fixed') ? document.viewport :
3350 newWidth = getPixelValue(element, 'width', context);
3352 newWidth = getPixelValue(element, 'width', context);
3985 var Sizzle = function(selector, context, results, seed) { argument
3987 var origContext = context = context || document;
3989 if ( context.nodeType !== 1 && context.nodeType !== 9 ) {
3997 var parts = [], m, set, checkSet, check, mode, extra, prune = true, contextXML = isXML(context),
4013 set = posProcess( parts[0] + parts[1], context );
4016 [ context ] :
4017 Sizzle( parts.shift(), context );
4029 if ( !seed && parts.length > 1 && context.nodeType === 9 && !contextXML &&
4031 var ret = Sizzle.find( parts.shift(), context, contextXML );
4032 context = ret.expr ? Sizzle.filter( ret.expr, ret.set )[0] : ret.set[0];
4035 if ( context ) {
4038 … === 1 && (parts[0] === "~" || parts[0] === "+") && context.parentNode ? context.parentNode : cont…
4057 pop = context;
4078 } else if ( context && context.nodeType === 1 ) {
4080 …if ( checkSet[i] && (checkSet[i] === true || checkSet[i].nodeType === 1 && contains(context, check…
4124 Sizzle.find = function(expr, context, isXML){ argument
4326 ID: function(match, context, isXML){
4327 if ( typeof context.getElementById !== "undefined" && !isXML ) {
4328 var m = context.getElementById(match[1]);
4332 NAME: function(match, context, isXML){
4333 if ( typeof context.getElementsByName !== "undefined" ) {
4334 var ret = [], results = context.getElementsByName(match[1]);
4345 TAG: function(match, context){
4346 return context.getElementsByTagName(match[1]);
4729 Expr.find.ID = function(match, context, isXML){ argument
4730 if ( typeof context.getElementById !== "undefined" && !isXML ) {
4731 var m = context.getElementById(match[1]);
4752 Expr.find.TAG = function(match, context){ argument
4753 var results = context.getElementsByTagName(match[1]);
4790 Sizzle = function(query, context, extra, seed){ argument
4791 context = context || document;
4793 if ( !seed && context.nodeType === 9 && !isXML(context) ) {
4795 return makeArray( context.querySelectorAll(query), extra );
4799 return oldSizzle(query, context, extra, seed);
4822 Expr.find.CLASS = function(match, context, isXML) { argument
4823 if ( typeof context.getElementsByClassName !== "undefined" && !isXML ) {
4824 return context.getElementsByClassName(match[1]);
4921 var posProcess = function(selector, context){ argument
4923 root = context.nodeType ? [context] : context;