HomeSort by relevance Sort by last modified time
    Searched full:info (Results 351 - 375 of 4990) sorted by null

<<11121314151617181920>>

  /external/webkit/WebKit/android/plugins/
ANPSurfaceInterface.cpp 115 Surface::SurfaceInfo info; local
116 status_t err = surface->lock(&info, &dirtyRegion);
131 ssize_t bpr = info.s * bytesPerPixel(info.format);
133 bitmap->format = convertPixelFormat(info.format);
134 bitmap->width = info.w;
135 bitmap->height = info.h;
138 if (info.w > 0 && info.h > 0) {
139 bitmap->baseAddr = info.bits
    [all...]
  /frameworks/base/core/jni/
android_graphics_PixelFormat.cpp 50 PixelFormatInfo info; local
58 info.bytesPerPixel = 1;
59 info.bitsPerPixel = 16;
63 info.bytesPerPixel = 1;
64 info.bitsPerPixel = 12;
68 info.bytesPerPixel = 1;
69 info.bitsPerPixel = 16;
73 err = getPixelFormatInfo(format, &info);
80 env->SetIntField(pixelFormatObject, offsets.bytesPerPixel, info.bytesPerPixel);
81 env->SetIntField(pixelFormatObject, offsets.bitsPerPixel, info.bitsPerPixel)
    [all...]
  /packages/apps/IM/src/com/android/im/app/
ImPluginHelper.java 90 for (ResolveInfo info : plugins) {
91 Log.d(TAG, "Found plugin " + info);
93 ServiceInfo serviceInfo = info.serviceInfo;
95 Log.e(TAG, "Ignore bad IM plugin: " + info);
108 Log.e(TAG, "Ignore bad IM plugin: " + info + ". Lack of required meta data");
113 Log.e(TAG, "Ignore duplicated IM plugin: " + info);
179 private long updateProviderDb(ImPlugin plugin, ImPluginInfo info,
181 Map<String, String> config = loadConfiguration(plugin, info);
189 String[] selectionArgs = new String[]{info.mProviderName};
216 values.put(Imps.Provider.NAME, info.mProviderName)
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/launch/junit/
AndroidJUnitLaunchAction.java 63 public boolean doLaunchAction(DelayedLaunchInfo info, IDevice device) {
66 AdtPlugin.printToConsole(info.getProject(), msg);
69 mLaunchInfo.setDebugMode(info.isDebugMode());
70 mLaunchInfo.setDevice(info.getDevice());
72 final String mode = info.isDebugMode() ? ILaunchManager.DEBUG_MODE :
75 junitDelegate.launch(info.getLaunch().getLaunchConfiguration(), mode, info.getLaunch(),
76 info.getMonitor());
80 AdtPlugin.printErrorToConsole(info.getProject(),
150 VMTestRunner(AndroidJUnitLaunchInfo info) {
    [all...]
  /external/bluetooth/glib/gobject/
genums.c 93 static GTypeInfo info = { local
115 info.class_size = sizeof (GEnumClass);
116 type = g_type_register_fundamental (G_TYPE_ENUM, g_intern_static_string ("GEnum"), &info, &finfo,
122 info.class_size = sizeof (GFlagsClass);
123 type = g_type_register_fundamental (G_TYPE_FLAGS, g_intern_static_string ("GFlags"), &info, &finfo,
260 * @info: the #GTypeInfo struct to be filled in
273 * GTypeInfo *info,
282 * g_enum_complete_type_info (type, info, values);
288 GTypeInfo *info,
292 g_return_if_fail (info != NULL)
    [all...]
  /external/skia/src/animator/
SkDisplayType.cpp 228 info = Sk##_class::fInfo; infoCount = Sk##_class::fInfoCount; break
230 info = SkDraw##_class::fInfo; infoCount = SkDraw##_class::fInfoCount; break
232 info = SkDisplay##_class::fInfo; infoCount = SkDisplay##_class::fInfoCount; \
237 const SkMemberInfo* info = NULL; local
322 case SkType_Point: info = Sk_Point::fInfo; infoCount = Sk_Point::fInfoCount; break; // no virtual flavor
370 if ((info = (*extraPtr)->getMembers(type, infoCountPtr)) != NULL)
371 return info;
378 return info;
384 const SkMemberInfo* info = GetMembers(maker, type, &infoCount); local
385 info = SkMemberInfo::Find(info, infoCount, matchPtr)
540 const SkMemberInfo* info = SkDisplayType::GetMembers(maker, type, NULL); local
553 const SkMemberInfo* info = GetMembers(maker, base, NULL); \/\/ get info for this type local
759 const SkMemberInfo* info = GetMembers(maker, gTypeNames[index].fType, &infoCount); local
    [all...]
  /external/bluetooth/hcidump/parser/
capi.c 60 return "INFO";
160 static char *info2str(uint16_t info)
162 switch (info) {
274 uint16_t info, ncci; local
296 info = CAPI_U16(frm);
298 printf("Info: 0x%04x (%s)\n", info, info2str(info));
312 printf("Additional info:\n");
359 printf("Additional info:\n")
446 uint16_t info; local
486 uint16_t sel, func, info; local
697 uint16_t length, handle, flags, info; local
    [all...]
  /external/qemu/
qemu-monitor.hx 25 { "info", "s?", do_info,
28 @item info @var{subcommand}
32 @item info version
34 @item info network
36 @item info chardev
38 @item info block
40 @item info block
42 @item info registers
44 @item info cpus
46 @item info histor
    [all...]
shaper.c 337 _packet_SYN_flags( const void* _data, size_t size, Session info )
368 info->protocol = data[9];
369 info->src_ip = (data[12] << 24) | (data[13] << 16) | (data[14] << 8) | data[15];
370 info->dst_ip = (data[16] << 24) | (data[17] << 16) | (data[18] << 8) | data[19];
376 info->src_port = (unsigned short)((data[0] << 8) | data[1]);
377 info->dst_port = (unsigned short)((data[2] << 8) | data[3]);
398 netdelay_lookup_session( NetDelay delay, Session info )
408 if (node->src_ip == info->src_ip &&
409 node->dst_ip == info->dst_ip &&
410 node->src_port == info->src_port &
511 SessionRec info[1]; local
    [all...]
  /external/v8/benchmarks/
raytrace.js 458 var info = new Flog.RayTracer.IntersectionInfo();
459 info.shape = this;
468 info.isHit = true;
469 info.distance = (-B) - Math.sqrt(D);
470 info.position = Flog.RayTracer.Vector.prototype.add(
474 info.distance
477 info.normal = Flog.RayTracer.Vector.prototype.subtract(
478 info.position,
482 info.color = this.material.getColor(0,0);
484 info.isHit = false
    [all...]
  /external/webkit/SunSpider/tests/v8-v4/
v8-raytrace.js 453 var info = new Flog.RayTracer.IntersectionInfo();
454 info.shape = this;
463 info.isHit = true;
464 info.distance = (-B) - Math.sqrt(D);
465 info.position = Flog.RayTracer.Vector.prototype.add(
469 info.distance
472 info.normal = Flog.RayTracer.Vector.prototype.subtract(
473 info.position,
477 info.color = this.material.getColor(0,0);
479 info.isHit = false
    [all...]
  /dalvik/dx/tests/078-dex-local-variable-table/
expected.txt 8 debug info
25 debug info
42 debug info
66 debug info
94 debug info
122 debug info
145 debug info
161 debug info
177 debug info
193 debug info
    [all...]
  /external/apache-http/src/org/apache/http/util/
VersionInfo.java 66 public final static String PROPERTY_MODULE = "info.module";
67 public final static String PROPERTY_RELEASE = "info.release";
68 public final static String PROPERTY_TIMESTAMP = "info.timestamp";
74 /** The module from the version info. */
77 /** The release from the version info. */
80 /** The timestamp from the version info. */
83 /** The classloader from which the version info was obtained. */
178 // If version info is missing, a single "UNAVAILABLE" for the module
197 * @param pckgs the packages for which to load version info
244 Properties vip = null; // version info properties, if availabl
    [all...]
  /external/webkit/WebCore/bindings/v8/custom/
V8HTMLDocumentCustom.cpp 52 v8::Handle<v8::Boolean> V8HTMLDocument::namedPropertyDeleter(v8::Local<v8::String> name, const v8::AccessorInfo& info)
62 ASSERT(info.Holder()->InternalFieldCount() == V8HTMLDocument::internalFieldCount);
63 v8::Local<v8::Value> marker = info.Holder()->GetInternalField(V8HTMLDocument::markerIndex);
64 info.Holder()->SetInternalField(V8HTMLDocument::shadowIndex, marker);
68 v8::Handle<v8::Value> V8HTMLDocument::namedPropertyGetter(v8::Local<v8::String> name, const v8::AccessorInfo& info)
78 ASSERT(info.Holder()->InternalFieldCount() == V8HTMLDocument::internalFieldCount);
79 v8::Local<v8::Value> marker = info.Holder()->GetInternalField(V8HTMLDocument::markerIndex);
80 v8::Local<v8::Value> value = info.Holder()->GetInternalField(V8HTMLDocument::shadowIndex);
85 HTMLDocument* htmlDocument = V8HTMLDocument::toNative(info.Holder());
107 v8::Handle<v8::Value> V8HTMLDocument::indexedPropertyGetter(uint32_t index, const v8::AccessorInfo &info)
    [all...]
V8NamedNodeMapCustom.cpp 44 v8::Handle<v8::Value> V8NamedNodeMap::indexedPropertyGetter(uint32_t index, const v8::AccessorInfo& info)
47 NamedNodeMap* imp = V8NamedNodeMap::toNative(info.Holder());
55 v8::Handle<v8::Value> V8NamedNodeMap::namedPropertyGetter(v8::Local<v8::String> name, const v8::AccessorInfo& info)
59 v8::Handle<v8::Value> value = info.Holder()->GetRealNamedPropertyInPrototypeChain(name);
64 if (info.Holder()->HasRealNamedCallbackProperty(name))
68 NamedNodeMap* imp = V8NamedNodeMap::toNative(info.Holder());
  /external/bluetooth/bluez/src/
security.c 309 info("link_key_request (sba=%s, dba=%s)", sa, da);
358 info("link_key_notify (sba=%s, dba=%s, type=%d)", sa, da,
414 info("return_link_keys (sba=%s, dba=%s)", sa, da);
459 info("io_capa_request (sba=%s, dba=%s)", sa, da);
486 info("io_capa_response (sba=%s, dba=%s)", sa, da);
518 info("pin_code_request (sba=%s, dba=%s)", sa, da);
525 error("Can't get conn info: %s (%d)", strerror(errno), errno);
741 inquiry_info *info = ptr; local
742 uint32_t class = info->dev_class[0]
743 | (info->dev_class[1] << 8
764 inquiry_info_with_rssi_and_pscan_mode *info = ptr; local
778 inquiry_info_with_rssi *info = ptr; local
799 extended_inquiry_info *info = ptr; local
    [all...]
  /frameworks/base/core/java/android/content/pm/
PackageParser.java 141 /* Light weight package info.
220 if (p.activities.get(i).info.enabled) num++;
226 if (activity.info.enabled
241 if (p.receivers.get(i).info.enabled) num++;
247 if (activity.info.enabled
262 if (p.services.get(i).info.enabled) num++;
268 if (service.info.enabled
283 if (p.providers.get(i).info.enabled) num++;
289 if (provider.info.enabled
1978 ActivityInfo info = new ActivityInfo(); local
2878 public final PermissionInfo info; field in class:PackageParser.Permission
2905 public final PermissionGroupInfo info; field in class:PackageParser.PermissionGroup
2989 public final ActivityInfo info; field in class:PackageParser.Activity
3023 public final ServiceInfo info; field in class:PackageParser.Service
3056 public final ProviderInfo info; field in class:PackageParser.Provider
3103 public final InstrumentationInfo info; field in class:PackageParser.Instrumentation
    [all...]
  /dalvik/libcore/security/src/main/java/java/security/cert/
PolicyQualifierInfo.java 68 * Returns a ASN.1 DER encoded copy of policy qualifier info.
70 * @return a ASN.1 DER encoded copy of policy qualifier info.
79 * Returns the identifier (an OID) of this policy qualifier info.
81 * @return the identifier of this policy qualifier info.
89 * qualifier info.
92 * qualifier info.
  /dalvik/libcore/security/src/main/java/org/apache/harmony/security/provider/cert/
X509CRLImpl.java 70 // To speed up access to the info, the following fields
95 // if crl is indirect, this field holds an info about how
142 * method documentation for more info
155 * method documentation for more info
163 * method documentation for more info
174 * method documentation for more info
185 * method documentation for more info
193 * method documentation for more info
239 * method documentation for more info
294 * method documentation for more info
    [all...]
  /external/opencore/pvmi/pvmf/include/
pvmf_durationinfomessage_extension.h 37 Returns the code and space UUID for this info message
47 Returns a pointer to the next info message in the linked list. If NULL,
48 the current info message is the last element in the list.
56 Increments the reference count for this info message object
60 Decrements the reference count for this info message object and deletes
65 Returns the extension interface for the specified UUID if this info
pvmf_metadatainfomessage_extension.h 40 Returns the code and space UUID for this info message
50 Returns a pointer to the next info message in the linked list. If NULL,
51 the current info message is the last element in the list.
59 Increments the reference count for this info message object
63 Decrements the reference count for this info message object and deletes
68 Returns the extension interface for the specified UUID if this info
  /external/qemu/distrib/sdl-1.2.12/src/video/x11/
SDL_x11wm.c 577 /* If 'info' is the right version, this function fills it and returns 1.
593 int X11_GetWMInfo(_THIS, SDL_SysWMinfo *info)
595 if ( info->version.major <= SDL_MAJOR_VERSION ) {
596 info->subsystem = SDL_SYSWM_X11;
597 info->info.x11.display = SDL_Display;
598 info->info.x11.window = SDL_Window;
599 if ( SDL_VERSIONNUM(info->version.major,
600 info->version.minor
    [all...]
  /external/speex/include/speex/
speex_stereo.h 51 float balance; /**< Left/right balance info */
71 /** Transforms a stereo frame into a mono frame and stores intensity stereo info in 'bits' */
74 /** Transforms a stereo frame into a mono frame and stores intensity stereo info in 'bits' */
77 /** Transforms a mono frame into a stereo frame using intensity stereo info */
80 /** Transforms a mono frame into a stereo frame using intensity stereo info */
83 /** Callback handler for intensity stereo info */
  /external/webkit/WebCore/platform/haiku/
RenderThemeHaiku.cpp 110 bool RenderThemeHaiku::paintCheckbox(RenderObject*, const RenderObject::PaintInfo& info, const IntRect& intRect)
112 if (info.context->paintingDisabled())
117 BView* view = info.context->platformContext();
142 bool RenderThemeHaiku::paintRadio(RenderObject*, const RenderObject::PaintInfo& info, const IntRect& intRect)
144 if (info.context->paintingDisabled())
149 BView* view = info.context->platformContext();
  /external/webkit/WebCore/platform/qt/
FileSystemQt.cpp 65 QFileInfo info(path);
66 result = info.size();
67 return info.exists();
72 QFileInfo info(path);
73 result = info.lastModified().toTime_t();
74 return info.exists();

Completed in 248 milliseconds

<<11121314151617181920>>