Searched refs:second (Results 126 - 149 of 149) sorted by relevance

123456

/frameworks/base/core/java/android/database/sqlite/
H A DSQLiteDatabase.java2149 Log.e(TAG, "PRAGMA integrity_check on " + p.second + " returned: " + rslt);
/frameworks/base/services/accessibility/java/com/android/server/accessibility/
H A DScreenMagnifier.java520 public boolean onScroll(MotionEvent first, MotionEvent second, float distanceX, argument
/frameworks/base/services/appwidget/java/com/android/server/appwidget/
H A DAppWidgetServiceImpl.java1524 destroyRemoteViewsService(key.second.getIntent(), widget);
1610 Intent intent = key.second.getIntent();
1987 pw.print(" package="); pw.println(grant.second);
2448 out.attribute(null, "packageName", binding.second);
/frameworks/compile/mclinker/lib/Target/Mips/
H A DMipsRelocator.cpp734 plt = it->second.first;
/frameworks/compile/slang/
H A Dslang_rs_reflection_cpp.cpp695 mOut << I->first << " " << I->second;
H A Dslang_rs_export_type.cpp767 return ETI->second;
/frameworks/base/libs/androidfw/
H A DResourceTypes.cpp1702 // The smallest 5 bits of the second char are the first alphabet.
1704 // The last three bits of the second char and the first two bits
1705 // of the first char are the second alphabet.
1706 const uint8_t second = ((in[1] & 0xe0) >> 5) + ((in[0] & 0x03) << 3); local
1711 out[1] = second + base;
1735 uint8_t second = (in[1] - base) & 0x007f; local
1738 out[0] = (0x80 | (third << 2) | (second >> 3));
1739 out[1] = ((second << 5) | first);
2989 // Computed attribute bags, first indexed by the type and second
/frameworks/compile/slang/BitWriter_2_9/
H A DBitcodeWriter.cpp212 NameVals.push_back(VE.getTypeID(TI->second));
710 Record.push_back(VE.getValueID(MDs[i].second));
/frameworks/opt/chips/src/com/android/ex/chips/
H A DRecipientEditTextView.java1932 public int compare(DrawableRecipientChip first, DrawableRecipientChip second) {
1934 int secondStart = spannable.getSpanStart(second);
2000 // Take the first <= CHIP_LIMIT addresses and get to the end of the second one.
/frameworks/rs/cpu_ref/
H A DrsCpuScript.cpp1093 mtls->sig = mExecutable->getInfo().getExportForeachFuncs()[slot].second;
/frameworks/base/services/core/java/com/android/server/content/
H A DSyncManager.java486 // Pick a random second in a day to seed all periodic syncs
931 newDelayInMs = previousSettings.second * 2;
1416 SyncStatusInfo status = syncAuthoritySyncStatus.second;
2213 final SyncStatusInfo status = info.second;
/frameworks/base/core/java/android/app/
H A DBackStackRecord.java613 targetNames.add(sharedElements[i].second);
H A DActivityThread.java1508 onNewActivityOptions(pair.first, pair.second);
2351 // the "debug.use-second-display" system property as a substring, then show
2353 String pkgName = SystemProperties.get("debug.second-display.pkg");
/frameworks/base/libs/hwui/
H A DDisplayListOp.h1562 return renderer.drawShadow(mCasterAlpha, buffers.first, buffers.second);
/frameworks/base/services/core/java/com/android/server/
H A DAppOpsService.java501 cb.mCallback.opChanged(rep.second, rep.first);
/frameworks/base/core/java/android/widget/
H A DGridLayout.java2300 values[i] = get(i).second;
/frameworks/base/services/core/java/com/android/server/net/
H A DNetworkPolicyManagerService.java1081 if (policy.template.matches(ident.second)) {
/frameworks/compile/slang/BitWriter_2_9_func/
H A DBitcodeWriter.cpp664 Record.push_back(VE.getValueID(MDs[i].second));
/frameworks/compile/slang/BitWriter_3_2/
H A DBitcodeWriter.cpp698 Record.push_back(VE.getValueID(MDs[i].second));
/frameworks/support/v7/gridlayout/src/android/support/v7/widget/
H A DGridLayout.java2175 values[i] = get(i).second;
/frameworks/base/core/java/android/content/pm/
H A DPackageParser.java1315 return new ApkLite(codePath, packageSplit.first, packageSplit.second, versionCode,
1353 splitName = packageSplit.second;
/frameworks/base/core/java/android/view/
H A DViewRootImpl.java302 // Variables to track frames per second, enabled via DEBUG_FPS flag
2041 * to blank containers, and force a second request/measure/layout pass in this frame. If
2042 * more requestLayout() calls are received during that second layout pass, we post those
2047 * next frame (if it is a request during the second layout pass).</p>
2062 // Let the request proceed normally; it will be processed in a second layout pass
2066 // Don't let the request proceed during the second layout pass.
2099 // the second pass, which may result in posting those requests to the next
2108 " during layout: running second layout pass");
2119 // layout flags, since requests happening during the second pass get noop'd
2123 // Post second
6322 getCommonPredecessor(View first, View second) argument
[all...]
/frameworks/base/tools/aapt/
H A DResourceTable.cpp2682 const map<String8, SourcePos>& configSrcMap = nameIter->second;
2692 locales->second.printf("locale %s found", locales->first.string());
/frameworks/base/services/core/java/com/android/server/am/
H A DActivityManagerService.java2605 if (DEBUG_LRU) Slog.d(TAG, "Adding to second-top of LRU activity list: " + app);
4820 processCpuTracker.wait(500); // measure over 1/2 second.
9148 // If we are taking more than a second, log about it.
11749 // 5 second sleep to let stacks arrive and be batched together
13666 if (object1.second.intValue() != object2.second.intValue()) {
13667 return object1.second.intValue() > object2.second.intValue() ? -1 : 1;
13707 int num = (origList.size()-1)-list.get(i).second;

Completed in 6577 milliseconds

123456