HomeSort by relevance Sort by last modified time
    Searched defs:info (Results 701 - 725 of 3477) sorted by null

<<21222324252627282930>>

  /external/skia/src/ports/
SkOSFile_win.cpp 34 BY_HANDLE_FILE_INFORMATION info; local
35 if (0 == GetFileInformationByHandle(file, &info)) {
38 id->fVolume = info.dwVolumeSerialNumber;
39 id->fLsbSize = info.nFileIndexLow + (((ULONGLONG)info.nFileIndexHigh) << 32);
  /external/skia/tests/
PremulAlphaRoundTripTest.cpp 61 SkImageInfo info = bmp.info(); local
62 info.fColorType = colorType;
63 info.fAlphaType = kUnpremul_SkAlphaType;
64 canvas->writePixels(info, bmp.getPixels(), bmp.rowBytes(), 0, 0);
68 const SkImageInfo info = SkImageInfo::MakeN32Premul(256, 256); local
81 device.reset(SkBitmapDevice::Create(info));
94 device.reset(SkGpuDevice::Create(context, info, 0));
104 const SkImageInfo info = SkImageInfo::Make(256, 256, gUnpremul[upmaIdx].fColorType, local
107 readBmp1.allocPixels(info);
    [all...]
TileGridTest.cpp 37 SkTileGridFactory::TileGridInfo info; local
38 info.fMargin.set(borderPixels, borderPixels);
39 info.fOffset.setZero();
40 info.fTileInterval.set(10 - 2 * borderPixels, 10 - 2 * borderPixels);
41 SkTileGrid grid(2, 2, info, NULL);
55 SkTileGridFactory::TileGridInfo info; local
56 info.fMargin.setEmpty();
57 info.fOffset.setZero();
58 info.fTileInterval.set(10, 10);
63 SkTileGridFactory factory(info);
138 SkTileGridFactory::TileGridInfo info; local
    [all...]
  /external/valgrind/main/helgrind/tests/
tc19_shadowmem.c 17 Info;
25 Info* info = (Info*)infoV; local
26 firstoff = info->firstoff;
27 lastoff = info->lastoff;
28 skipoff = info->skipoff;
29 arr = info->arr;
31 assert( info->child == &child8 );
49 Info* info = (Info*)infoV local
73 Info* info = (Info*)infoV; local
97 Info* info = (Info*)infoV; local
139 Info info; local
282 Info* info = (Info*)infoV; local
    [all...]
  /frameworks/av/media/libmedia/
IMediaCodecList.cpp 117 const sp<MediaCodecInfo> info = getCodecInfo(index); local
118 if (info != NULL) {
120 info->writeToParcel(reply);
  /frameworks/base/core/java/android/print/
PrintJob.java 34 PrintJob(PrintJobInfo info, PrintManager printManager) {
35 mCachedInfo = info;
51 * <strong>Node:</strong>The returned info object is a snapshot of the
53 * info object that reflects the current print job state.
56 * @return The print job info.
62 PrintJobInfo info = mPrintManager.getPrintJobInfo(mCachedInfo.getId()); local
63 if (info != null) {
64 mCachedInfo = info;
  /frameworks/base/core/java/android/view/
MagnificationSpec.java 55 MagnificationSpec info = obtain(); local
56 info.scale = other.scale;
57 info.offsetX = other.offsetX;
58 info.offsetY = other.offsetY;
59 return info;
  /frameworks/base/core/java/com/android/internal/app/
HeavyWeightSwitcherActivity.java 109 ApplicationInfo info = getPackageManager().getApplicationInfo( local
111 appName = info.loadLabel(getPackageManager());
112 appIcon = info.loadIcon(getPackageManager());
  /frameworks/base/core/tests/coretests/src/android/view/
ListContextMenu.java 132 AdapterView.AdapterContextMenuInfo info = (AdapterView.AdapterContextMenuInfo)menuInfo; local
134 String text = ((TextView) info.targetView).getText().toString();
  /frameworks/ex/framesequence/jni/
FrameSequenceJNI.cpp 98 AndroidBitmapInfo info; local
100 if ((ret = AndroidBitmap_getInfo(env, bitmap, &info)) < 0) {
103 "Couldn't get info from Bitmap ");
113 int pixelStride = info.stride >> 2;
  /frameworks/native/services/sensorservice/
SensorDevice.cpp 65 Info model;
87 const Info& info = mActivationCount.valueFor(list[i].handle); local
89 info.batchParams.size());
90 for (size_t j = 0; j < info.batchParams.size(); j++) {
91 BatchParams params = info.batchParams.valueAt(j);
93 j < info.batchParams.size() - 1 ? ", " : "");
95 result.appendFormat(" }, selected=%4.1f ms\n", info.bestBatchParams.batchDelay / 1e6f);
98 info.batchParams.size());
99 for (size_t j = 0; j < info.batchParams.size(); j++)
    [all...]
  /frameworks/rs/
rsScriptGroup.h 78 DriverInfo info; member in struct:android::renderscript::ScriptGroup::Hal
  /frameworks/testing/uiautomator/cmds/uiautomator/src/com/android/commands/uiautomator/
DumpCommand.java 88 AccessibilityNodeInfo info = uiAutomation.getRootInActiveWindow(); local
89 if (info == null) {
99 AccessibilityNodeInfoDumper.dumpWindowToFile(info, dumpFile, rotation, size.x, size.y);
  /hardware/intel/common/libva/va/x11/
va_dri2.c 91 XExtDisplayInfo *info = DRI2FindDisplay(dpy); local
93 if (XextHasExtension(info)) {
94 *eventBase = info->codes->first_event;
95 *errorBase = info->codes->first_error;
104 XExtDisplayInfo *info = DRI2FindDisplay (dpy); local
108 XextCheckExtension (dpy, info, va_dri2ExtensionName, False);
112 req->reqType = info->codes->major_opcode;
132 XExtDisplayInfo *info = DRI2FindDisplay(dpy); local
136 XextCheckExtension (dpy, info, va_dri2ExtensionName, False);
140 req->reqType = info->codes->major_opcode
187 XExtDisplayInfo *info = DRI2FindDisplay(dpy); local
214 XExtDisplayInfo *info = DRI2FindDisplay(dpy); local
230 XExtDisplayInfo *info = DRI2FindDisplay(dpy); local
251 XExtDisplayInfo *info = DRI2FindDisplay(dpy); local
307 XExtDisplayInfo *info = DRI2FindDisplay(dpy); local
349 XExtDisplayInfo *info = DRI2FindDisplay(dpy); local
    [all...]
  /hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/examples/
decode_to_md5.c 86 const VpxVideoInfo *info = NULL; local
101 info = vpx_video_reader_get_info(reader);
103 decoder = get_vpx_decoder_by_fourcc(info->codec_fourcc);
set_maps.c 161 VpxVideoInfo info = {0}; local
176 info.codec_fourcc = encoder->fourcc;
177 info.frame_width = strtol(argv[2], NULL, 0);
178 info.frame_height = strtol(argv[3], NULL, 0);
179 info.time_base.numerator = 1;
180 info.time_base.denominator = fps;
182 if (info.frame_width <= 0 ||
183 info.frame_height <= 0 ||
184 (info.frame_width % 2) != 0 ||
185 (info.frame_height % 2) != 0)
    [all...]
simple_encoder.c 156 VpxVideoInfo info = {0}; local
188 info.codec_fourcc = encoder->fourcc;
189 info.frame_width = strtol(width_arg, NULL, 0);
190 info.frame_height = strtol(height_arg, NULL, 0);
191 info.time_base.numerator = 1;
192 info.time_base.denominator = fps;
194 if (info.frame_width <= 0 ||
195 info.frame_height <= 0 ||
196 (info.frame_width % 2) != 0 ||
197 (info.frame_height % 2) != 0)
    [all...]
vp8cx_set_ref.c 102 VpxVideoInfo info = {0}; local
123 info.codec_fourcc = encoder->fourcc;
124 info.frame_width = strtol(argv[1], NULL, 0);
125 info.frame_height = strtol(argv[2], NULL, 0);
126 info.time_base.numerator = 1;
127 info.time_base.denominator = fps;
129 if (info.frame_width <= 0 ||
130 info.frame_height <= 0 ||
131 (info.frame_width % 2) != 0 ||
132 (info.frame_height % 2) != 0)
    [all...]
  /hardware/libhardware/tests/camera2/
CameraModuleFixture.h 49 const CameraMetadata& staticInfo = mDevice->info();
88 struct camera_info info; local
89 ASSERT_EQ(OK, mModule->get_camera_info(cameraID, &info));
91 ASSERT_GE((int)info.device_version, CAMERA_DEVICE_API_VERSION_2_0) <<
93 info.device_version;
94 switch(info.device_version) {
107 info.device_version;
117 camera_info info; local
119 res = mModule->get_camera_info(cameraId, &info);
122 return info.device_version
    [all...]
  /hardware/qcom/display/msm8084/libgralloc/
fb_priv.h 47 struct fb_var_screeninfo info; member in struct:private_module_t
  /hardware/qcom/display/msm8226/libgralloc/
fb_priv.h 47 struct fb_var_screeninfo info; member in struct:private_module_t
  /hardware/qcom/display/msm8960/libgralloc/
fb_priv.h 47 struct fb_var_screeninfo info; member in struct:private_module_t
  /hardware/qcom/display/msm8974/libgralloc/
fb_priv.h 47 struct fb_var_screeninfo info; member in struct:private_module_t
  /hardware/samsung_slsi/exynos5/include/
exynos_v4l2.h 153 struct media_entity_desc info; member in struct:media_entity
  /ndk/sources/cxx-stl/llvm-libc++abi/libcxxabi/src/Unwind/
UnwindLevel1-gcc-ext.c 88 unw_proc_info_t info; local
92 if (unw_get_proc_info(&cursor, &info) == UNW_ESUCCESS)
93 return (void *)(long) info.start_ip;
148 /// Find dwarf unwind info for an address 'pc' in some function.
155 unw_proc_info_t info; local
159 unw_get_proc_info(&cursor, &info);
160 bases->tbase = (uintptr_t)info.extra;
162 bases->func = (uintptr_t)info.start_ip;
164 (void *)(long) info.unwind_info);
165 return (void *)(long) info.unwind_info
    [all...]

Completed in 1346 milliseconds

<<21222324252627282930>>