OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:choice_type
(Results
1 - 2
of
2
) sorted by null
/external/chromium_org/tools/json_schema_compiler/test/
choices_unittest.cc
252
ChoiceType*
choice_type
= obj->as_choice2->as_choice_type.get();
local
253
ASSERT_TRUE(
choice_type
->integers.as_integers);
254
EXPECT_FALSE(
choice_type
->integers.as_integer);
255
EXPECT_EQ(Vector(1, 2), *
choice_type
->integers.as_integers);
256
ASSERT_TRUE(
choice_type
->strings);
257
EXPECT_FALSE(
choice_type
->strings->as_strings);
258
ASSERT_TRUE(
choice_type
->strings->as_string);
259
EXPECT_EQ("foo", *
choice_type
->strings->as_string);
/external/chromium_org/tools/json_schema_compiler/
h_generator.py
257
for
choice_type
in type_.choices:
259
self._type_helper.GetCppType(
choice_type
, is_ptr=True),
260
choice_type
.unix_name))
Completed in 1169 milliseconds