/external/webkit/Source/WebCore/html/ |
HTMLCollection.h | 66 CollectionCache* info() const { return m_info; } function in class:WebCore::HTMLCollection
|
/external/webkit/Source/WebCore/html/canvas/ |
WebGLProgram.cpp | 77 ActiveInfo info; local 78 context3d->getActiveAttrib(object(), i, info); local 79 m_activeAttribLocations[i] = context3d->getAttribLocation(object(), info.name.charactersWithNullTermination());
|
/external/webkit/Source/WebCore/platform/brew/ |
ScreenBrew.cpp | 49 static void getDisplayInfo(DisplayInfo& info) 57 info.width = bitmapInfo.cx; 58 info.height = bitmapInfo.cy; 59 info.depth = bitmapInfo.nDepth; 64 DisplayInfo info; local 65 getDisplayInfo(info); 67 return FloatRect(0, 0, info.width, info.height); 77 DisplayInfo info; local 78 getDisplayInfo(info); [all...] |
/external/webkit/Source/WebCore/platform/image-encoders/skia/ |
PNGImageEncoder.cpp | 79 png_info* info = png_create_info_struct(png); local 80 if (!png || !info || setjmp(png_jmpbuf(png))) { 81 png_destroy_write_struct(png ? &png : 0, info ? &info : 0); 98 png_set_IHDR(png, info, imageSize.width(), imageSize.height(), 100 png_write_info(png, info); 113 png_write_end(png, info); 114 png_destroy_write_struct(&png, &info);
|
/external/webkit/Source/WebCore/platform/win/ |
DragImageCairoWin.cpp | 90 BITMAP info; local 91 GetObject(bitmap, sizeof(info), &info); 92 ASSERT(info.bmBitsPixel == 32); 97 return cairo_image_surface_create_for_data((unsigned char*)info.bmBits, 99 info.bmWidth, 100 info.bmHeight, 101 info.bmWidthBytes);
|
/external/webkit/Source/WebKit/chromium/src/ |
ExternalPopupMenu.cpp | 66 WebPopupMenuInfo info; local 67 getPopupMenuInfo(&info); 68 if (info.items.isEmpty()) 71 m_webViewClient->createExternalPopupMenu(info, this); 128 void ExternalPopupMenu::getPopupMenuInfo(WebPopupMenuInfo* info) 151 info->itemHeight = m_popupMenuClient->menuStyle().font().fontMetrics().height(); 152 info->itemFontSize = 154 info->selectedIndex = m_popupMenuClient->selectedIndex(); 155 info->rightAligned = 157 info->items.swap(items) [all...] |
/external/webkit/Source/WebKit/win/WebCoreSupport/ |
WebPlatformStrategies.cpp | 78 PluginInfo info; local 79 info.name = package->name(); 80 info.file = package->fileName(); 81 info.desc = package->description(); 85 info.mimes.reserveCapacity(mimeToDescriptions.size()); 95 info.mimes.append(mime); 98 outPlugins[i] = info;
|
/external/webkit/Source/WebKit2/Shared/cg/ |
ShareableBitmapCG.cpp | 39 CGBitmapInfo info = kCGBitmapByteOrder32Host; local 41 info |= kCGImageAlphaPremultipliedFirst; 43 info |= kCGImageAlphaNoneSkipFirst; 45 return info;
|
/external/webkit/Source/WebKit2/UIProcess/Plugins/ |
PluginInfoStore.h | 52 WebCore::PluginInfo info; member in struct:WebKit::PluginInfoStore::Plugin 64 // Returns the info for a plug-in that can handle the given MIME type. 69 // Returns the info for the plug-in with the given path.
|
/frameworks/base/core/jni/ |
android_graphics_PixelFormat.cpp | 45 PixelFormatInfo info; local 53 info.bytesPerPixel = 1; 54 info.bitsPerPixel = 16; 58 info.bytesPerPixel = 1; 59 info.bitsPerPixel = 12; 63 info.bytesPerPixel = 1; 64 info.bitsPerPixel = 16; 68 err = getPixelFormatInfo(format, &info); 75 env->SetIntField(pixelFormatObject, offsets.bytesPerPixel, info.bytesPerPixel); 76 env->SetIntField(pixelFormatObject, offsets.bitsPerPixel, info.bitsPerPixel) [all...] |
/frameworks/base/libs/ui/ |
PixelFormat.cpp | 39 PixelFormatInfo info; local 40 status_t err = getPixelFormatInfo(format, &info); 41 return (err < 0) ? err : info.bytesPerPixel; 46 PixelFormatInfo info; local 47 status_t err = getPixelFormatInfo(format, &info); 48 return (err < 0) ? err : info.bitsPerPixel; 51 status_t getPixelFormatInfo(PixelFormat format, PixelFormatInfo* info) 56 if (info->version != sizeof(PixelFormatInfo)) 63 info->bitsPerPixel = 16; 67 info->bitsPerPixel = 12 [all...] |
/frameworks/base/tools/layoutlib/bridge/src/android/view/ |
AttachInfo_Accessor.java | 31 AttachInfo info = new AttachInfo(new BridgeWindowSession(), new BridgeWindow(), local 33 info.mHasWindowFocus = true; 34 info.mWindowVisibility = View.VISIBLE; 35 info.mInTouchMode = false; // this is so that we can display selections. 36 info.mHardwareAccelerated = false; 37 view.dispatchAttachedToWindow(info, 0);
|
/frameworks/compile/libbcc/lib/ExecutionEngine/ |
ScriptCached.cpp | 130 FuncInfo *info = funcInfoList; local 133 I != E && funcCount > 0; ++I, ++info, --funcCount) { 134 info->name = I->first.c_str(); 135 info->addr = I->second.first; 136 info->size = I->second.second;
|
/libcore/luni/src/main/java/org/apache/harmony/security/pkcs10/ |
CertificationRequest.java | 44 private CertificationRequestInfo info; field in class:CertificationRequest 55 public CertificationRequest(CertificationRequestInfo info, 57 this.info = info; 62 private CertificationRequest(CertificationRequestInfo info, 64 this(info, algId, signature); 69 return info; 90 CertificationRequestInfo.ASN1, // info 106 values[0] = certReq.info;
|
/libcore/support/src/test/java/tests/resources/Package/ |
hyts_package.jar | |
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/launch/ |
EmptyLaunchAction.java | 26 public boolean doLaunchAction(DelayedLaunchInfo info, IDevice device) { 29 info.getPackageFile().getFullPath().toOSString()); 30 AdtPlugin.printToConsole(info.getProject(), msg, "Done!");
|
/system/core/run-as/ |
run-as.c | 106 PackageInfo info; local 120 if (get_package_info(pkgname, &info) < 0) { 126 if (info.uid < AID_APP) { 132 if (!info.isDebuggable) { 138 if (check_data_path(info.dataDir, info.uid) < 0) { 147 ret = chdir(info.dataDir); 159 uid = gid = info.uid;
|
/system/extras/fatblock/ |
fs.h | 34 struct fat_info_sector info; member in struct:fs
|
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/gle2/ |
ViewHierarchy.java | 45 * The view hierarchy class manages a set of view info objects and performs find 260 * Creates or updates the node proxy for this canvas view info. 266 * view info. 391 * info sub-tree. This uses the potentially-expanded selection bounds. 433 * Tries to find a child with the same view XML node in the view info sub-tree. 458 * the view info sub-tree, starting at the last know view info root. This 461 * Returns null if not found or if there's no view info root. 480 * info sub-tree. This uses the potentially-expanded selection bounds. 582 * Tries to find a child with the same view key in the view info sub-tree [all...] |
/external/proguard/src/proguard/optimize/info/ |
ParameterUsageMarker.java | 21 package proguard.optimize.info; 222 MethodOptimizationInfo info = MethodOptimizationInfo.getMethodOptimizationInfo(method); local 223 if (info != null) 225 info.setParameterSize(parameterSize); 235 MethodOptimizationInfo info = MethodOptimizationInfo.getMethodOptimizationInfo(method); local 236 return info != null ? info.getParameterSize() : 0; 245 MethodOptimizationInfo info = MethodOptimizationInfo.getMethodOptimizationInfo(method); local 246 if (info != null) 248 info.setParameterUsed(variableIndex) 258 MethodOptimizationInfo info = MethodOptimizationInfo.getMethodOptimizationInfo(method); local 271 MethodOptimizationInfo info = MethodOptimizationInfo.getMethodOptimizationInfo(method); local 282 MethodOptimizationInfo info = MethodOptimizationInfo.getMethodOptimizationInfo(method); local [all...] |
/frameworks/base/media/tests/CameraBrowser/src/com/android/camerabrowser/ |
ObjectBrowser.java | 88 MtpObjectInfo info = mObjectList.get(position); local 89 nameView.setText(info.getName()); 91 int thumbFormat = info.getThumbFormat(); 94 byte[] thumbnail = mClient.getThumbnail(mDeviceName, info.getObjectHandle()); 134 MtpObjectInfo info = mObjectList.get(position); local 136 if (info.getFormat() == MtpConstants.FORMAT_ASSOCIATION) { 143 intent.putExtra("object", info.getObjectHandle());
|
StorageBrowser.java | 81 MtpStorageInfo info = mStorageList.get(position); local 82 if (info != null) { 83 view.setText(info.getDescription());
|
/packages/apps/Tag/src/com/android/apps/tag/record/ |
UriRecord.java | 154 RecordUtils.ClickInfo info = (RecordUtils.ClickInfo) view.getTag(); local 156 info.activity.startActivity(info.intent); 157 info.activity.finish(); 160 Log.e(TAG, "Failed to launch activity for intent " + info.intent, e);
|
VCardRecord.java | 166 RecordUtils.ClickInfo info = (RecordUtils.ClickInfo) view.getTag(); local 168 info.activity.startActivity(info.intent); 169 info.activity.finish(); 172 Log.e(TAG, "Failed to launch activity for intent " + info.intent, e);
|
/packages/providers/DownloadProvider/src/com/android/providers/downloads/ |
DownloadHandler.java | 42 synchronized void enqueueDownload(DownloadInfo info) { 43 if (!mDownloadsQueue.containsKey(info.mId)) { 45 Log.i(TAG, "enqueued download. id: " + info.mId + ", uri: " + info.mUri); 47 mDownloadsQueue.put(info.mId, info); 57 DownloadInfo info = mDownloadsQueue.get(id); local 58 info.startDownloadThread(); 92 for (DownloadInfo info : mDownloadsInProgress.values()) { 93 Log.i(TAG, "** progress: " + info.mId + ", " + info.mUri) [all...] |