Searched refs:attrs (Results 1 - 25 of 565) sorted by relevance

1234567891011>>

/external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/layout_tests/reftests/
H A Dextract_reference_link.py39 def handle_starttag(self, tag, attrs):
42 attrs = dict(attrs)
43 if not "rel" in attrs:
45 if not "href" in attrs:
47 if attrs["rel"] == "match":
48 self.matches.append(attrs["href"])
49 if attrs["rel"] == "mismatch":
50 self.mismatches.append(attrs["href"])
/external/chromium_org/tools/grit/grit/node/
H A Dvariant.py29 if self.attrs.has_key('file'):
35 if self.attrs['encoding'] == '':
36 return self.parent.attrs['encoding']
38 return self.attrs['encoding']
41 return self.attrs['file']
H A Dio.py29 return self.attrs['lang']
49 self.attrs['lang'], debug=debug),
60 assert (lang == self.attrs['lang'] or
61 lang == ALTERNATIVE_LANG_CODE_MAP[self.attrs['lang']]), (
66 return os.path.expandvars(self.attrs['path'])
83 return self.attrs['type']
87 return self.attrs['lang']
90 return self.attrs['context']
93 return self.attrs['filename']
100 path = self.attrs['filenam
[all...]
H A Dstructure.py86 gathertype = _GATHERERS[self.attrs['type']]
88 self.gatherer = gathertype(self.attrs['file'],
89 self.attrs['name'],
90 self.attrs['encoding'])
95 self.gatherer.SetAttributes(self.attrs)
100 if self.attrs['variables']:
101 variables = self.attrs['variables']
108 skel = gathertype(child.attrs['file'],
109 self.attrs['name'],
118 self.skeletons[child.attrs['exp
[all...]
/external/chromium_org/third_party/WebKit/Source/core/html/canvas/
H A DWebGLContextAttributes.cpp54 WebGLContextAttributes::WebGLContextAttributes(const WebGLContextAttributes& attrs) argument
56 , m_alpha(attrs.m_alpha)
57 , m_depth(attrs.m_depth)
58 , m_stencil(attrs.m_stencil)
59 , m_antialias(attrs.m_antialias)
60 , m_premultipliedAlpha(attrs.m_premultipliedAlpha)
61 , m_preserveDrawingBuffer(attrs.m_preserveDrawingBuffer)
62 , m_failIfMajorPerformanceCaveat(attrs.m_failIfMajorPerformanceCaveat)
144 blink::WebGraphicsContext3D::Attributes attrs; local
146 attrs
[all...]
/external/chromium_org/third_party/mesa/src/src/egl/main/
H A Deglimage.c41 _eglParseImageAttribList(_EGLImageAttribs *attrs, _EGLDisplay *dpy, argument
48 memset(attrs, 0, sizeof(*attrs));
49 attrs->ImagePreserved = EGL_FALSE;
50 attrs->GLTextureLevel = 0;
51 attrs->GLTextureZOffset = 0;
63 attrs->ImagePreserved = val;
68 attrs->GLTextureLevel = val;
71 attrs->GLTextureZOffset = val;
76 attrs
[all...]
/external/mesa3d/src/egl/main/
H A Deglimage.c41 _eglParseImageAttribList(_EGLImageAttribs *attrs, _EGLDisplay *dpy, argument
48 memset(attrs, 0, sizeof(*attrs));
49 attrs->ImagePreserved = EGL_FALSE;
50 attrs->GLTextureLevel = 0;
51 attrs->GLTextureZOffset = 0;
63 attrs->ImagePreserved = val;
68 attrs->GLTextureLevel = val;
71 attrs->GLTextureZOffset = val;
76 attrs
[all...]
/external/clang/test/CodeGen/
H A Dpacked-union.c6 } __attribute__((__packed__)) attrs; typedef in typeref:struct:_attrs
10 attrs file_attrs;
/external/smack/src/com/kenai/jbosh/
H A DBodyParserResults.java33 private final Map<BodyQName, String> attrs = field in class:BodyParserResults
52 attrs.put(name, value);
61 return attrs;
H A DAbstractBody.java60 Map<BodyQName, String> attrs = getAttributes();
61 return Collections.unmodifiableSet(attrs.keySet());
71 Map<BodyQName, String> attrs = getAttributes();
72 return attrs.get(attr);
/external/chromium_org/components/autofill/core/browser/
H A Dautofill_xml_parser.cc47 const char** attrs) {
55 // |attrs| is a NULL-terminated list of (attribute, value) pairs.
56 while (*attrs) {
57 buzz::QName attribute_qname = context->ResolveQName(*attrs, true);
58 ++attrs;
61 if (strcmp(*attrs, "true") == 0)
63 else if (strcmp(*attrs, "false") == 0)
66 ++attrs;
69 if (!*attrs) {
80 // |attrs| i
45 StartElement(buzz::XmlParseContext* context, const char* name, const char** attrs) argument
103 ParseElementDescriptor( buzz::XmlParseContext* context, const char* const* attrs, WebElementDescriptor* element_descriptor) argument
151 StartElement(buzz::XmlParseContext* context, const char* name, const char** attrs) argument
[all...]
/external/mockito/cglib-and-asm/src/org/mockito/cglib/transform/
H A DClassReaderGenerator.java25 private final Attribute[] attrs; field in class:ClassReaderGenerator
32 public ClassReaderGenerator(ClassReader r, Attribute[] attrs, int flags) { argument
34 this.attrs = (attrs != null) ? attrs : new Attribute[0];
39 r.accept(v, attrs, flags);
/external/chromium_org/tools/telemetry/telemetry/core/
H A Dsystem_info.py17 def FromDict(cls, attrs):
26 return cls(attrs["model_name"], attrs["gpu"])
H A Dgpu_info.py24 def FromDict(cls, attrs):
31 return cls(attrs['devices'], attrs.get('aux_attributes'),
32 attrs.get('feature_status'),
33 attrs.get('driver_bug_workarounds'))
/external/robolectric/src/test/java/com/xtremelabs/robolectric/util/
H A DCustomView.java11 public CustomView(Context context, AttributeSet attrs) { argument
12 super(context, attrs);
14 attributeResourceValue = attrs.getAttributeResourceValue("some namespace", "message", -1);
H A DCustomView2.java10 public CustomView2(Context context, AttributeSet attrs) { argument
11 super(context, attrs);
/external/chromium_org/ui/android/java/src/org/chromium/ui/
H A DColorPickerMoreButton.java22 public ColorPickerMoreButton(Context context, AttributeSet attrs) { argument
23 super(context, attrs);
27 public ColorPickerMoreButton(Context context, AttributeSet attrs, int defStyle) { argument
28 super(context, attrs, defStyle);
/external/chromium_org/ui/base/ime/
H A Dcomposition_text_util_pango.h21 PangoAttrList* attrs,
/external/mockito/cglib-and-asm/src/org/mockito/asm/tree/
H A DMemberNode.java69 public List attrs; field in class:MemberNode
109 if (attrs == null) {
110 attrs = new ArrayList(1);
112 attrs.add(attr);
/external/replicaisland/src/com/replica/replicaisland/
H A DYesNoDialogPreference.java30 public YesNoDialogPreference(Context context, AttributeSet attrs) { argument
31 this(context, attrs, android.R.attr.yesNoPreferenceStyle);
35 public YesNoDialogPreference(Context context, AttributeSet attrs, argument
37 super(context, attrs, defStyle);
/external/robolectric/src/test/java/com/xtremelabs/robolectric/shadows/
H A DDialogPreferenceTest.java29 private TestAttributeSet attrs; field in class:DialogPreferenceTest
36 attrs = new TestAttributeSet(hash);
37 preference = new TestDialogPreference(context, attrs);
45 preference = new TestDialogPreference(context, attrs, defStyle);
48 assertThat(shadow.getAttrs(), sameInstance((AttributeSet) attrs));
51 preference = new TestDialogPreference(context, attrs);
54 assertThat(shadow.getAttrs(), sameInstance((AttributeSet) attrs));
65 public TestDialogPreference(Context context, AttributeSet attrs, int defStyle) { argument
66 super(context, attrs, defStyle);
69 public TestDialogPreference(Context context, AttributeSet attrs) { argument
[all...]
/external/chromium_org/content/child/service_worker/
H A Dservice_worker_message_filter.cc85 const ServiceWorkerVersionAttributes& attrs) {
87 attrs.installing.handle_id);
89 attrs.waiting.handle_id);
91 attrs.active.handle_id);
100 const ServiceWorkerVersionAttributes& attrs) {
102 attrs.installing.handle_id);
104 attrs.waiting.handle_id);
106 attrs.active.handle_id);
81 OnStaleRegistered( int thread_id, int request_id, const ServiceWorkerRegistrationObjectInfo& info, const ServiceWorkerVersionAttributes& attrs) argument
95 OnStaleSetVersionAttributes( int thread_id, int provider_id, int registration_handle_id, int changed_mask, const ServiceWorkerVersionAttributes& attrs) argument
/external/chromium_org/third_party/mesa/src/src/gallium/state_trackers/egl/common/
H A Degl_g3d_image.c73 _EGLImageAttribs attrs; local
76 if (_eglParseImageAttribList(&attrs, dpy, attribs) != EGL_SUCCESS)
79 if (attrs.Width <= 0 || attrs.Height <= 0) {
81 attrs.Width, attrs.Height);
85 switch (attrs.DRMBufferFormatMESA) {
91 attrs.DRMBufferFormatMESA);
99 if (attrs.DRMBufferUseMESA & ~valid_use) {
101 attrs
137 _EGLImageAttribs attrs; local
[all...]
/external/mesa3d/src/gallium/state_trackers/egl/common/
H A Degl_g3d_image.c73 _EGLImageAttribs attrs; local
76 if (_eglParseImageAttribList(&attrs, dpy, attribs) != EGL_SUCCESS)
79 if (attrs.Width <= 0 || attrs.Height <= 0) {
81 attrs.Width, attrs.Height);
85 switch (attrs.DRMBufferFormatMESA) {
91 attrs.DRMBufferFormatMESA);
99 if (attrs.DRMBufferUseMESA & ~valid_use) {
101 attrs
137 _EGLImageAttribs attrs; local
[all...]
/external/wpa_supplicant_8/hs20/server/ca/
H A Dest-csrattrs.sh4 base64 est-csrattrs.der > est-attrs.b64

Completed in 908 milliseconds

1234567891011>>