HomeSort by relevance Sort by last modified time
    Searched refs:skipCount (Results 1 - 25 of 31) sorted by null

1 2

  /packages/apps/Email/tests/src/com/android/emailcommon/utility/
TextUtilitiesTests.java 87 int[] skipCount = new int[1];
89 char c = TextUtilities.stripHtmlEntity("&", 0, skipCount);
91 assertEquals(0, skipCount[0]);
93 c = TextUtilities.stripHtmlEntity("&;", 0, skipCount);
95 assertEquals(0, skipCount[0]);
97 c = TextUtilities.stripHtmlEntity("&nosuch;", 0, skipCount);
99 assertEquals(0, skipCount[0]);
101 c = TextUtilities.stripHtmlEntity("&nbspandmore;", 0, skipCount);
103 assertEquals(0, skipCount[0]);
105 c = TextUtilities.stripHtmlEntity("&#ABC", 0, skipCount);
    [all...]
  /packages/apps/Gallery/src/com/android/camera/gallery/
ImageListUber.java 114 int skipCount = 0;
123 if (skipCount + offset > index) {
124 int subindex = mSkipCounts[which] + (index - skipCount);
127 skipCount += offset;
131 for (; true; ++skipCount) {
134 if (skipCount == index) {
176 int skipCount = 0;
180 if (skipCount + offset > index) {
184 skipCount += offset;
216 int skipCount = 0
    [all...]
  /cts/apps/CtsVerifier/src/com/android/cts/verifier/sensors/reporting/
SensorTestDetails.java 56 int skipCount,
61 } else if (skipCount > 0) {
67 mSummary = context.getString(R.string.snsr_test_summary, passCount, skipCount, failCount);
  /external/chromium_org/third_party/WebKit/Source/modules/indexeddb/
InspectorIndexedDBAgent.h 59 virtual void requestData(ErrorString*, const String& securityOrigin, const String& databaseName, const String& objectStoreName, const String& indexName, int skipCount, int pageSize, const RefPtr<JSONObject>* keyRange, PassRefPtrWillBeRawPtr<RequestDataCallback>) OVERRIDE;
InspectorIndexedDBAgent.cpp 391 static PassRefPtr<OpenCursorCallback> create(ScriptState* scriptState, PassRefPtrWillBeRawPtr<RequestDataCallback> requestCallback, int skipCount, unsigned pageSize)
393 return adoptRef(new OpenCursorCallback(scriptState, requestCallback, skipCount, pageSize));
473 OpenCursorCallback(ScriptState* scriptState, PassRefPtrWillBeRawPtr<RequestDataCallback> requestCallback, int skipCount, unsigned pageSize)
477 , m_skipCount(skipCount)
492 static PassRefPtr<DataLoader> create(ScriptState* scriptState, PassRefPtrWillBeRawPtr<RequestDataCallback> requestCallback, const String& objectStoreName, const String& indexName, IDBKeyRange* idbKeyRange, int skipCount, unsigned pageSize)
494 return adoptRef(new DataLoader(scriptState, requestCallback, objectStoreName, indexName, idbKeyRange, skipCount, pageSize));
532 DataLoader(ScriptState* scriptState, PassRefPtrWillBeRawPtr<RequestDataCallback> requestCallback, const String& objectStoreName, const String& indexName, IDBKeyRange* idbKeyRange, int skipCount, unsigned pageSize)
538 , m_skipCount(skipCount)
666 void InspectorIndexedDBAgent::requestData(ErrorString* errorString, const String& securityOrigin, const String& databaseName, const String& objectStoreName, const String& indexName, int skipCount, int pageSize, const RefPtr<JSONObject>* keyRange, const PassRefPtrWillBeRawPtr<RequestDataCallback> requestCallback)
684 RefPtr<DataLoader> dataLoader = DataLoader::create(scriptState, requestCallback, objectStoreName, indexName, idbKeyRange, skipCount, pageSize)
    [all...]
  /external/qemu/android/filesystems/
ramdisk_extractor.cpp 261 size_t skipCount = 0;
270 skipCount = skipName + skipFile;
281 skipCount -= nameSize;
307 if (!input.doSkip(skipCount)) {
  /external/chromium_org/third_party/WebKit/Source/devtools/front_end/resources/
IndexedDBViews.js 292 var skipCount = this._skipCount;
296 if (!force && this._lastKey === key && this._lastPageSize === pageSize && this._lastSkipCount === skipCount)
300 skipCount = 0;
305 this._lastSkipCount = skipCount;
319 data["number"] = i + skipCount;
329 this._pageBackButton.disabled = skipCount === 0;
335 this._model.loadIndexData(this._databaseId, this._objectStore.name, this._index.name, idbKeyRange, skipCount, pageSize, callback.bind(this));
337 this._model.loadObjectStoreData(this._databaseId, this._objectStore.name, idbKeyRange, skipCount, pageSize, callback.bind(this));
  /external/chromium_org/third_party/skia/tests/
skia_test.cpp 175 int skipCount = 0;
185 ++skipCount;
211 toRun, failCount, skipCount, reporter.countTests());
  /external/chromium_org/third_party/WebKit/Source/devtools/front_end/sdk/
IndexedDBModel.js 355 * @param {number} skipCount
359 loadObjectStoreData: function(databaseId, objectStoreName, idbKeyRange, skipCount, pageSize, callback)
361 this._requestData(databaseId, databaseId.name, objectStoreName, "", idbKeyRange, skipCount, pageSize, callback);
369 * @param {number} skipCount
373 loadIndexData: function(databaseId, objectStoreName, indexName, idbKeyRange, skipCount, pageSize, callback)
375 this._requestData(databaseId, databaseId.name, objectStoreName, indexName, idbKeyRange, skipCount, pageSize, callback);
384 * @param {number} skipCount
388 _requestData: function(databaseId, databaseName, objectStoreName, indexName, idbKeyRange, skipCount, pageSize, callback)
416 this._agent.requestData(databaseId.securityOrigin, databaseName, objectStoreName, indexName, skipCount, pageSize, keyRange ? keyRange : undefined, innerCallback.bind(this));
  /external/skia/tests/
skia_test.cpp 194 int skipCount = 0;
203 ++skipCount;
229 toRun, failCount, skipCount, reporter.countTests());
  /packages/apps/UnifiedEmail/src/com/android/emailcommon/utility/
TextUtilities.java 371 // skipCount is an array of a single int; that int is set inside stripHtmlEntity and is
375 int[] skipCount = new int[1];
428 c = stripHtmlEntity(text, i, skipCount);
429 i += skipCount[0];
459 static /*package*/ char stripHtmlEntity(String text, int pos, int[] skipCount) {
463 skipCount[0] = 0;
482 skipCount[0] = entityLength;
498 skipCount[0] = entityLength;
    [all...]
  /hardware/qcom/display/msm8960/libhwcomposer/
hwc_utils.h 90 int skipCount;
348 return ctx->listStats[dpy].skipCount;
hwc_copybit.cpp 157 if(ctx->listStats[dpy].skipCount) {
hwc_utils.cpp 428 ctx->listStats[dpy].skipCount = 0;
445 ctx->listStats[dpy].skipCount++;
    [all...]
  /hardware/qcom/display/msm8974/libhwcomposer/
hwc_utils.h 93 int skipCount;
392 return ctx->listStats[dpy].skipCount;
hwc_copybit.cpp 152 if(ctx->listStats[dpy].skipCount) {
hwc_utils.cpp 369 ctx->listStats[dpy].skipCount = 0;
392 ctx->listStats[dpy].skipCount++;
    [all...]
  /hardware/qcom/display/msm8084/libhwcomposer/
hwc_utils.h 115 int skipCount;
564 return ctx->listStats[dpy].skipCount;
hwc_copybit.cpp 155 if(ctx->listStats[dpy].skipCount) {
hwc_utils.cpp 860 ctx->listStats[dpy].skipCount = 0;
906 ctx->listStats[dpy].skipCount++;
    [all...]
  /hardware/qcom/display/msm8226/libhwcomposer/
hwc_utils.h 116 int skipCount;
601 return ctx->listStats[dpy].skipCount;
hwc_utils.cpp 825 ctx->listStats[dpy].skipCount = 0;
866 ctx->listStats[dpy].skipCount++;
    [all...]
hwc_copybit.cpp 293 if(ctx->listStats[dpy].skipCount) {
    [all...]
  /external/chromium_org/third_party/WebKit/Source/devtools/front_end/profiler/
HeapSnapshotGridNodes.js 392 var skipCount = range.to - itemPosition;
393 insertionIndex += skipCount;
394 itemIndex += skipCount;
    [all...]
  /prebuilts/eclipse/maven/apache-maven-3.2.1/lib/
plexus-utils-3.0.17.jar 

Completed in 1574 milliseconds

1 2