HomeSort by relevance Sort by last modified time
    Searched defs:source (Results 201 - 225 of 4045) sorted by null

1 2 3 4 5 6 7 891011>>

  /external/libxcam/plugins/smart/dvs/libdvs/
test-image-stabilization.cpp 115 Ptr<VideoFileSource> source = makePtr<VideoFileSource>(inputPath); local
116 stabilizer->setFrameSource(source);
118 int outputFps = source->fps();
119 Size frameSize = Size(source->width(), source->height());
120 cout << "frame count (rough): " << source->count() << endl;
122 cout << "frame size: " << source->width() << "x" << source->height() << endl;
  /external/okhttp/okhttp/src/main/java/com/squareup/okhttp/
ResponseBody.java 43 return source().inputStream();
46 public abstract BufferedSource source() throws IOException; method in class:ResponseBody
54 BufferedSource source = source(); local
57 bytes = source.readByteArray();
59 Util.closeQuietly(source);
92 source().close();
121 if (content == null) throw new NullPointerException("source == null");
131 @Override public BufferedSource source() { method in class:ResponseBody
  /external/okhttp/okio/okio/src/test/java/okio/
GzipSinkTest.java 55 GzipSource source = new GzipSource(gzipped); local
56 while (source.read(result, Integer.MAX_VALUE) != -1) {
  /external/pdfium/core/fxge/dib/
cfx_imagestretcher.h 2 // Use of this source code is governed by a BSD-style license that can be
35 RetainPtr<CFX_DIBSource> source() { return m_pSource; } function in class:CFX_ImageStretcher
  /external/robolectric/v1/src/main/java/com/xtremelabs/robolectric/shadows/
ShadowHtml.java 13 public static Spanned fromHtml(String source) {
14 if (source == null) {
22 return new SpannedThatActsLikeString(source);
26 String source; field in class:ShadowHtml.SpannedThatActsLikeString
28 private SpannedThatActsLikeString(String source) {
29 this.source = source;
59 return source.length();
64 return source.charAt(i);
74 return source;
    [all...]
  /external/smali/baksmali/src/test/java/org/jf/baksmali/
ImplicitReferenceTest.java 5 * Redistribution and use in source and binary forms, with or without
9 * * Redistributions of source code must retain the above copyright
42 String source = "" + local
68 BaksmaliTestUtils.assertSmaliCompiledEquals(source, expected, options);
73 String source = "" + local
99 BaksmaliTestUtils.assertSmaliCompiledEquals(source, expected, options);
104 String source = "" + local
124 BaksmaliTestUtils.assertSmaliCompiledEquals(source, expected, options);
129 String source = "" + local
149 BaksmaliTestUtils.assertSmaliCompiledEquals(source, expected, options)
154 String source = "" + local
185 String source = "" + local
216 String source = "" + local
239 String source = "" + local
    [all...]
  /external/snakeyaml/src/test/java/org/yaml/snakeyaml/
YamlDocument.java 28 private String source; field in class:YamlDocument
45 source = Util.getLocalResource(ROOT + sourceName);
50 // is identical to the source
66 return source;
  /external/tensorflow/tensorflow/compiler/xla/service/
generic_transfer_manager.cc 89 /*source=*/device_buffer.buffer(index),
129 const void* source; local
132 source = subliteral.untyped_data();
137 source = relayed_out_literal->untyped_data();
141 /*size=*/GetByteSizeRequirement(device_subshape), source,
155 const void* source) {
  /external/tensorflow/tensorflow/core/lib/strings/
str_util_test.cc 31 string ExpectCUnescapeSuccess(StringPiece source) {
34 EXPECT_TRUE(str_util::CUnescape(source, &dest, &error)) << error;
52 StringPiece source = "llohe"; local
55 EXPECT_TRUE(str_util::CUnescape(source, &dest, &error));
  /external/turbine/java/com/google/turbine/binder/bound/
SourceHeaderBoundClass.java 29 /** A {@link HeaderBoundClass} that corresponds to a source file being compiled. */
97 /** The source file. */
98 public SourceFile source() { method in class:SourceHeaderBoundClass
99 return base.source();
  /external/turbine/java/com/google/turbine/diag/
LineMap.java 24 /** Converts source positions to line and column information, for diagnostic formatting. */
27 private final String source; field in class:LineMap
30 private LineMap(String source, ImmutableRangeMap<Integer, Integer> lines) {
31 this.source = source;
35 public static LineMap create(String source) {
39 for (int idx = 0; idx < source.length(); idx++) {
40 char ch = source.charAt(idx);
45 if (idx + 1 < source.length() && source.charAt(idx + 1) == '\n')
    [all...]
  /external/turbine/java/com/google/turbine/parse/
UnicodeEscapePreprocessor.java 21 /** Preprocesses Unicode escape characters in Java source code, as described in JLS §3.3. */
26 private final SourceFile source; field in class:UnicodeEscapePreprocessor
33 public UnicodeEscapePreprocessor(SourceFile source) {
34 this.source = source;
35 this.input = source.source();
134 public SourceFile source() { method in class:UnicodeEscapePreprocessor
135 return source;
  /external/turbine/javatests/com/google/turbine/binder/
BinderErrorTest.java 344 final String[] source; field in class:BinderErrorTest
347 public BinderErrorTest(String[] source, String[] expected) {
348 this.source = source;
355 Binder.bind(ImmutableList.of(parseLines(source)), Collections.emptyList(), BOOTCLASSPATH)
  /external/universal-tween-engine/java/applets/src/aurelienribon/utils/swing/
SwingHelper.java 25 * @param source The source component
28 public static void addWindowListener(final Component source, final WindowListener listener) {
29 if (source instanceof Window) {
30 ((Window)source).addWindowListener(listener);
32 source.addHierarchyListener(new HierarchyListener() {
35 SwingUtilities.getWindowAncestor(source).addWindowListener(listener);
  /external/wayland/tests/
array-test.c 105 struct wl_array source; local
109 wl_array_init(&source);
113 int *p = wl_array_add(&source, sizeof(int));
120 wl_array_copy(&copy, &source);
125 int *s = (int *)(source.data + index);
133 wl_array_release(&source);
  /external/webrtc/webrtc/modules/audio_coding/neteq/tools/
rtc_event_log_source.cc 4 * Use of this source code is governed by a BSD-style license
5 * that can be found in the LICENSE file in the root of the source
8 * be found in the AUTHORS file in the root of the source tree.
65 RtcEventLogSource* source = new RtcEventLogSource(); local
66 RTC_CHECK(source->OpenFile(file_name));
67 return source;
  /frameworks/av/drm/mediadrm/plugins/clearkey/default/tests/
AesCtrDecryptorUnittest.cpp 2 * Copyright (C) 2014 The Android Open Source Project
33 status_t attemptDecrypt(const Key& key, const Iv& iv, const uint8_t* source,
40 return decryptor.decrypt(keyVector, iv, source, destination, subSamples,
70 uint8_t source[kTotalSize] = { 0 }; local
82 &source[0], &destination[0],
104 uint8_t source[kTotalSize] = { 0 }; local
116 &source[0], &destination[0],
  /frameworks/av/media/libmedia/
IMediaExtractorService.cpp 3 ** Copyright 2007, The Android Open Source Project
43 virtual sp<IMediaExtractor> makeExtractor(const sp<IDataSource> &source, const char *mime) {
46 data.writeStrongBinder(IInterface::asBinder(source));
88 ALOGE("Error reading source from parcel");
94 sp<IDataSource> source = interface_cast<IDataSource>(b); local
96 sp<IMediaExtractor> ex = makeExtractor(source, mime);
107 sp<IDataSource> source = makeIDataSource(fd, offset, length); local
108 reply->writeStrongBinder(IInterface::asBinder(source));
111 if (source.get() == nullptr && fd != -1) {
  /frameworks/av/media/libstagefright/rtsp/
rtp_test.cpp 2 * Copyright (C) 2010 The Android Open Source Project
176 sp<MediaSource> source = session->trackAt(0); local
179 source, 0 /* flags: ACodec::kPreferSoftwareCodecs */);
  /frameworks/base/core/java/android/security/net/config/
ManifestConfigSource.java 2 * Copyright (C) 2015 The Android Open Source Project
59 ConfigSource source; local
69 source = new XmlConfigSource(mContext, configResource, mApplicationInfo);
79 source = new DefaultConfigSource(usesCleartextTraffic, mApplicationInfo);
81 mConfigSource = source;
  /frameworks/base/media/java/android/media/
AudioPatch.java 2 * Copyright (C) 2014 The Android Open Source Project
22 * An audio source can be an output mix (playback AudioBus) or an input device (microphone).
26 * It contains the list of source and sink AudioPortConfig showing audio port configurations
70 for (AudioPortConfig source : mSources) {
71 s.append(source.toString());
  /frameworks/base/tests/AccessoryDisplay/source/src/com/android/accessorydisplay/source/
UsbAccessoryStreamTransport.java 2 * Copyright (C) 2013 The Android Open Source Project
17 package com.android.accessorydisplay.source;
  /frameworks/base/tests/AccessoryDisplay/source/src/com/android/accessorydisplay/source/presentation/
Cube.java 2 * Copyright (C) 2013 The Android Open Source Project
17 package com.android.accessorydisplay.source.presentation;
  /frameworks/base/tools/aapt2/java/
ProguardRules.h 2 * Copyright (C) 2015 The Android Open Source Project
29 #include "Source.h"
40 Source source; member in struct:aapt::proguard::UsageLocation
  /frameworks/base/tools/aapt2/link/
XmlReferenceLinker.cpp 2 * Copyright (C) 2015 The Android Open Source Project
71 XmlVisitor(const Source& source, const CallSite& callsite, IAaptContext* context,
73 : source_(source),
85 const Source source = source_.WithLine(el->line_number); variable
104 DiagMessage error_msg(source);
119 attr.compiled_value->SetSource(source);
123 DiagMessage msg(source);
142 Source source_
    [all...]

Completed in 907 milliseconds

1 2 3 4 5 6 7 891011>>