/external/mesa3d/src/glsl/tests/lower_jumps/ |
create_test_cases.py | 273 def create_test_case(doc_string, input_sexp, expected_sexp, test_name, 280 doc_lines = [line.strip() for line in doc_string.splitlines()] 281 doc_string = ''.join('# {0}\n'.format(line) for line in doc_lines if line != '') 295 f.write(doc_string) 304 doc_string = """Test that do_lower_jumps respects the lower_main_return 316 create_test_case(doc_string, input_sexp, expected_sexp, 'lower_returns_main_true', 318 create_test_case(doc_string, input_sexp, input_sexp, 'lower_returns_main_false', 322 doc_string = """Test that do_lower_jumps respects the lower_sub_return flag 333 create_test_case(doc_string, input_sexp, expected_sexp, 'lower_returns_sub_true', 335 create_test_case(doc_string, input_sexp, input_sexp, 'lower_returns_sub_false' [all...] |
/external/dbus-binding-generator/chromeos-dbus-bindings/ |
interface.h | 41 std::string doc_string; member in struct:chromeos_dbus_bindings::Interface::Method 53 std::string doc_string; member in struct:chromeos_dbus_bindings::Interface::Signal 63 std::string doc_string; member in struct:chromeos_dbus_bindings::Interface::Property 78 std::string doc_string; member in struct:chromeos_dbus_bindings::Interface
|
indented_text.h | 39 void AddComments(const std::string& doc_string);
|
indented_text.cc | 58 void IndentedText::AddComments(const std::string& doc_string) { 64 auto lines = brillo::string_utils::Split(doc_string, "\n", false, false);
|
xml_interface_parser.cc | 202 doc_string_ptr = &(interfaces_.back().doc_string); 204 doc_string_ptr = &(interfaces_.back().methods.back().doc_string); 206 doc_string_ptr = &(interfaces_.back().signals.back().doc_string); 208 doc_string_ptr = &(interfaces_.back().properties.back().doc_string);
|
adaptor_generator.cc | 74 text->AddComments(interface.doc_string); 290 block.AddComments(method.doc_string); 336 block.AddComments(signal.doc_string); 429 block.AddComments(property.doc_string);
|
proxy_generator_mock_unittest.cc | 225 interface.methods.back().doc_string = "Comment line1\nline2";
|
proxy_generator_unittest.cc | [all...] |
proxy_generator.cc | 199 text->AddComments(interface.doc_string); 240 text->AddComments(interface.doc_string); 643 block.AddComments(method.doc_string); 710 block.AddComments(method.doc_string); [all...] |