| /external/autotest/cli/ |
| server.py | 103 def output(self, results): member in class:server 104 """Display output. 146 help='Format output as JSON.', 165 self.invalid_syntax('May only specify up to 1 output-format flag.') 184 def output(self, results): member in class:server_list 185 """Display output. 254 def output(self, results): member in class:server_create 255 """Display output. 287 def output(self, results): member in class:server_delete 288 """Display output 397 def output(self, results): member in class:server_modify [all...] |
| stable_version.py | 57 def output(self, results): member in class:stable_version 58 """Display output. 88 def output(self, results): member in class:stable_version_list 89 """Display output.
|
| /external/boringssl/src/util/ |
| generate-asm-lcov.py | 20 # The LCOV output format for each source file is: 51 """Calls callgrind_annotate over the set of callgrind output 95 """Parses the merged callgrind_annotate output |data| and generates execution 117 def output(data): function 119 a LCOV coverage output.""" 152 print output(lcov)
|
| /external/chromium-trace/catapult/systrace/profile_chrome/ |
| main.py | 153 output=options.output_file, variable
|
| /external/clang/tools/scan-build-py/libscanbuild/ |
| runner.py | 28 '-o': 1, # will set up own output file 107 The major report is the preprocessor output. The output filename generated 108 randomly. The compiler output also captured into '.stderr.txt' file. 143 # write the captured output too 147 # return with the previous step exit code and output 158 output of the analysis and returns with it. If failure reports are 161 def output(): function in function:run_analyzer 162 """ Creates output file name for reports. """ 173 opts['flags'] + [opts['file'], '-o', output()], [all...] |
| /external/curl/tests/unit/ |
| unit1604.c | 299 char *output = NULL; variable 304 CURLcode res = sanitize_file_name(&output, data[i].input, data[i].flags); 307 ((!output && !data[i].expected_output) || 308 (output && data[i].expected_output && 309 !strcmp(output, data[i].expected_output)))) { /* OK */ 310 free(output); variable 326 "output: %s\n" 328 "expected output: %s\n" 333 (output ? output : "(null)") 338 free(output); variable [all...] |
| /external/e2fsprogs/lib/ss/ |
| list_rqs.c | 30 FILE *output; local 48 output = fdopen(fd, "w"); 51 fprintf (output, "Available %s requests:\n\n", 62 fputs(*name, output); 65 fputs(", ", output); 69 fputc('\n', output); 73 fputc(' ', output); 74 fputs(entry->info_string, output); 75 fputc('\n', output); 78 fclose(output); [all...] |
| /external/harfbuzz_ng/util/ |
| shape-consumer.hh | 40 output (parser), 51 output.init (buffer, font_opts); 58 output.new_line (); 66 output.consume_text (buffer, text, text_len, shaper.utf8_clusters); 70 output.error (error); 78 output.consume_glyphs (buffer, text, text_len, shaper.utf8_clusters); 82 output.finish (buffer, font_opts); 94 output_t output; member in struct:shape_consumer_t
|
| /external/icu/icu4c/source/i18n/ |
| rbt_rule.h | 34 * <p>A rule consists of an input pattern and an output string. When 35 * the input pattern is matched, the output string is emitted. The 46 * references in its output string. A segment is a substring of the 50 * the output string that causes a segment of the input string (not 51 * the input pattern) to be copied to the output string. The range of 88 UnicodeFunctor* output; member in class:TransliterationRule 151 * Construct a new rule with the given input, output text, and other 152 * attributes. A cursor position may be specified for the output text. 160 * @param outputStr output string. 161 * @param cursorPosition offset into output at which cursor is located, or -1 i [all...] |
| /external/icu/tools/srcgen/currysrc/src/main/java/com/google/currysrc/api/output/ |
| BasicOutputSourceFileGenerator.java | 16 package com.google.currysrc.api.output; 25 * Generate the output source file name from a CompilationUnit's package information.
|
| /external/jacoco/org.jacoco.agent.rt.test/src/org/jacoco/agent/rt/internal/output/ |
| ExecutorTestBase.java | 12 package org.jacoco.agent.rt.internal.output;
|
| /external/jacoco/org.jacoco.core/src/org/jacoco/core/internal/analysis/filter/ |
| StringSwitchJavacFilter.java | 28 final MethodNode methodNode, final IFilterOutput output) { 31 filter(i, output); 43 final IFilterOutput output) { 53 output.ignore(start, dflt);
|
| /external/jacoco/org.jacoco.core.test/src/org/jacoco/core/test/perf/ |
| PerformanceSuite.java | 25 public void run(IPerfOutput output) throws Exception { 27 Target01.class).run(output); 29 .run(output); 31 .run(output); 32 new InstrumentationSizeSzenario(Target03.class).run(output); 33 new InstrumentationTimeScenario(Target03.class, 1000).run(output); 34 new AnalysisTimeScenario(Target03.class, 1000).run(output); 44 IPerfOutput output = new PerfOutputWriter(writer); local 45 new PerformanceSuite().run(output);
|
| /external/javaparser/javaparser-testing/src/test/java/com/github/javaparser/printer/ |
| DotPrinterTest.java | 54 String output = dotPrinter.output(expression);
local 55 assertEquals(expectedOutput, output);
76 String output = dotPrinter.output(expression);
local 77 assertEquals(expectedOutput, output);
|
| JsonPrinterTest.java | 24 String output = jsonPrinter.output(expression); local 26 assertEquals("{\"type\":\"MethodCallExpr\",\"name\":{\"type\":\"SimpleName\",\"identifier\":\"x\"},\"arguments\":[{\"type\":\"IntegerLiteralExpr\",\"value\":\"1\"},{\"type\":\"IntegerLiteralExpr\",\"value\":\"1\"}]}", output); 34 String output = jsonPrinter.output(expression); local 36 assertEquals("{\"operator\":\"PLUS\",\"left\":{\"value\":\"1\"},\"right\":{\"value\":\"1\"}}", output); 44 String output = jsonPrinter.output(expression); local 46 assertEquals("{\"types\":[{\"isInterface\":\"false\",\"name\":{\"identifier\":\"X\",\"comment\":{\"content\":\"hi\\\"\"}},\"members\":[{\"variables\":[{\"name\":{\"identifier\":\"x\"},\"type\":{\"type\":\"INT\"}}]}]}]}", output); 58 printer.output(unit) 71 String output = printer.output(unit); local [all...] |
| XmlPrinterTest.java | 15 String output = xmlOutput.output(expression); local 17 assertEquals("<root type='BinaryExpr' operator='PLUS'><left type='IntegerLiteralExpr' value='1'></left><right type='IntegerLiteralExpr' value='1'></right></root>", output); 26 String output = xmlOutput.output(expression); local 28 assertEquals("<root operator='PLUS'><left value='1'></left><right value='1'></right></root>", output); 37 String output = xmlOutput.output(expression); local 39 assertEquals("<root type='MethodCallExpr'><name type='SimpleName' identifier='a'></name><arguments><argument type='IntegerLiteralExpr' value='1'></argument><argument type='IntegerLiteralExpr' value='2'></argument></arguments></root>", output);
|
| YamlPrinterTest.java | 48 String output = yamlPrinter.output(expression);
local 49 assertEquals(expectedOutput, output);
65 String output = yamlPrinter.output(expression);
local 66 assertEquals(expectedOutput, output);
78 String output = yamlPrinter.output(expression);
local 79 assertEquals(expectedOutput, output);
91 String output = yamlPrinter.output(expression); local [all...] |
| /external/jsilver/src/com/google/clearsilver/jsilver/output/ |
| ThreadLocalOutputBufferProvider.java | 17 package com.google.clearsilver.jsilver.output;
|
| /external/libchrome/base/test/ |
| scoped_feature_list.cc | 16 std::string output; local 18 if (!output.empty()) 19 output += ","; 20 output += feature.name; 22 return output;
|
| /external/libevent/sample/ |
| hello-world.c | 111 struct evbuffer *output = bufferevent_get_output(bev); local 112 if (evbuffer_get_length(output) == 0) {
|
| /external/libmojo/ui/gfx/range/mojo/ |
| range_struct_traits_unittest.cc | 51 gfx::Range output; local 52 proxy->EchoRange(input, &output); 53 EXPECT_EQ(start, output.start()); 54 EXPECT_EQ(end, output.end()); 62 gfx::RangeF output; local 63 proxy->EchoRangeF(input, &output); 64 EXPECT_EQ(start, output.start()); 65 EXPECT_EQ(end, output.end());
|
| /external/libvpx/libvpx/test/ |
| idct_test.cc | 39 output = new Buffer<uint8_t>(4, 4, 3); 40 ASSERT_TRUE(output != NULL); 41 ASSERT_TRUE(output->Init()); 47 delete output; 54 Buffer<uint8_t> *output; member in class:__anon26026::IDCTTest 58 // When the input is '0' the output will be '0'. 61 output->Set(0); 64 predict->stride(), output->TopLeftPixel(), 65 output->stride())); 69 ASSERT_TRUE(output->CheckValues(0)) [all...] |
| /external/libxml2/doc/examples/ |
| index.py | 92 def parse(filename, output): 100 output.write(" <example filename='%s'>\n" % filename) 103 output.write(" <synopsis>%s</synopsis>\n" % escape(synopsis)); 108 output.write(" <purpose>%s</purpose>\n" % escape(purpose)); 113 output.write(" <usage>%s</usage>\n" % escape(usage)); 118 output.write(" <test>%s</test>\n" % escape(test)); 126 output.write(" <author>%s</author>\n" % escape(author)); 131 output.write(" <copy>%s</copy>\n" % escape(copy)); 136 output.write(" <section>%s</section>\n" % escape(section)); 148 output.write(" <extra topic='%s'>%s</extra>\n" % 303 output = open("examples.xml", "w") variable [all...] |
| /external/libxml2/include/libxml/ |
| debugXML.h | 29 xmlDebugDumpString (FILE *output, 32 xmlDebugDumpAttr (FILE *output, 36 xmlDebugDumpAttrList (FILE *output, 40 xmlDebugDumpOneNode (FILE *output, 44 xmlDebugDumpNode (FILE *output, 48 xmlDebugDumpNodeList (FILE *output, 52 xmlDebugDumpDocumentHead(FILE *output, 55 xmlDebugDumpDocument (FILE *output, 58 xmlDebugDumpDTD (FILE *output, 61 xmlDebugDumpEntities (FILE *output, 119 FILE *output; member in struct:_xmlShellCtxt [all...] |
| /external/llvm/lib/ObjectYAML/ |
| MachOYAML.cpp | 27 void ScalarTraits<char_16>::output(const char_16 &Val, void *, function in class:llvm::yaml::ScalarTraits 46 void ScalarTraits<uuid_t>::output(const uuid_t &Val, void *, function in class:llvm::yaml::ScalarTraits
|