Searched defs:np (Results 1 - 5 of 5) sorted by relevance

/frameworks/base/tools/orientationplot/
H A Dorientationplot.py23 import numpy as np namespace
/frameworks/base/tools/velocityplot/
H A Dvelocityplot.py27 import numpy as np namespace
/frameworks/native/libs/binder/
H A DMemoryDealer.cpp445 int np = ((cur->next) && cur->next->prev != cur) ? 1 : 0; local
452 errs[np|pn]);
/frameworks/base/graphics/java/android/graphics/drawable/
H A DDrawable.java990 byte[] np = bm.getNinePatchChunk();
991 if (np == null || !NinePatch.isNinePatchChunk(np)) {
992 np = null;
998 return drawableFromBitmap(res, bm, np, pad, opticalInsets, srcName);
1279 private static Drawable drawableFromBitmap(Resources res, Bitmap bm, byte[] np, argument
1282 if (np != null) {
1283 return new NinePatchDrawable(res, bm, np, pad, layoutBounds, srcName);
/frameworks/base/telephony/java/android/telephony/
H A DPhoneNumberUtils.java710 String np = extractNetworkPortionAlt(phoneNumber);
711 return internalGetStrippedReversed(np, MIN_MATCH);
723 String np = extractNetworkPortionAlt(phoneNumber);
725 if (np == null) return null;
727 return internalGetStrippedReversed(np, np.length());
732 * Returns null if np == null
735 internalGetStrippedReversed(String np, int numDigits) { argument
736 if (np == null) return null;
739 int length = np
[all...]

Completed in 554 milliseconds