HomeSort by relevance Sort by last modified time
    Searched refs:resource (Results 1426 - 1450 of 2392) sorted by null

<<51525354555657585960>>

  /frameworks/base/tools/layoutlib/bridge/src/com/android/layoutlib/bridge/android/
BridgeContext.java 276 // check if this is a style resource
330 public Pair<View, Boolean> inflateView(ResourceReference resource, ViewGroup parent,
332 boolean isPlatformLayout = resource.isFramework();
336 ILayoutPullParser parser = getParser(resource);
340 this, resource.isFramework());
353 if (resource instanceof ResourceValue) {
354 resValue = (ResourceValue) resource;
358 resource.getName());
361 resource.getName());
374 // set the resource ref to have correct view cookie
    [all...]
  /external/chromium_org/sync/tools/testserver/
xmppserver_test.py 80 jid = xmppserver.Jid('foo', 'bar.com', 'resource')
81 self.assertEqual(str(jid), 'foo@bar.com/resource')
84 jid = xmppserver.Jid('foo', 'bar.com', 'resource')
116 def DoHandshake(self, resource_prefix, resource, username,
142 '<iq type="set"><bind><resource>%s</resource></bind></iq>' % resource)
159 self.assertEqual(self.jid.resource,
160 '%s.%s' % (resource_prefix, resource))
165 def DoHandshakeUnauthenticated(self, resource_prefix, resource, username
    [all...]
xmppserver.py 157 an optional resource string).
160 def __init__(self, username, domain, resource=''):
163 self.resource = resource
167 if self.resource:
168 jid_str += '/' + self.resource
340 resource_element = stanza.getElementsByTagName('resource')[0]
341 resource = resource_element.firstChild.data
342 full_resource = '%s.%s' % (self._resource_prefix, resource)
  /external/chromium_org/third_party/WebKit/Source/devtools/front_end/
networkLogView.css 163 /* Resource preview icons */
365 /* Resource categories */
368 .resource-cached .network-graph-bar {
380 .network-type-document.resource-cached .network-graph-bar {
392 .network-type-stylesheet.resource-cached .network-graph-bar {
404 .network-type-image.resource-cached .network-graph-bar {
416 .network-type-media.resource-cached .network-graph-bar {
428 .network-type-font.resource-cached .network-graph-bar {
440 .network-type-texttrack.resource-cached .network-graph-bar {
452 .network-type-script.resource-cached .network-graph-bar
    [all...]
  /external/chromium_org/third_party/mesa/src/src/gallium/drivers/radeonsi/
r600_blit.c 125 for (level = 0; level <= texture->resource.b.b.last_level; level++) {
126 unsigned num_layers = u_num_layers(&texture->resource.b.b, level);
137 zsurf = ctx->create_surface(ctx, &texture->resource.b.b, &surf_tmpl);
390 sbox.width = texture->resource.b.b.width0;
391 sbox.height = texture->resource.b.b.height0;
  /external/mesa3d/src/gallium/drivers/radeonsi/
r600_blit.c 125 for (level = 0; level <= texture->resource.b.b.last_level; level++) {
126 unsigned num_layers = u_num_layers(&texture->resource.b.b, level);
137 zsurf = ctx->create_surface(ctx, &texture->resource.b.b, &surf_tmpl);
390 sbox.width = texture->resource.b.b.width0;
391 sbox.height = texture->resource.b.b.height0;
  /libcore/harmony-tests/src/test/java/org/apache/harmony/tests/javax/xml/parsers/
DocumentBuilderTest.java 33 import tests.support.resource.Support_Resources;
488 URL resource = getClass().getResource("/simple.xml"); local
489 Document d = db.parse(resource.toString());
517 resource = getClass().getResource("/wrong.xml");
518 db.parse(resource.toString());
  /packages/apps/Mms/src/com/android/mms/ui/
SlideshowEditActivity.java 361 public SlideListAdapter(Context context, int resource,
363 super(context, resource, slideshow);
366 mResource = resource;
376 private View createViewFromResource(int position, View convertView, int resource) {
379 resource, null);
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/wizards/exportgradle/
ProjectSetupBuilder.java 402 IResource resource = ResourcesPlugin.getWorkspace().getRoot() local
404 if (resource != null && resource.getType() == IResource.PROJECT) {
405 if (resource.exists()) {
406 return (IJavaProject) JavaCore.create(resource);
413 * Get Java project from resource.
  /external/chromium_org/ppapi/proxy/
nacl_message_scanner.cc 43 // Resource id for resource messages. Save this when scanning resource replies
44 // so when we audit the nested message, we know which resource it is for.
46 // Callback to receive the nested message in a resource message or reply.
96 // If the resource reply params don't contain handles, NULL the new message
460 // Audit resource destroyed messages to release FileSystems.
461 PP_Resource resource; local
463 nested_msg, &resource))
465 FileSystemMap::iterator fs_it = file_systems_.find(resource);
    [all...]
  /external/chromium_org/third_party/mesa/src/src/gallium/state_trackers/clover/api/
transfer.cpp 27 #include "core/resource.hpp"
32 typedef resource::point point;
92 return { *q, obj->resource(q), flags, true, { offset }, { size }};
131 dst_obj->resource(q).copy(*q, dst_orig, region,
132 src_obj->resource(q), src_orig);
450 void *map = obj->resource(q).add_map(
475 void *map = obj->resource(q).add_map(
498 obj->resource(q).del_map(ptr);
  /external/mesa3d/src/gallium/state_trackers/clover/api/
transfer.cpp 27 #include "core/resource.hpp"
32 typedef resource::point point;
92 return { *q, obj->resource(q), flags, true, { offset }, { size }};
131 dst_obj->resource(q).copy(*q, dst_orig, region,
132 src_obj->resource(q), src_orig);
450 void *map = obj->resource(q).add_map(
475 void *map = obj->resource(q).add_map(
498 obj->resource(q).del_map(ptr);
  /external/smack/src/org/jivesoftware/smack/
XMPPConnection.java 205 public synchronized void login(String username, String password, String resource) throws XMPPException {
220 response = saslAuthentication.authenticate(username, password, resource);
224 .authenticate(username, resource, config.getCallbackHandler());
229 response = new NonSASLAuthentication(this).authenticate(username, password, resource);
240 if (resource != null) {
241 this.user += "/" + resource;
273 config.setLoginInfo(username, password, resource);
    [all...]
  /external/chromium_org/third_party/mesa/src/src/gallium/drivers/rbug/
rbug_context.c 857 struct pipe_resource *dst = rb_resource_dst->resource;
858 struct pipe_resource *src = rb_resource_src->resource;
963 struct pipe_resource *resource = rb_resource->resource; local
968 resource,
993 struct pipe_resource *resource = rb_resource->resource; local
998 resource,
1032 struct pipe_resource *resource = rb_resource->resource; local
1128 struct pipe_resource *resource = rb_resource->resource; local
    [all...]
  /external/mesa3d/src/gallium/drivers/rbug/
rbug_context.c 857 struct pipe_resource *dst = rb_resource_dst->resource;
858 struct pipe_resource *src = rb_resource_src->resource;
963 struct pipe_resource *resource = rb_resource->resource; local
968 resource,
993 struct pipe_resource *resource = rb_resource->resource; local
998 resource,
1032 struct pipe_resource *resource = rb_resource->resource; local
1128 struct pipe_resource *resource = rb_resource->resource; local
    [all...]
  /external/chromium_org/third_party/skia/src/gpu/
GrContext.cpp 245 GrCacheable* resource = fResourceCache->find(resourceKey); local
246 SkSafeRef(resource);
247 return static_cast<GrTexture*>(resource);
271 GrCacheable* resource = fResourceCache->find(resourceKey); local
272 return static_cast<GrStencilBuffer*>(resource);
406 // Adding a resource could put us overbudget. Try to free up the
425 // Adding a resource could put us overbudget. Try to free up the
428 // Make the resource exclusive so future 'find' calls don't return it
459 GrCacheable* resource = NULL; local
466 resource = fResourceCache->find(key, GrResourceCache::kHide_OwnershipFlag)
1903 GrCacheable* resource = fResourceCache->find(resourceKey); local
    [all...]
  /external/skia/src/gpu/
GrContext.cpp 245 GrCacheable* resource = fResourceCache->find(resourceKey); local
246 SkSafeRef(resource);
247 return static_cast<GrTexture*>(resource);
271 GrCacheable* resource = fResourceCache->find(resourceKey); local
272 return static_cast<GrStencilBuffer*>(resource);
406 // Adding a resource could put us overbudget. Try to free up the
425 // Adding a resource could put us overbudget. Try to free up the
428 // Make the resource exclusive so future 'find' calls don't return it
459 GrCacheable* resource = NULL; local
466 resource = fResourceCache->find(key, GrResourceCache::kHide_OwnershipFlag)
1903 GrCacheable* resource = fResourceCache->find(resourceKey); local
    [all...]
  /build/tools/droiddoc/templates-sdk/assets/js/
docs.js 397 $imgIcon = $('<img src="'+toRoot+'assets/images/resource-tutorial.png" '
403 $imgIcon = $('<img src="'+toRoot+'assets/images/resource-article.png" '
    [all...]
  /external/icu/icu4c/source/i18n/
measfmt.cpp 156 const UResourceBundle *resource,
160 const UChar *resStr = ures_getString(resource, &len, &status);
170 const UResourceBundle *resource,
190 // Be sure status is clear since next resource bundle lookup may fail.
197 resource, widthPath[currentWidth], NULL, &status));
255 const UResourceBundle *resource,
267 resource,
288 const UResourceBundle *resource,
294 loadNumericDateFormatterPattern(resource, "hm", status),
295 loadNumericDateFormatterPattern(resource, "ms", status)
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/svg/
SVGUseElement.cpp 718 void SVGUseElement::notifyFinished(Resource* resource)
724 if (resource->errorOccurred())
726 else if (!resource->wasCanceled()) {
757 void SVGUseElement::setDocumentResource(ResourcePtr<DocumentResource> resource)
759 if (m_resource == resource)
765 m_resource = resource;
  /frameworks/base/core/java/android/widget/
AdapterViewAnimator.java 185 int resource = a.getResourceId( local
187 if (resource > 0) {
188 setInAnimation(context, resource);
193 resource = a.getResourceId(com.android.internal.R.styleable.AdapterViewAnimator_outAnimation, 0);
194 if (resource > 0) {
195 setOutAnimation(context, resource);
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/descriptors/
CustomViewDescriptorService.java 229 //TODO setup listener on this resource change.
358 IResource resource; local
360 resource = AdtUtils.fileToResource(path.toFile());
362 resource = workspace.findMember(path);
364 if (resource != null && resource.getProject() != null) {
365 return resource.getProject();
490 //TODO setup listener on this resource change.
566 // Check whether the resource files (typically just one) which defined
  /development/samples/XmlAdapters/src/com/example/android/xmladapters/
XmlDocumentProvider.java 147 * <p>The XML document can be a local resource or a file that will be downloaded from the
151 * The URI will be of the form <code>content://xmldocument/?resource=R.xml.myFile</code> for a
152 * local resource. <code>xmldocument</code> should match the authority declared for this
162 * @param uri The URI of your local resource or Internet document.
183 final String resource = uri.getQueryParameter("resource"); local
184 if (resource != null) {
186 getContext().getPackageName() + "/" + resource);
253 * Creates an XmlPullParser for the provided local resource. Can be overloaded to provide your
255 * @param resourceUri A fully qualified resource name referencing a local XML resource
    [all...]
  /external/chromium_org/chrome/browser/extensions/api/screenlock_private/
screenlock_private_api.cc 133 ExtensionResource resource = local
135 if (resource.empty())
140 resource,
  /external/chromium_org/chrome/installer/mac/
pkg-dmg 59 [B<--resource> I<file>]
152 or to use formatted text, prepare a resource and use L<--resource>.
154 =item B<--resource> I<file>
156 A resource file to merge into I<target-image>. If I<format> is UDZO, UDBZ,
158 the resource but may be freely transferred without any special encodings.
161 disk images. B<--resource> may appear multiple times.
214 Resource forks aren't copied.
453 'resource=s' => \@resourceFiles,
659 # Flatten. This merges the resource fork into the data fork, so n
    [all...]

Completed in 828 milliseconds

<<51525354555657585960>>