Home
last modified time | relevance | path

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

12345678910>>...16

/third_party/mesa3d/src/egl/main/
H A Deglimage.c38 _eglParseKHRImageAttribs(_EGLImageAttribs *attrs, _EGLDisplay *disp, in _eglParseKHRImageAttribs() argument
46 attrs->ImagePreserved = val; in _eglParseKHRImageAttribs()
53 attrs->GLTextureLevel = val; in _eglParseKHRImageAttribs()
59 attrs->GLTextureZOffset = val; in _eglParseKHRImageAttribs()
65 attrs->ProtectedContent = val; in _eglParseKHRImageAttribs()
75 _eglParseMESADrmImageAttribs(_EGLImageAttribs *attrs, _EGLDisplay *disp, in _eglParseMESADrmImageAttribs() argument
83 attrs->Width = val; in _eglParseMESADrmImageAttribs()
86 attrs->Height = val; in _eglParseMESADrmImageAttribs()
89 attrs->DRMBufferFormatMESA = val; in _eglParseMESADrmImageAttribs()
92 attrs in _eglParseMESADrmImageAttribs()
105 _eglParseWLBindWaylandDisplayAttribs(_EGLImageAttribs *attrs, _EGLDisplay *disp, EGLint attr, EGLint val) _eglParseWLBindWaylandDisplayAttribs() argument
123 _eglParseEXTImageDmaBufImportAttribs(_EGLImageAttribs *attrs, _EGLDisplay *disp, EGLint attr, EGLint val) _eglParseEXTImageDmaBufImportAttribs() argument
215 _eglParseEXTImageDmaBufImportModifiersAttribs(_EGLImageAttribs *attrs, _EGLDisplay *disp, EGLint attr, EGLint val) _eglParseEXTImageDmaBufImportModifiersAttribs() argument
281 _eglParseImageAttribList(_EGLImageAttribs *attrs, _EGLDisplay *disp, const EGLint *attrib_list) _eglParseImageAttribList() argument
[all...]
/third_party/mesa3d/src/freedreno/registers/
H A Dgen_header.py236 def __init__(self, attrs, domain):
237 if "name" in attrs:
238 self.name = attrs["name"]
242 self.offset = int(attrs["offset"], 0)
243 self.stride = int(attrs["stride"], 0)
244 self.length = int(attrs["length"], 0)
253 def __init__(self, attrs, domain, array, bit_size):
254 self.name = attrs["name"]
257 self.offset = int(attrs["offset"], 0)
282 def parse_variants(attrs)
[all...]
/third_party/rust/crates/syn/src/
H A Dexpr.rs247 pub attrs: Vec<Attribute>,
257 pub attrs: Vec<Attribute>,
268 pub attrs: Vec<Attribute>,
279 pub attrs: Vec<Attribute>,
290 pub attrs: Vec<Attribute>,
301 pub attrs: Vec<Attribute>,
312 pub attrs: Vec<Attribute>,
323 pub attrs: Vec<Attribute>,
334 pub attrs: Vec<Attribute>,
345 pub attrs
1365 let mut attrs = Vec::new(); expr_attrs() variables
1962 let mut attrs = input.call(expr_attrs)?; global() variables
2175 let mut attrs = input.call(Attribute::parse_outer)?; parse() variables
2205 let mut attrs = input.call(Attribute::parse_outer)?; parse() variables
2227 let mut attrs = input.call(Attribute::parse_outer)?; parse() variables
2492 let mut attrs = input.call(Attribute::parse_outer)?; parse() variables
2727 let mut attrs = input.call(Attribute::parse_outer)?; parse() variables
[all...]
H A Ditem.rs94 pub attrs: Vec<Attribute>,
111 pub attrs: Vec<Attribute>,
125 pub attrs: Vec<Attribute>,
139 pub attrs: Vec<Attribute>,
150 pub attrs: Vec<Attribute>,
163 pub attrs: Vec<Attribute>,
181 pub attrs: Vec<Attribute>,
193 pub attrs: Vec<Attribute>,
207 pub attrs: Vec<Attribute>,
224 pub attrs
1706 let mut attrs = input.call(Attribute::parse_outer)?; parse() variables
1755 let mut attrs = input.call(Attribute::parse_outer)?; parse() variables
1781 let mut attrs = input.call(Attribute::parse_outer)?; parse() variables
2243 let mut attrs = input.call(Attribute::parse_outer)?; parse() variables
2364 let mut attrs = input.call(Attribute::parse_outer)?; parse() variables
2474 let mut attrs = input.call(Attribute::parse_outer)?; parse_impl() variables
2581 let mut attrs = input.call(Attribute::parse_outer)?; parse() variables
2721 let mut attrs = input.call(Attribute::parse_outer)?; parse_impl_item_fn() variables
[all...]
H A Dpat.rs101 pub attrs: Vec<Attribute>,
113 pub attrs: Vec<Attribute>,
123 pub attrs: Vec<Attribute>,
133 pub attrs: Vec<Attribute>,
144 pub attrs: Vec<Attribute>,
153 pub attrs: Vec<Attribute>,
163 pub attrs: Vec<Attribute>,
176 pub attrs: Vec<Attribute>,
186 pub attrs: Vec<Attribute>,
198 pub attrs
[all...]
/third_party/rust/crates/syn/src/gen/
H A Dclone.rs33 attrs: self.attrs.clone(), in clone()
93 attrs: self.attrs.clone(), in clone()
104 attrs: self.attrs.clone(), in clone()
148 attrs: self.attrs.clone(), in clone()
218 attrs: self.attrs in clone()
[all...]
H A Deq.rs34 self.attrs == other.attrs && self.pat == other.pat && self.guard == other.guard in eq()
91 self.attrs == other.attrs && self.name == other.name && self.ty == other.ty in eq()
101 self.attrs == other.attrs && self.name == other.name && self.comma == other.comma in eq()
171 self.attrs == other.attrs && self.ident == other.ident && self.ty == other.ty in eq()
238 self.attrs == other.attrs in eq()
[all...]
/third_party/skia/modules/svg/src/
H A DSkSVGPattern.cpp61 PatternAttributes* attrs) const { in resolveHref()
67 inherit_if_needed(currentNode->fX , attrs->fX) | in resolveHref()
68 inherit_if_needed(currentNode->fY , attrs->fY) | in resolveHref()
69 inherit_if_needed(currentNode->fWidth , attrs->fWidth) | in resolveHref()
70 inherit_if_needed(currentNode->fHeight , attrs->fHeight) | in resolveHref()
71 inherit_if_needed(currentNode->fPatternTransform, attrs->fPatternTransform); in resolveHref()
91 PatternAttributes attrs; in onAsPaint() local
92 const auto* contentNode = this->resolveHref(ctx, &attrs); in onAsPaint()
95 attrs.fX.isValid() ? *attrs in onAsPaint()
[all...]
/third_party/python/Lib/distutils/tests/
H A Dtest_dist.py183 dist = Distribution(attrs={'author': 'xxx', 'name': 'xxx',
191 attrs = {'keywords': 'one,two',
194 dist = Distribution(attrs=attrs)
201 attrs = {'keywords': 'foo bar',
203 dist = Distribution(attrs=attrs)
248 d = Distribution(attrs={'script_args': ['--no-user-cfg']})
274 attrs = {"name": "package",
276 dist = Distribution(attrs)
[all...]
/third_party/rust/crates/cxx/gen/build/src/syntax/
H A Dfile.rs13 pub attrs: Vec<Attribute>,
32 pub attrs: Vec<Attribute>,
43 let mut attrs = input.call(Attribute::parse_outer)?; in parse() variables
60 attrs.extend(content.call(Attribute::parse_inner)?); in parse()
70 attrs, in parse()
83 let attrs = input.call(Attribute::parse_outer)?; in parse()
99 item.attrs.splice(..0, attrs); in parse()
103 item.attrs.splice(..0, attrs); in parse()
[all...]
/third_party/rust/crates/cxx/gen/lib/src/syntax/
H A Dfile.rs13 pub attrs: Vec<Attribute>,
32 pub attrs: Vec<Attribute>,
43 let mut attrs = input.call(Attribute::parse_outer)?; in parse() variables
60 attrs.extend(content.call(Attribute::parse_inner)?); in parse()
70 attrs, in parse()
83 let attrs = input.call(Attribute::parse_outer)?; in parse()
99 item.attrs.splice(..0, attrs); in parse()
103 item.attrs.splice(..0, attrs); in parse()
[all...]
/third_party/rust/crates/cxx/macro/src/syntax/
H A Dfile.rs13 pub attrs: Vec<Attribute>,
32 pub attrs: Vec<Attribute>,
43 let mut attrs = input.call(Attribute::parse_outer)?; in parse() variables
60 attrs.extend(content.call(Attribute::parse_inner)?); in parse()
70 attrs, in parse()
83 let attrs = input.call(Attribute::parse_outer)?; in parse()
99 item.attrs.splice(..0, attrs); in parse()
103 item.attrs.splice(..0, attrs); in parse()
[all...]
/third_party/rust/crates/cxx/syntax/
H A Dfile.rs13 pub attrs: Vec<Attribute>,
32 pub attrs: Vec<Attribute>,
43 let mut attrs = input.call(Attribute::parse_outer)?; in parse() variables
60 attrs.extend(content.call(Attribute::parse_inner)?); in parse()
70 attrs, in parse()
83 let attrs = input.call(Attribute::parse_outer)?; in parse()
99 item.attrs.splice(..0, attrs); in parse()
103 item.attrs.splice(..0, attrs); in parse()
[all...]
/third_party/rust/crates/cxx/gen/cmd/src/syntax/
H A Dfile.rs13 pub attrs: Vec<Attribute>,
32 pub attrs: Vec<Attribute>,
43 let mut attrs = input.call(Attribute::parse_outer)?; in parse() variables
60 attrs.extend(content.call(Attribute::parse_inner)?); in parse()
70 attrs, in parse()
83 let attrs = input.call(Attribute::parse_outer)?; in parse()
99 item.attrs.splice(..0, attrs); in parse()
103 item.attrs.splice(..0, attrs); in parse()
[all...]
/third_party/wpa_supplicant/wpa_supplicant-2.9/src/radius/
H A Dradius_das.c59 struct radius_das_attrs attrs; in radius_das_disconnect() local
76 os_memset(&attrs, 0, sizeof(attrs)); in radius_das_disconnect()
86 attrs.nas_ip_addr = buf; in radius_das_disconnect()
98 attrs.nas_ipv6_addr = buf; in radius_das_disconnect()
104 attrs.nas_identifier = buf; in radius_das_disconnect()
105 attrs.nas_identifier_len = len; in radius_das_disconnect()
120 attrs.sta_addr = sta_addr; in radius_das_disconnect()
125 attrs.user_name = buf; in radius_das_disconnect()
126 attrs in radius_das_disconnect()
219 struct radius_das_attrs attrs; radius_das_coa() local
[all...]
/third_party/wpa_supplicant/wpa_supplicant-2.9_standard/src/radius/
H A Dradius_das.c59 struct radius_das_attrs attrs; in radius_das_disconnect() local
76 os_memset(&attrs, 0, sizeof(attrs)); in radius_das_disconnect()
86 attrs.nas_ip_addr = buf; in radius_das_disconnect()
98 attrs.nas_ipv6_addr = buf; in radius_das_disconnect()
104 attrs.nas_identifier = buf; in radius_das_disconnect()
105 attrs.nas_identifier_len = len; in radius_das_disconnect()
120 attrs.sta_addr = sta_addr; in radius_das_disconnect()
125 attrs.user_name = buf; in radius_das_disconnect()
126 attrs in radius_das_disconnect()
219 struct radius_das_attrs attrs; radius_das_coa() local
[all...]
/third_party/rust/crates/serde/serde_derive_internals/src/
H A Dcheck.rs6 // Cross-cutting checks that require looking at more than a single attrs object.
7 // Simpler checks should happen when parsing and building the attrs.
28 if let Default::None = cont.attrs.default() { in check_default_on_tuple()
34 if field.attrs.skip_deserializing() { in check_default_on_tuple()
37 if let Default::None = field.attrs.default() { in check_default_on_tuple()
67 if let Some(remote) = cont.attrs.remote() { in check_remote_generic()
89 if cont.data.has_getter() && cont.attrs.remote().is_none() { in check_getter()
118 if !field.attrs.flatten() { in check_flatten_field()
153 cont.attrs.identifier(), in check_identifier()
154 variant.attrs in check_identifier()
[all...]
/third_party/rust/crates/serde/serde_derive/src/internals/
H A Dcheck.rs6 // Cross-cutting checks that require looking at more than a single attrs object.
7 // Simpler checks should happen when parsing and building the attrs.
28 if let Default::None = cont.attrs.default() { in check_default_on_tuple()
34 if field.attrs.skip_deserializing() { in check_default_on_tuple()
37 if let Default::None = field.attrs.default() { in check_default_on_tuple()
67 if let Some(remote) = cont.attrs.remote() { in check_remote_generic()
89 if cont.data.has_getter() && cont.attrs.remote().is_none() { in check_getter()
118 if !field.attrs.flatten() { in check_flatten_field()
153 cont.attrs.identifier(), in check_identifier()
154 variant.attrs in check_identifier()
[all...]
/third_party/skia/third_party/externals/freetype/src/cache/
H A Dftcbasic.c54 FTC_BasicAttrRec attrs; member
62 FTC_BasicAttrRec attrs; member
75 return FTC_BASIC_ATTR_COMPARE( &family->attrs, &query->attrs ); in FT_CALLBACK_DEF()
90 family->attrs = query->attrs; in FT_CALLBACK_DEF()
105 error = FTC_Manager_LookupFace( manager, family->attrs.scaler.face_id, in FT_CALLBACK_DEF()
140 error = FTC_Manager_LookupSize( manager, &family->attrs.scaler, &size ); in FT_CALLBACK_DEF()
149 (FT_Int)family->attrs.load_flags | FT_LOAD_RENDER ); in FT_CALLBACK_DEF()
166 FTC_Scaler scaler = &family->attrs in FT_CALLBACK_DEF()
[all...]
/third_party/rust/crates/nix/src/
H A Dmacros.rs106 attrs: [$($attrs:tt)*],
110 $($attrs)*
122 attrs: [$($attrs:tt)*],
128 $($attrs)*
150 attrs: $attrs:tt,
160 attrs: $attrs,
[all...]
/third_party/mesa3d/src/broadcom/cle/
H A Dgen_pack_header.py97 def __init__(self, parser, attrs):
99 if "name" in attrs:
100 self.name = safe_name(attrs["name"]).lower()
102 if str(attrs["start"]).endswith("b"):
103 self.start = int(attrs["start"][:-1]) * 8
105 self.start = int(attrs["start"])
112 self.end = self.start + int(attrs["size"]) - 1
113 self.type = attrs["type"]
118 if "prefix" in attrs:
119 self.prefix = safe_name(attrs["prefi
[all...]
/third_party/mesa3d/src/panfrost/lib/genxml/
H A Dgen_pack.py297 def __init__(self, parser, name, attrs):
301 self.explicit_size = int(attrs["size"]) if "size" in attrs else 0
303 self.align = int(attrs["align"]) if "align" in attrs else None
324 def add_section(self, type_name, attrs):
325 assert("name" in attrs)
326 section = self.Section(safe_name(attrs["name"]).lower())
327 section.human_name = attrs["name"]
328 section.offset = int(attrs["offse
[all...]
/third_party/node/deps/openssl/openssl/Configurations/
H A Dgentemplate.pm60 unless defined $opts{attrs}->{skip};
213 my %attrs = %{$self->{info}->{attributes}->{generate}->{$src} // {}};
225 attrs => { %attrs },
335 my %attrs = %{$self->{info}->{attributes}->{libraries}->{$lib} // {}};
376 print STDERR "DEBUG[dolib:shlib] \%attrs for $lib : ", ,
377 join(",", map { "\n $_ = $attrs{$_}" } sort keys %attrs), "\n"
378 if %attrs && $debug_rules;
390 attrs
[all...]
/third_party/openssl/Configurations/
H A Dgentemplate.pm60 unless defined $opts{attrs}->{skip};
213 my %attrs = %{$self->{info}->{attributes}->{generate}->{$src} // {}};
225 attrs => { %attrs },
335 my %attrs = %{$self->{info}->{attributes}->{libraries}->{$lib} // {}};
376 print STDERR "DEBUG[dolib:shlib] \%attrs for $lib : ", ,
377 join(",", map { "\n $_ = $attrs{$_}" } sort keys %attrs), "\n"
378 if %attrs && $debug_rules;
390 attrs
[all...]
/third_party/mesa3d/src/intel/genxml/
H A Dgen_pack_header.py256 def __init__(self, parser, attrs):
258 if "name" in attrs:
259 self.name = safe_name(attrs["name"])
260 self.start = int(attrs["start"])
261 self.end = int(attrs["end"])
262 self.type = attrs["type"]
263 self.nonzero = bool_from_str(attrs.get("nonzero", "false"))
272 if "prefix" in attrs:
273 self.prefix = attrs["prefix"]
277 if "default" in attrs
[all...]

Completed in 15 milliseconds

12345678910>>...16