OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:variant_type
(Results
1 - 4
of
4
) sorted by null
/art/test/testrunner/
testrunner.py
125
# key:
variant_type
.
322
for
variant_type
in VARIANT_TYPE_DICT:
323
if not (
variant_type
== 'target' or 'address_sizes' in
variant_type
):
324
total_test_count *= len(_user_input_variants[
variant_type
])
[
all
...]
/external/mesa3d/src/gallium/drivers/radeon/
radeon_uvd.h
290
uint32_t
variant_type
;
member in struct:ruvd_mpeg4
radeon_uvd.c
874
result.
variant_type
= 0;
[
all
...]
/packages/apps/Test/connectivity/sl4n/rapidjson/doc/
internals.md
31
`Value` is a [variant type](http://en.wikipedia.org/wiki/
Variant_type
). In RapidJSON's context, an instance of `Value` can contain 1 of 6 JSON value types. This is possible by using `union`. Each `Value` contains two members: `union Data data_` and a`unsigned flags_`. The `flags_` indiciates the JSON type, and also additional information.
Completed in 496 milliseconds