HomeSort by relevance Sort by last modified time
    Searched refs:Output (Results 226 - 250 of 400) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/icu/icu4j/main/classes/core/src/com/ibm/icu/util/
TimeZone.java 336 * @param offsets output parameter to receive the raw offset, that
470 * @param style the output style of the display name. Valid styles are
489 * @param style the output style of the display name. Valid styles are
510 * @param style the output style of the display name. Valid styles are
544 Output<TimeType> timeType = new Output<TimeType>(TimeType.UNKNOWN);
    [all...]
  /external/llvm/lib/CodeGen/
ScheduleDAG.cpp 343 case SDep::Output: dbgs() << "out "; break;
363 case SDep::Output: dbgs() << "out "; break;
AggressiveAntiDepBreaker.cpp 251 /// AntiDepEdges - Return in Edges the anti- and output- dependencies
257 if ((P->getKind() == SDep::Anti) || (P->getKind() == SDep::Output)) {
809 // The dependence edges that represent anti- and output-
834 (Edge->getKind() != SDep::Output)) continue;
    [all...]
  /external/pdfium/third_party/lcms2-2.6/include/
lcms2_plugin.h 259 register cmsUInt16Number Output[],
266 cmsFloat32Number Output[],
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/
rtmv2.h 212 typedef VOID (WINAPI *_ENTITY_METHOD)(RTM_ENTITY_HANDLE CallerHandle,RTM_ENTITY_HANDLE CalleeHandle,RTM_ENTITY_METHOD_INPUT *Input,RTM_ENTITY_METHOD_OUTPUT *Output);
276 DWORD WINAPI RtmInvokeMethod(RTM_ENTITY_HANDLE RtmRegHandle,RTM_ENTITY_HANDLE EntityHandle,PRTM_ENTITY_METHOD_INPUT Input,PUINT OutputSize,PRTM_ENTITY_METHOD_OUTPUT Output);
  /cts/tests/camera/src/android/hardware/camera2/cts/
ReprocessCaptureTest.java 195 // Test supported input/output formats with the largest sizes.
205 StaticMetadata.StreamDirection.Output);
243 getMaxSize(reprocessOutputFormat, StaticMetadata.StreamDirection.Output);
337 * Test aborting reprocess capture requests of the largest input and output sizes for each
367 * Test reprocess timestamps for the largest input and output sizes for each supported format.
396 * Test reprocess jpeg output's exif data for the largest input and output sizes for each
456 * Test the input format and output format with the largest input and output sizes.
471 * Test the input format and output format with the largest input and output sizes for
    [all...]
DngCreatorTest.java 128 * raw image captured for the first reported camera device to be saved to an output file.
203 * raw image captured for the first reported camera device to be saved to an output file.
228 StaticMetadata.StreamDirection.Output);
318 * Test basic RAW capture, and ensure that the rendered RAW output is similar to the JPEG
487 ImageFormat.JPEG, StaticMetadata.StreamDirection.Output);
644 StaticMetadata.StreamDirection.Output);
673 // Also setup a small YUV output for AE metering if needed
    [all...]
  /external/autotest/client/site_tests/firmware_TouchMTB/
firmware_utils.py 218 class Output:
  /external/autotest/server/site_tests/infra_ServoDiagnosis/
infra_ServoDiagnosis.py 159 """Utility to return the output of a command on a servo host.
162 output. A trailing newline, if any, is stripped.
164 @return Output from the command with the trailing newline
  /external/chromium-trace/catapult/telemetry/telemetry/internal/browser/
browser_options.py 79 group.add_option('--chromium-output-directory',
125 help='Output bootstrap deps list.')
  /external/llvm/test/
Makefile 109 $(RM) -rf `find $(LLVM_OBJ_ROOT)/test -name Output -type d -print`
  /external/llvm/tools/dsymutil/
DebugMap.cpp 40 // deterministic output for testing).
85 yaml::Output yout(OS, /* Ctxt = */ nullptr, /* WrapColumn = */ 0);
152 void ScalarTraits<Triple>::output(const Triple &val, void *, function in class:llvm::yaml::ScalarTraits
  /external/llvm/tools/obj2yaml/
coff2yaml.cpp 274 yaml::Output Yout(Out);
  /external/webrtc/webrtc/modules/audio_coding/codecs/isac/fix/source/
pitch_filter_armv6.S 14 @ Output is bit-exact with the reference C code in pitch_filter.c.
  /external/clang/include/clang/Basic/
Diagnostic.h 50 /// suppressing the diagnostic output can still result in successful
321 SmallVectorImpl<char> &Output,
481 /// into the output.
612 SmallVectorImpl<char> &Output,
614 ArgToStringFn(Kind, Val, Modifier, Argument, PrevArgs, Output,
    [all...]
  /external/google-breakpad/src/testing/gtest/scripts/
pump.py 641 class Output:
656 def RunAtomicCode(env, node, output):
659 result = Output()
678 RunCode(new_env, node.code, output)
680 output.Append(sep)
682 output.Append(node.raw_code.value)
686 RunCode(env.Clone(), node.then_branch, output)
688 RunCode(env.Clone(), node.else_branch, output)
691 output.Append('%s' % (value,))
693 output.Append('$'
    [all...]
  /external/protobuf/gtest/scripts/
pump.py 634 class Output:
649 def RunAtomicCode(env, node, output):
652 result = Output()
671 RunCode(new_env, node.code, output)
673 output.Append(sep)
675 output.Append(node.raw_code.value)
679 RunCode(env.Clone(), node.then_branch, output)
681 RunCode(env.Clone(), node.else_branch, output)
684 output.Append('%s' % (value,))
686 output.Append('$'
    [all...]
  /external/vulkan-validation-layers/tests/gtest-1.7.0/scripts/
pump.py 641 class Output:
656 def RunAtomicCode(env, node, output):
659 result = Output()
678 RunCode(new_env, node.code, output)
680 output.Append(sep)
682 output.Append(node.raw_code.value)
686 RunCode(env.Clone(), node.then_branch, output)
688 RunCode(env.Clone(), node.else_branch, output)
691 output.Append('%s' % (value,))
693 output.Append('$'
    [all...]
  /external/clang/lib/AST/
ASTDiagnostic.cpp 219 /// 4) Two different types within the same diagnostic have the same output
326 SmallVectorImpl<char> &Output,
331 size_t OldEnd = Output.size();
332 llvm::raw_svector_ostream OS(Output);
450 Output.insert(Output.begin()+OldEnd, '\'');
451 Output.push_back('\'');
470 /// PrintTree - Format output string as a tree.
485 /// OS - The stream used to construct the output strings.
488 /// IsBold - Keeps track of the bold formatting for the output string
    [all...]
  /external/libavc/common/arm/
ih264_iquant_itrans_recon_a9.s 59 @ * Output 4x4 block
71 @ * Output Stride
246 @ * Output 4x4 block
258 @ * Output Stride
437 @ * Output 4x4 block
449 @ * Output Stride
    [all...]
  /external/libvpx/libvpx/vpx_dsp/x86/
quantize_avx_x86_64.asm 22 ; If we can skip this block, then just zero the output
55 mov r0, eobmp ; Output pointer
56 mov r1, qcoeffmp ; Output pointer
57 mov r2, dqcoeffmp ; Output pointer
  /frameworks/base/core/jni/
android_hardware_camera2_DngCreator.cpp 38 #include <img_utils/Output.h>
309 class JniOutputStream : public Output, public LightRefBase<JniOutputStream> {
552 virtual status_t writeToStream(Output& stream, uint32_t count);
577 status_t InputStripSource::writeToStream(Output& stream, uint32_t count) {
686 virtual status_t writeToStream(Output& stream, uint32_t count);
711 status_t DirectStripSource::writeToStream(Output& stream, uint32_t count) {
937 * planeColors - the color planes in the noise profile output.
    [all...]
  /external/icu/android_icu4j/src/main/java/android/icu/text/
PluralRules.java 31 import android.icu.util.Output;
    [all...]
  /external/icu/icu4j/main/classes/core/src/com/ibm/icu/text/
PluralRules.java 30 import com.ibm.icu.util.Output;
    [all...]
  /external/llvm/lib/Target/Hexagon/
HexagonVLIWPacketizer.cpp 195 // Here, Insn 1 will result in the dependence graph not emitting an output
292 DepType == SDep::Output;
    [all...]

Completed in 2291 milliseconds

1 2 3 4 5 6 7 8 91011>>