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.cpp453 int np = ((cur->next) && cur->next->prev != cur) ? 1 : 0; local
460 errs[np|pn]);
/frameworks/base/graphics/java/android/graphics/drawable/
H A DDrawable.java1197 byte[] np = bm.getNinePatchChunk();
1198 if (np == null || !NinePatch.isNinePatchChunk(np)) {
1199 np = null;
1205 return drawableFromBitmap(res, bm, np, pad, opticalInsets, srcName);
1462 private static Drawable drawableFromBitmap(Resources res, Bitmap bm, byte[] np, argument
1465 if (np != null) {
1466 return new NinePatchDrawable(res, bm, np, pad, layoutBounds, srcName);
/frameworks/base/telephony/java/android/telephony/
H A DPhoneNumberUtils.java715 String np = extractNetworkPortionAlt(phoneNumber);
716 return internalGetStrippedReversed(np, MIN_MATCH);
728 String np = extractNetworkPortionAlt(phoneNumber);
730 if (np == null) return null;
732 return internalGetStrippedReversed(np, np.length());
737 * Returns null if np == null
740 internalGetStrippedReversed(String np, int numDigits) { argument
741 if (np == null) return null;
744 int length = np
[all...]

Completed in 2781 milliseconds