Home | History | Annotate | Download | only in javascript

Lines Matching refs:nStart

47 	nStart = 0;

619 int nStart = 0;
641 nStart = pprintparamsObj->nStart;
659 nStart = (int)params[1];
678 pEnv->JS_docprint(bUI, nStart, nEnd, bSilent, bShrinkToFit, bPrintAsImage, bReverse, bAnnotations);
2111 int nStart = 0;
2122 v8::Handle<v8::Value> pValue = JS_GetObjectElement(isolate,pObj, L"nStart");
2123 nStart = (int)CJS_Value(m_isolate,pValue,GET_VALUE_TYPE(pValue));
2130 nStart = (int)params[0];
2135 nStart = (int)params[0];
2141 if (nStart < 0) nStart = 0;
2142 if (nStart >= nTotal) nStart = nTotal - 1;
2147 if (nEnd < nStart) nEnd = nStart;
2152 return m_pDocument->DeletePages(nStart, nEnd - nStart + 1);
2177 int nStart = 0;
2190 v8::Handle<v8::Value> pValue = JS_GetObjectElement(isolate,pObj, L"nStart");
2191 nStart = (int)CJS_Value(m_isolate,pValue,GET_VALUE_TYPE(pValue));
2201 nStart = (int)params[0];
2206 nStart = (int)params[0];
2211 nStart = (int)params[0];
2216 if (nEnd < nStart)
2217 nEnd = nStart;
2223 for (int i=nStart; i<=nEnd; i++)
2264 int nStart = 0;
2285 pValue = JS_GetObjectElement(isolate,pObj, L"nStart");
2286 nStart = (int)CJS_Value(m_isolate,pValue,GET_VALUE_TYPE(pValue));
2304 nStart = (int)params[2];
2334 if (nStart < 0) nStart = 0;
2335 if (nStart >= nTotal) nStart = nTotal - 1;
2340 if (nEnd < nStart) nEnd = nStart;
2343 for (int i=nStart; i<=nEnd; i++)
2372 int nStart = -1;
2393 pValue = JS_GetObjectElement(isolate,pObj, L"nStart");
2394 nStart = (int)CJS_Value(m_isolate,pValue,GET_VALUE_TYPE(pValue));
2412 nStart = (int)params[2];
2440 if (nStart < 0)
2444 nStart = 0;
2449 nStart = 0;
2456 nEnd = nStart;
2460 if (nStart >= nTotal) nStart = nTotal - 1;
2463 if (nEnd < nStart) nEnd = nStart;
2468 for (int i=nStart; i<=nEnd; i++)