/development/tools/yuv420sp2rgb/ |
D | yuv420sp2rgb.c | 46 rgb_context *ctx); 62 rgb_context ctx; in color_convert_common() local 64 ctx.buffer = buffer; in color_convert_common() 65 ctx.size = size; /* debug */ in color_convert_common() 66 ctx.width = width; in color_convert_common() 67 ctx.height = height; in color_convert_common() 68 ctx.rotate = rotate; in color_convert_common() 74 ctx.i = i; in color_convert_common() 75 ctx.j = j; in color_convert_common() 76 cb(nB, nB, nB, &ctx); in color_convert_common() [all …]
|
/development/samples/browseable/BasicSyncAdapter/src/com.example.android.basicsyncadapter/provider/ |
D | FeedProvider.java | 109 Context ctx = getContext(); in query() local 110 assert ctx != null; in query() 111 c.setNotificationUri(ctx.getContentResolver(), uri); in query() 138 Context ctx = getContext(); in insert() local 139 assert ctx != null; in insert() 140 ctx.getContentResolver().notifyChange(uri, null, false); in insert() 170 Context ctx = getContext(); in delete() local 171 assert ctx != null; in delete() 172 ctx.getContentResolver().notifyChange(uri, null, false); in delete() 201 Context ctx = getContext(); in update() local [all …]
|
/development/samples/KeyChainDemo/src/com/example/android/keychain/ |
D | SecureWebServer.java | 57 public SecureWebServer(Context ctx) { in SecureWebServer() argument 68 FileInputStream fis = ctx.getAssets() in SecureWebServer() 85 base64Image = createBase64Image(ctx); in SecureWebServer() 172 private String createBase64Image(Context ctx) { in createBase64Image() argument 175 bis = new BufferedInputStream(ctx.getAssets().open(EMBEDDED_IMAGE_FILENAME)); in createBase64Image()
|
/development/samples/browseable/BeamLargeFiles/src/com.example.android.common/assetprovider/ |
D | AssetProvider.java | 50 Context ctx = getContext(); in onCreate() local 51 if (ctx == null) { in onCreate() 55 mAssets = ctx.getAssets(); in onCreate()
|
/development/samples/RandomMusicPlayer/src/com/example/android/musicplayer/ |
D | AudioFocusHelper.java | 34 public AudioFocusHelper(Context ctx, MusicFocusable focusable) { in AudioFocusHelper() argument 35 mAM = (AudioManager) ctx.getSystemService(Context.AUDIO_SERVICE); in AudioFocusHelper()
|
/development/samples/SupportLeanbackShowcase/app/src/main/java/android/support/v17/leanback/supportleanbackshowcase/utils/ |
D | Utils.java | 29 public static int convertDpToPixel(Context ctx, int dp) { in convertDpToPixel() argument 30 float density = ctx.getResources().getDisplayMetrics().density; in convertDpToPixel()
|
/development/samples/WeatherListWidget/src/com/example/android/weatherlistwidget/ |
D | WeatherWidgetProvider.java | 103 public void onReceive(Context ctx, Intent intent) { in onReceive() argument 110 final Context context = ctx; in onReceive() 145 final String formatStr = ctx.getResources().getString(R.string.toast_format_string); in onReceive() 146 Toast.makeText(ctx, String.format(formatStr, day), Toast.LENGTH_SHORT).show(); in onReceive() 149 super.onReceive(ctx, intent); in onReceive()
|
/development/tutorials/NotepadCodeLab/Notepadv3Solution/src/com/android/demo/notepad3/ |
D | NotesDbAdapter.java | 87 public NotesDbAdapter(Context ctx) { in NotesDbAdapter() argument 88 this.mCtx = ctx; in NotesDbAdapter()
|
/development/tutorials/NotepadCodeLab/Notepadv1/src/com/android/demo/notepad1/ |
D | NotesDbAdapter.java | 87 public NotesDbAdapter(Context ctx) { in NotesDbAdapter() argument 88 this.mCtx = ctx; in NotesDbAdapter()
|
/development/tutorials/NotepadCodeLab/Notepadv3/src/com/android/demo/notepad3/ |
D | NotesDbAdapter.java | 87 public NotesDbAdapter(Context ctx) { in NotesDbAdapter() argument 88 this.mCtx = ctx; in NotesDbAdapter()
|
/development/tutorials/NotepadCodeLab/Notepadv1Solution/src/com/android/demo/notepad1/ |
D | NotesDbAdapter.java | 87 public NotesDbAdapter(Context ctx) { in NotesDbAdapter() argument 88 this.mCtx = ctx; in NotesDbAdapter()
|
/development/tutorials/NotepadCodeLab/Notepadv2/src/com/android/demo/notepad2/ |
D | NotesDbAdapter.java | 87 public NotesDbAdapter(Context ctx) { in NotesDbAdapter() argument 88 this.mCtx = ctx; in NotesDbAdapter()
|
/development/tutorials/NotepadCodeLab/Notepadv2Solution/src/com/android/demo/notepad2/ |
D | NotesDbAdapter.java | 87 public NotesDbAdapter(Context ctx) { in NotesDbAdapter() argument 88 this.mCtx = ctx; in NotesDbAdapter()
|
/development/samples/browseable/SkeletonWearableApp/src/com.example.android.google.wearable.app/ |
D | GridExampleActivity.java | 62 public MainAdapter(Context ctx, FragmentManager fm) { in MainAdapter() argument 64 mContext = ctx; in MainAdapter()
|
/development/ndk/platforms/android-9/include/EGL/ |
D | egl.h | 300 EGLAPI EGLBoolean EGLAPIENTRY eglDestroyContext(EGLDisplay dpy, EGLContext ctx); 302 EGLSurface read, EGLContext ctx); 307 EGLAPI EGLBoolean EGLAPIENTRY eglQueryContext(EGLDisplay dpy, EGLContext ctx,
|
D | eglext.h | 84 EGLAPI EGLImageKHR EGLAPIENTRY eglCreateImageKHR (EGLDisplay dpy, EGLContext ctx, EGLenum target, E… 87 typedef EGLImageKHR (EGLAPIENTRYP PFNEGLCREATEIMAGEKHRPROC) (EGLDisplay dpy, EGLContext ctx, EGLenu…
|
/development/samples/browseable/MediaBrowserService/src/com.example.android.mediabrowserservice/ |
D | PackageValidator.java | 50 public PackageValidator(Context ctx) { in PackageValidator() argument 51 mValidCertificates = readValidCertificates(ctx.getResources().getXml( in PackageValidator()
|
/development/samples/Support4Demos/src/com/example/android/supportv4/media/ |
D | PackageValidator.java | 52 public PackageValidator(Context ctx) { in PackageValidator() argument 53 mValidCertificates = readValidCertificates(ctx.getResources().getXml( in PackageValidator()
|
/development/samples/browseable/GridViewPager/src/com.example.android.wearable.gridviewpager/ |
D | SampleGridPagerAdapter.java | 54 public SampleGridPagerAdapter(Context ctx, FragmentManager fm) { in SampleGridPagerAdapter() argument 56 mContext = ctx; in SampleGridPagerAdapter()
|
/development/ndk/platforms/android-4/samples/san-angeles/jni/ |
D | importgl.h | 68 FNDEF(EGLBoolean, eglDestroyContext, (EGLDisplay dpy, EGLContext ctx)); 75 FNDEF(EGLBoolean, eglMakeCurrent, (EGLDisplay dpy, EGLSurface draw, EGLSurface read, EGLContext ctx…
|
/development/samples/ContactManager/src/com/example/android/contactmanager/ |
D | ContactAdder.java | 219 Context ctx = getApplicationContext(); in createContactEntry() 222 Toast toast = Toast.makeText(ctx, txt, duration); in createContactEntry()
|
/development/ndk/platforms/android-21/include/arpa/ |
D | nameser.h | 270 void *ctx; member
|