/development/perftests/panorama/feature_stab/db_vlvm/ |
D | db_utilities.cpp | 23 float** db_SetupImageReferences_f(float *im,int w,int h) in db_SetupImageReferences_f() argument 31 img[i]=im+w*i; in db_SetupImageReferences_f() 36 unsigned char** db_SetupImageReferences_u(unsigned char *im,int w,int h) in db_SetupImageReferences_u() argument 46 img[i]=im+w*i; in db_SetupImageReferences_u() 50 float** db_AllocImage_f(int w,int h,int over_allocation) in db_AllocImage_f() argument 54 im=new float [w*h+over_allocation]; in db_AllocImage_f() 55 img=db_SetupImageReferences_f(im,w,h); in db_AllocImage_f() 60 unsigned char** db_AllocImage_u(int w,int h,int over_allocation) in db_AllocImage_u() argument 64 im=new unsigned char [w*h+over_allocation]; in db_AllocImage_u() 65 img=db_SetupImageReferences_u(im,w,h); in db_AllocImage_u() [all …]
|
/development/samples/browseable/BasicAndroidKeyStore/src/com.example.android.basicandroidkeystore/ |
D | BasicAndroidKeyStoreFragment.java | 89 Log.w(TAG, "RSA not supported", e); in onOptionsItemSelected() 91 Log.w(TAG, "No such provider: AndroidKeyStore"); in onOptionsItemSelected() 93 Log.w(TAG, "Invalid Algorithm Parameter Exception", e); in onOptionsItemSelected() 100 Log.w(TAG, "KeyStore not Initialized", e); in onOptionsItemSelected() 102 Log.w(TAG, "KeyPair not recovered", e); in onOptionsItemSelected() 104 Log.w(TAG, "RSA not supported", e); in onOptionsItemSelected() 106 Log.w(TAG, "Invalid Key", e); in onOptionsItemSelected() 108 Log.w(TAG, "Invalid Signature", e); in onOptionsItemSelected() 110 Log.w(TAG, "IO Exception", e); in onOptionsItemSelected() 112 Log.w(TAG, "Error occurred while loading certificates", e); in onOptionsItemSelected() [all …]
|
/development/samples/ApiDemos/src/com/example/android/apis/security/ |
D | KeyStoreUsage.java | 276 Log.w(TAG, "Could not list keys", e); in doInBackground() 279 Log.w(TAG, "Could not list keys", e); in doInBackground() 282 Log.w(TAG, "Could not list keys", e); in doInBackground() 285 Log.w(TAG, "Could not list keys", e); in doInBackground() 325 Log.w(TAG, "Could not generate key", e); in doInBackground() 328 Log.w(TAG, "Could not generate key", e); in doInBackground() 331 Log.w(TAG, "Could not generate key", e); in doInBackground() 364 Log.w(TAG, "Not an instance of a PrivateKeyEntry"); in doInBackground() 374 Log.w(TAG, "Could not generate key", e); in doInBackground() 377 Log.w(TAG, "Could not generate key", e); in doInBackground() [all …]
|
/development/samples/ApiDemos/src/com/example/android/apis/graphics/ |
D | Vertices.java | 58 float w = bm.getWidth(); in SampleView() local 61 setXY(mTexs, 0, w/2, h/2); in SampleView() 63 setXY(mTexs, 2, w, 0); in SampleView() 64 setXY(mTexs, 3, w, h); in SampleView() 67 setXY(mVerts, 0, w/2, h/2); in SampleView() 69 setXY(mVerts, 2, w, 0); in SampleView() 70 setXY(mVerts, 3, w, h); in SampleView()
|
D | BitmapDecode.java | 91 int w = mBitmap2.getWidth(); in SampleView() local 93 int[] pixels = new int[w*h]; in SampleView() 94 mBitmap2.getPixels(pixels, 0, w, 0, 0, w, h); in SampleView() 95 mBitmap3 = Bitmap.createBitmap(pixels, 0, w, w, h, in SampleView() 97 mBitmap4 = Bitmap.createBitmap(pixels, 0, w, w, h, in SampleView()
|
/development/samples/Snake/src/com/example/android/snake/ |
D | BackgroundView.java | 77 protected void onSizeChanged(int w, int h, int oldw, int oldh) { in onSizeChanged() argument 78 super.onSizeChanged(w, h, oldw, oldh); in onSizeChanged() 82 w / 2, h / 2, in onSizeChanged() 84 w, 0, in onSizeChanged() 85 w, h, in onSizeChanged()
|
/development/samples/VoicemailProviderDemo/src/com/example/android/voicemail/common/logging/ |
D | Logger.java | 84 public void w(String msg) { in w() method in Logger 85 Log.w(APP_TAG, getMsg(msg)); in w() 88 public void w(String msg, Throwable t) { in w() method in Logger 89 Log.w(APP_TAG, getMsg(msg), t); in w()
|
/development/perftests/panorama/feature_stab/src/dbregtest/ |
D | dbregtest.cpp | 147 int w,h; in main() local 171 w = ref.GetWidth(); in main() 176 …reg.Init(w,h,motion_model_type,DEFAULT_MAX_ITERATIONS,linear_polish,quarter_resolution,DB_POINT_ST… in main() 177 lut_x = db_AllocImage_f(w,h); in main() 178 lut_y = db_AllocImage_f(w,h); in main() 226 db_GenerateHomographyLut(lut_x,lut_y,w,h,H); in main() 229 PgmImage warped(w,h,format); in main() 236 … db_WarpImageLutBilinear_rgb(color_ref.GetRowPointers(),warped.GetRowPointers(),w,h,lut_x,lut_y); in main() 238 db_WarpImageLut_u(ref.GetRowPointers(),warped.GetRowPointers(),w,h,lut_x,lut_y,DB_WARP_FAST); in main()
|
/development/samples/ApiDemos/src/com/example/android/apis/graphics/spritetext/ |
D | Grid.java | 32 public Grid(int w, int h) { in Grid() argument 33 if (w < 0 || w >= 65536) { in Grid() 39 if (w * h >= 65536) { in Grid() 43 mW = w; in Grid() 45 int size = w * h; in Grid()
|
/development/ndk/platforms/android-18/samples/MoreTeapots/src/com/sample/helper/ |
D | NDKHelper.java | 105 Log.w("NDKHelper", "Coundn't load a file:" + path); in loadTexture() 139 Log.w("NDKHelper", "Coundn't load a file:" + path); in openBitmap() 157 int w = bmp.getWidth(); in getBitmapPixels() local 159 bmp.getPixels(pixels, 0, w, 0, 0, w, h); in getBitmapPixels() 171 Log.w("NDKHelper", "ai.nativeLibraryDir:" + ai.nativeLibraryDir); in getNativeLibraryDirectory()
|
/development/ndk/platforms/android-17/samples/Teapot/src/com/sample/helper/ |
D | NDKHelper.java | 105 Log.w("NDKHelper", "Coundn't load a file:" + path); in loadTexture() 139 Log.w("NDKHelper", "Coundn't load a file:" + path); in openBitmap() 157 int w = bmp.getWidth(); in getBitmapPixels() local 159 bmp.getPixels(pixels, 0, w, 0, 0, w, h); in getBitmapPixels() 171 Log.w("NDKHelper", "ai.nativeLibraryDir:" + ai.nativeLibraryDir); in getNativeLibraryDirectory()
|
/development/ndk/platforms/android-4/samples/san-angeles/jni/ |
D | app-android.c | 56 Java_com_example_SanAngeles_DemoRenderer_nativeResize( JNIEnv* env, jobject thiz, jint w, jint h ) in Java_com_example_SanAngeles_DemoRenderer_nativeResize() argument 58 sWindowWidth = w; in Java_com_example_SanAngeles_DemoRenderer_nativeResize() 60 __android_log_print(ANDROID_LOG_INFO, "SanAngeles", "resize w=%d h=%d", w, h); in Java_com_example_SanAngeles_DemoRenderer_nativeResize()
|
/development/samples/browseable/MediaEffects/src/com.example.android.common/logger/ |
D | Log.java | 157 public static void w(String tag, String msg, Throwable tr) { in w() method in Log 167 public static void w(String tag, String msg) { in w() method in Log 168 w(tag, msg, null); in w() 178 public static void w(String tag, Throwable tr) { in w() method in Log 179 w(tag, null, tr); in w()
|
/development/samples/browseable/CardReader/src/com.example.android.common/logger/ |
D | Log.java | 157 public static void w(String tag, String msg, Throwable tr) { in w() method in Log 167 public static void w(String tag, String msg) { in w() method in Log 168 w(tag, msg, null); in w() 178 public static void w(String tag, Throwable tr) { in w() method in Log 179 w(tag, null, tr); in w()
|
/development/samples/browseable/ActivityInstrumentation/src/com.example.android.common.logger/ |
D | Log.java | 157 public static void w(String tag, String msg, Throwable tr) { in w() method in Log 167 public static void w(String tag, String msg) { in w() method in Log 168 w(tag, msg, null); in w() 178 public static void w(String tag, Throwable tr) { in w() method in Log 179 w(tag, null, tr); in w()
|
/development/samples/browseable/AppRestrictionSchema/src/com.example.android.common/logger/ |
D | Log.java | 157 public static void w(String tag, String msg, Throwable tr) { in w() method in Log 167 public static void w(String tag, String msg) { in w() method in Log 168 w(tag, msg, null); in w() 178 public static void w(String tag, Throwable tr) { in w() method in Log 179 w(tag, null, tr); in w()
|
/development/samples/browseable/BeamLargeFiles/src/com.example.android.common/logger/ |
D | Log.java | 157 public static void w(String tag, String msg, Throwable tr) { in w() method in Log 167 public static void w(String tag, String msg) { in w() method in Log 168 w(tag, msg, null); in w() 178 public static void w(String tag, Throwable tr) { in w() method in Log 179 w(tag, null, tr); in w()
|
/development/samples/browseable/CustomChoiceList/src/com.example.android.common.logger/ |
D | Log.java | 157 public static void w(String tag, String msg, Throwable tr) { in w() method in Log 167 public static void w(String tag, String msg) { in w() method in Log 168 w(tag, msg, null); in w() 178 public static void w(String tag, Throwable tr) { in w() method in Log 179 w(tag, null, tr); in w()
|
/development/samples/browseable/BorderlessButtons/src/com.example.android.common.logger/ |
D | Log.java | 157 public static void w(String tag, String msg, Throwable tr) { in w() method in Log 167 public static void w(String tag, String msg) { in w() method in Log 168 w(tag, msg, null); in w() 178 public static void w(String tag, Throwable tr) { in w() method in Log 179 w(tag, null, tr); in w()
|
/development/samples/browseable/StorageProvider/src/com.example.android.common/logger/ |
D | Log.java | 157 public static void w(String tag, String msg, Throwable tr) { in w() method in Log 167 public static void w(String tag, String msg) { in w() method in Log 168 w(tag, msg, null); in w() 178 public static void w(String tag, Throwable tr) { in w() method in Log 179 w(tag, null, tr); in w()
|
/development/samples/browseable/StorageClient/src/com.example.android.common/logger/ |
D | Log.java | 157 public static void w(String tag, String msg, Throwable tr) { in w() method in Log 167 public static void w(String tag, String msg) { in w() method in Log 168 w(tag, msg, null); in w() 178 public static void w(String tag, Throwable tr) { in w() method in Log 179 w(tag, null, tr); in w()
|
/development/samples/browseable/RuntimePermissions/src/com.example.android.common.logger/ |
D | Log.java | 157 public static void w(String tag, String msg, Throwable tr) { in w() method in Log 167 public static void w(String tag, String msg) { in w() method in Log 168 w(tag, msg, null); in w() 178 public static void w(String tag, Throwable tr) { in w() method in Log 179 w(tag, null, tr); in w()
|
/development/samples/browseable/SlidingTabsBasic/src/com.example.android.common/logger/ |
D | Log.java | 157 public static void w(String tag, String msg, Throwable tr) { in w() method in Log 167 public static void w(String tag, String msg) { in w() method in Log 168 w(tag, msg, null); in w() 178 public static void w(String tag, Throwable tr) { in w() method in Log 179 w(tag, null, tr); in w()
|
/development/samples/browseable/ElevationDrag/src/com.example.android.common/logger/ |
D | Log.java | 157 public static void w(String tag, String msg, Throwable tr) { in w() method in Log 167 public static void w(String tag, String msg) { in w() method in Log 168 w(tag, msg, null); in w() 178 public static void w(String tag, Throwable tr) { in w() method in Log 179 w(tag, null, tr); in w()
|
/development/samples/browseable/ElevationBasic/src/com.example.android.common/logger/ |
D | Log.java | 157 public static void w(String tag, String msg, Throwable tr) { in w() method in Log 167 public static void w(String tag, String msg) { in w() method in Log 168 w(tag, msg, null); in w() 178 public static void w(String tag, Throwable tr) { in w() method in Log 179 w(tag, null, tr); in w()
|