Searched refs:oc (Results 1 - 7 of 7) sorted by relevance

/frameworks/base/packages/SystemUI/src/com/android/systemui/
H A DDessertCaseView.java350 for (final Point oc : getOccupied(v)) {
351 mFreeList.add(oc);
352 mCells[oc.y*mColumns + oc.x] = null;
376 for (final Point oc : occupied) {
377 final View squatter = mCells[oc.y*mColumns + oc.x];
410 for (final Point oc : occupied) {
411 mCells[oc.y*mColumns + oc
[all...]
/frameworks/base/core/java/android/content/res/
H A DCompatibilityInfo.java524 CompatibilityInfo oc = (CompatibilityInfo)o;
525 if (mCompatibilityFlags != oc.mCompatibilityFlags) return false;
526 if (applicationDensity != oc.applicationDensity) return false;
527 if (applicationScale != oc.applicationScale) return false;
528 if (applicationInvertedScale != oc.applicationInvertedScale) return false;
/frameworks/base/wifi/java/android/net/wifi/
H A DWifiNative.java682 public boolean p2pSetChannel(int lc, int oc) { argument
683 if (DBG) Log.d(mTAG, "p2pSetChannel: lc="+lc+", oc="+oc);
693 if (oc >= 1 && oc <= 165 ) {
694 int freq = (oc <= 14 ? 2407 : 5000) + oc * 5;
697 } else if (oc == 0) {
698 /* oc==0 disables "P2P_SET disallow_freq" (enables all freqs) */
/frameworks/native/opengl/libagl/
H A Dprimitives.cpp897 unsigned int oc = 0; local
911 oc++;
917 oc++;
928 oc++;
933 oc++;
942 if (oc<3)
945 ic = oc;
963 unsigned int oc = 0; local
976 oc++;
982 oc
[all...]
/frameworks/base/services/java/com/android/server/content/
H A DContentService.java258 ObserverCall oc = calls.get(i);
260 oc.mObserver.onChange(oc.mSelfChange, uri);
262 Log.v(TAG, "Notified " + oc.mObserver + " of " + "update at " + uri);
267 IBinder binder = oc.mObserver.asBinder();
269 = oc.mNode.mObservers;
/frameworks/base/wifi/java/android/net/wifi/p2p/
H A DWifiP2pManager.java995 public void setWifiP2pChannels(Channel c, int lc, int oc, ActionListener listener) { argument
999 p2pChannels.putInt("oc", oc);
H A DWifiP2pService.java1069 int oc = p2pChannels.getInt("oc", 0);
1071 if (mWifiNative.p2pSetChannel(lc, oc)) {
1259 int oc = p2pChannels.getInt("oc", 0);
1261 if (mWifiNative.p2pSetChannel(lc, oc)) {

Completed in 987 milliseconds