Home
last modified time | relevance | path

Searched refs:getOutput (Results 1 – 25 of 48) sorted by relevance

12

/external/jline/src/src/main/java/jline/
DHistory.java101 if (getOutput() != null) { in addToHistory()
102 getOutput().println(buffer); in addToHistory()
103 getOutput().flush(); in addToHistory()
111 if (getOutput() != null) { in flushBuffer()
112 … for (Iterator i = history.iterator(); i.hasNext(); getOutput().println((String) i.next())) { in flushBuffer()
116 getOutput().flush(); in flushBuffer()
170 public PrintWriter getOutput() { in getOutput() method in History
/external/testng/src/main/java/org/testng/
DReporter.java53 public static List<String> getOutput() { in getOutput() method in Reporter
88 int n = getOutput().size(); in log()
99 getOutput().addAll(m_orphanedOutput.get()); in log()
105 getOutput().add(s); in log()
169 public static synchronized List<String> getOutput(ITestResult tr) { in getOutput() method in Reporter
178 result.add(getOutput().get(n)); in getOutput()
/external/swiftshader/tests/fuzzers/
DVertexRoutineFuzzer.cpp198 state.output[i].xWrite = bytecodeShader->getOutput(i, 0).active(); in LLVMFuzzerTestOneInput()
199 state.output[i].yWrite = bytecodeShader->getOutput(i, 1).active(); in LLVMFuzzerTestOneInput()
200 state.output[i].zWrite = bytecodeShader->getOutput(i, 2).active(); in LLVMFuzzerTestOneInput()
201 state.output[i].wWrite = bytecodeShader->getOutput(i, 3).active(); in LLVMFuzzerTestOneInput()
/external/tensorflow/tensorflow/compiler/tf2tensorrt/convert/
Dconvert_nodes.cc451 nvinfer1::ITensor* trt_tensor = layer->getOutput(0); in CreateConstantLayer()
1104 MarkQuantizationRangesAsInferrable(tensor, layer->getOutput(0)); in RenameAndMarkOutputTensors()
1105 tensor = layer->getOutput(0); in RenameAndMarkOutputTensors()
1170 MarkQuantizationRangesAsInferrable(input_tensor, layer->getOutput(0)); in TransposeTensor()
1189 *output_tensor = layer->getOutput(0); in TransposeTensor()
1258 const_cast<nvinfer1::ITensor*>(input.tensor()), layer->getOutput(0)); in PrepareTensorForShape()
1259 *tensor = layer->getOutput(0); in PrepareTensorForShape()
1329 all_tensors.insert(layer->getOutput(j)); in MaybeApplyQuantizationRanges()
1689 const_cast<nvinfer1::ITensor*>(tensor), layer->getOutput(0)); in BinaryTensorOpWeight()
1690 tensor = layer->getOutput(0); in BinaryTensorOpWeight()
[all …]
/external/jacoco/org.jacoco.core.test/src/org/jacoco/core/runtime/
DAgentOptionsTest.java52 assertEquals(AgentOptions.OutputMode.none, options.getOutput()); in testDefaults()
103 assertEquals(AgentOptions.OutputMode.tcpserver, options.getOutput()); in testPropertiesOptions()
288 assertEquals(AgentOptions.OutputMode.tcpserver, options.getOutput()); in testGetOutput()
295 assertEquals(AgentOptions.OutputMode.tcpclient, options.getOutput()); in testSetOutput1()
302 assertEquals(AgentOptions.OutputMode.tcpclient, options.getOutput()); in testSetOutput2()
/external/antlr/gunit/src/main/java/org/antlr/gunit/swingui/
DTestCaseEditController.java236 ITestCaseOutput output = this.currentTestCase.getOutput(); in updateOutputEditor()
309 if(output.getClass().equals(this.currentTestCase.getOutput().getClass())) in OnOutputTestCaseTypeChanged()
482 (TestCaseOutputResult) currentTestCase.getOutput(); in actionPerformed()
516 currentTestCase.getOutput().setScript(getText()); in caretUpdate()
614 clamp(clampAtNewLine(item.getOutput().getScript()), 18)); in getListCellRendererComponent()
/external/swiftshader/src/Device/
DVertexProcessor.cpp430 state.output[i].xWrite = context->vertexShader->getOutput(i, 0).active(); in update()
431 state.output[i].yWrite = context->vertexShader->getOutput(i, 1).active(); in update()
432 state.output[i].zWrite = context->vertexShader->getOutput(i, 2).active(); in update()
433 state.output[i].wWrite = context->vertexShader->getOutput(i, 3).active(); in update()
/external/guava/guava/src/com/google/common/io/
DOutputSupplier.java46 T getOutput() throws IOException; in getOutput() method
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/jcajce/provider/asymmetric/rsa/
DCipherSpi.java494 return getOutput(); in engineDoFinal()
530 byte[] out = getOutput(); in engineDoFinal()
540 private byte[] getOutput() in getOutput() method in CipherSpi
/external/testng/src/test/java/test/reports/
DReporterTest.java18 Assert.assertTrue (Reporter.getOutput ().size () == 2); in testMethod()
DReporterLogTest.java21 List<String> output = Reporter.getOutput(); in shouldLogFromListener()
/external/bouncycastle/repackaged/bcprov/src/main/java/com/android/org/bouncycastle/jcajce/provider/asymmetric/rsa/
DCipherSpi.java498 return getOutput(); in engineDoFinal()
534 byte[] out = getOutput(); in engineDoFinal()
544 private byte[] getOutput() in getOutput() method in CipherSpi
/external/antlr/gunit/src/main/java/org/antlr/gunit/swingui/model/
DTestCase.java48 public ITestCaseOutput getOutput() { in getOutput() method in TestCase
/external/antlr/gunit/src/main/java/org/antlr/gunit/
DgUnitTestResult.java57 public String getOutput() { in getOutput() method in gUnitTestResult
/external/swiftshader/src/Pipeline/
DVertexShader.hpp43 const Semantic& getOutput(int outputIdx, int component) const;
/external/swiftshader/src/Shader/
DVertexShader.hpp51 const Semantic& getOutput(int outputIdx, int component) const;
/external/cldr/tools/java/org/unicode/cldr/draft/
DKeyboard.java256 public String getOutput() { in getOutput() method in Keyboard.Output
473 final Output output = getOutput(); in handlePathValue()
492 final Output output = getOutput(); in handlePathValue()
568 public Output getOutput() { in getOutput() method in Keyboard.KeyboardHandler
/external/vogar/src/vogar/
DJarSuggestions.java46 Set<File> suggestedJars = classFileIndex.suggestClasspaths(outcome.getOutput()); in addSuggestionsFromOutcome()
DExpectation.java124 return pattern.matcher(outcome.getOutput()).matches(); in patternMatches()
/external/jacoco/org.jacoco.core/src/org/jacoco/core/runtime/
DAgentOptions.java252 getOutput(); in validateAll()
495 public OutputMode getOutput() { in getOutput() method in AgentOptions
/external/testng/src/main/java/org/testng/reporters/jq/
DReporterPanel.java34 List<String> lines = Reporter.getOutput(tr); in getContent()
/external/jacoco/org.jacoco.ant/src/org/jacoco/ant/
DAbstractCoverageTask.java224 if (OutputMode.file.equals(agentOptions.getOutput())) { in prepareAgentOptions()
/external/apache-xml/src/main/java/org/apache/xalan/templates/
DStylesheetComposed.java96 recomposableElements.addElement(included.getOutput(j)); in recompose()
/external/swiftshader/src/Renderer/
DVertexProcessor.cpp1016 state.output[i].xWrite = context->vertexShader->getOutput(i, 0).active(); in update()
1017 state.output[i].yWrite = context->vertexShader->getOutput(i, 1).active(); in update()
1018 state.output[i].zWrite = context->vertexShader->getOutput(i, 2).active(); in update()
1019 state.output[i].wWrite = context->vertexShader->getOutput(i, 3).active(); in update()
DContext.cpp558 if(vertexShader->getOutput(T0 + coordinate, component).usage == Shader::USAGE_TEXCOORD) in texCoordActive()
1268 vertexDiffuse = vertexShader->getOutput(C0, component).active(); in diffuseActive()
1335 vertexSpecular = vertexShader->getOutput(C1, component).active(); in specularActive()

12