Searched defs:source (Results 176 - 200 of 2375) sorted by relevance

1234567891011>>

/external/chromium_org/gin/test/
H A Dfile_runner.cc2 // Use of this source code is governed by a BSD-style license that can be
56 std::string source; local
57 ASSERT_TRUE(ReadFileToString(path, &source));
68 runner.Run(source, path.AsUTF8Unsafe());
/external/chromium_org/media/audio/sounds/
H A Daudio_stream_handler_unittest.cc2 // Use of this source code is governed by a BSD-style license that can be
48 AudioOutputStream::AudioSourceCallback* source) {
49 AudioStreamHandler::SetAudioSourceForTesting(source);
80 SineWaveAudioSource source(CHANNEL_LAYOUT_STEREO, 200.0, 8000);
83 SetAudioSourceForTesting(&source);
47 SetAudioSourceForTesting( AudioOutputStream::AudioSourceCallback* source) argument
/external/chromium_org/media/base/
H A Daudio_video_metadata_extractor_unittest.cc2 // Use of this source code is governed by a BSD-style license that can be
23 FileDataSource source; local
24 EXPECT_TRUE(source.Initialize(GetTestDataFilePath(filename)));
28 bool extracted = extractor->Extract(&source, extract_attached_images);
/external/chromium_org/net/tools/gdig/
H A Dfile_net_log.cc2 // Use of this source code is governed by a BSD-style license that can be
24 // Only BoundNetLogs without a NetLog should have an invalid source.
25 DCHECK(entry.source().IsValid());
27 const char* source = NetLog::SourceTypeToString(entry.source().type); local
45 entry.source().id, source, type, params.c_str());
/external/chromium_org/ppapi/tests/
H A Dtest_console.cc2 // Use of this source code is governed by a BSD-style license that can be
34 pp::Var source,
40 source.pp_var(), message.pp_var());
49 pp::Var source(std::string("somewhere"));
53 TestConsoleSub(interface, pp_instance, source, pp::Var());
54 TestConsoleSub(interface, pp_instance, source, pp::Var(pp::Var::Null()));
55 TestConsoleSub(interface, pp_instance, source, pp::Var(false));
56 TestConsoleSub(interface, pp_instance, source, pp::Var(12345678));
57 TestConsoleSub(interface, pp_instance, source, pp::Var(-0.0));
58 TestConsoleSub(interface, pp_instance, source, p
32 TestConsoleSub(const PPB_Console* console_interface_, PP_Instance instance, pp::Var source, pp::Var message) argument
[all...]
/external/chromium_org/ppapi/thunk/
H A Dppb_video_source_private_thunk.cc2 // Use of this source code is governed by a BSD-style license that can be
32 int32_t Open(PP_Resource source, argument
35 EnterResource<PPB_VideoSource_Private_API> enter(source, callback, true);
41 int32_t GetFrame(PP_Resource source, argument
44 EnterResource<PPB_VideoSource_Private_API> enter(source, callback, true);
50 void Close(PP_Resource source) { argument
51 EnterResource<PPB_VideoSource_Private_API> enter(source, true);
/external/chromium_org/remoting/host/
H A Ddns_blackhole_checker.cc2 // Use of this source code is governed by a BSD-style license that can be
33 void DnsBlackholeChecker::OnURLFetchComplete(const net::URLFetcher* source) { argument
34 int response = source->GetResponseCode();
36 if (source->GetResponseCode() == 200) {
/external/chromium_org/sync/engine/
H A Dsync_scheduler.h2 // Use of this source code is governed by a BSD-style license that can be
30 const sync_pb::GetUpdatesCallerInfo::GetUpdatesSource& source,
38 sync_pb::GetUpdatesCallerInfo::GetUpdatesSource source; member in struct:syncer::ConfigurationParams
/external/chromium_org/third_party/WebKit/Source/core/css/
H A DCSSCustomFontData.h33 static PassRefPtr<CSSCustomFontData> create(RemoteFontFaceSource* source, FallbackVisibility visibility) argument
35 return adoptRef(new CSSCustomFontData(source, visibility));
60 CSSCustomFontData(RemoteFontFaceSource* source, FallbackVisibility visibility) argument
61 : m_fontFaceSource(source)
65 if (source)
66 m_isLoading = source->isLoading();
/external/chromium_org/third_party/WebKit/Source/core/inspector/
H A DInspectorInstrumentationCustomInl.h4 * Redistribution and use in source and binary forms, with or without
8 * * Redistributions of source code must retain the above copyright
41 String preprocessEventListenerImpl(InstrumentingAgents*, LocalFrame*, const String& source, const String& url, const String& functionName);
64 inline String preprocessEventListener(LocalFrame* frame, const String& source, const String& url, const String& functionName) argument
66 FAST_RETURN_IF_NO_FRONTENDS(source);
68 return preprocessEventListenerImpl(instrumentingAgents, frame, source, url, functionName);
69 return source;
/external/chromium_org/third_party/WebKit/Source/core/xml/parser/
H A DMarkupTokenizerInlines.h6 * Redistribution and use in source and binary forms, with or without
9 * 1. Redistributions of source code must retain the above copyright
40 inline void advanceStringAndASSERTIgnoringCase(SegmentedString& source, const char* expectedCharacters) argument
43 source.advanceAndASSERTIgnoringCase(*expectedCharacters++);
46 inline void advanceStringAndASSERT(SegmentedString& source, const char* expectedCharacters) argument
49 source.advanceAndASSERT(*expectedCharacters++);
74 if (!m_inputStreamPreprocessor.advance(source)) \
82 // state. We handle those cases by advancing the source directly and using
87 if (source.isEmpty() || !m_inputStreamPreprocessor.peek(source)) \
[all...]
H A DXMLParserInput.h4 * Redistribution and use in source and binary forms, with or without
8 * * Redistributions of source code must retain the above copyright
40 explicit XMLParserInput(const String& source) argument
41 : m_source(source)
/external/chromium_org/third_party/WebKit/Source/modules/webaudio/
H A DChannelSplitterNode.cpp4 * Redistribution and use in source and binary forms, with or without
7 * 1. Redistributions of source code must retain the above copyright
60 AudioBus* source = input(0)->bus(); local
61 ASSERT(source);
62 ASSERT_UNUSED(framesToProcess, framesToProcess == source->length());
64 unsigned numberOfSourceChannels = source->numberOfChannels();
71 // Split the channel out if it exists in the source.
73 destination->channel(0)->copyFrom(source->channel(i));
/external/chromium_org/third_party/WebKit/Source/platform/audio/
H A DZeroPole.cpp4 * Redistribution and use in source and binary forms, with or without
8 * 1. Redistributions of source code must retain the above copyright
39 void ZeroPole::process(const float *source, float *destination, unsigned framesToProcess) argument
53 float input = *source++;
/external/chromium_org/third_party/WebKit/Source/platform/mediastream/
H A DMediaStreamComponent.cpp5 * Redistribution and use in source and binary forms, with or without
9 * * Redistributions of source code must retain the above copyright
43 PassRefPtr<MediaStreamComponent> MediaStreamComponent::create(PassRefPtr<MediaStreamSource> source) argument
45 return adoptRef(new MediaStreamComponent(createCanonicalUUIDString(), source));
48 PassRefPtr<MediaStreamComponent> MediaStreamComponent::create(const String& id, PassRefPtr<MediaStreamSource> source) argument
50 return adoptRef(new MediaStreamComponent(id, source));
53 MediaStreamComponent::MediaStreamComponent(const String& id, PassRefPtr<MediaStreamSource> source) argument
54 : m_source(source)
/external/chromium_org/third_party/angle/src/libGLESv2/renderer/d3d/
H A DDynamicHLSL.h3 // Use of this source code is governed by a BSD-style license that can be
52 std::string source; member in struct:rx::PixelShaderOutputVariable
/external/chromium_org/third_party/icu/source/common/unicode/
H A Dcaniter.h76 * @param source string to get results for
80 CanonicalIterator(const UnicodeString &source, UErrorCode &status);
89 * Gets the NFD form of the current source we are iterating over.
90 * @return gets the source: NOTE: it is the NFD form of source
111 * Set a new source for this iterator. Allows object reuse.
112 * @param newSource the source string to iterate against. This allows the same iterator to be used
113 * while changing the source string, saving object creation.
123 * @param source the string to find permutations for
129 static void U_EXPORT2 permute(UnicodeString &source, UBoo
165 UnicodeString source; member in class:CanonicalIterator
[all...]
/external/chromium_org/third_party/icu/source/i18n/
H A Dtridpars.h31 * A basic ID, which contains source, target, and variant, but no
56 * 'source' and 'target' will always be non-null. The 'variant'
59 * 'sawSource' is true if there was an explicit source in the
60 * parsed id. If there was no explicit source, then an implied
61 * source of ANY is returned and 'sawSource' is set to false.
68 UnicodeString source; // not null member in class:TransliteratorIDParser::Specs
217 * S-T/V, or S/V-T. If the source is missing, return a source of
220 * @param source the given source
[all...]
/external/chromium_org/third_party/icu/source/test/cintltst/
H A Dccolltst.c86 void reportCResult( const UChar source[], const UChar target[], argument
101 log_err("Compare(%s , %s) returned: %s expected: %s\n", aescstrdup(source,-1), aescstrdup(target,-1),
107 log_err("incCompare(%s , %s) returned: %s expected: %s\n", aescstrdup(source,-1), aescstrdup(target,-1),
113 log_err("KeyCompare(%s , %s) returned: %s expected: %s\n", aescstrdup(source,-1), aescstrdup(target,-1),
119 log_err("difference between sortkey and compare result for (%s , %s) Keys: %s compare %s\n", aescstrdup(source,-1), aescstrdup(target,-1),
/external/chromium_org/third_party/libaddressinput/src/cpp/src/
H A Dondemand_supplier.cc31 OndemandSupplier::OndemandSupplier(const Source* source, Storage* storage) argument
32 : retriever_(new Retriever(source, storage)) {
/external/chromium_org/third_party/libjingle/source/talk/app/webrtc/
H A Daudiotrack.cc5 * Redistribution and use in source and binary forms, with or without
8 * 1. Redistributions of source code must retain the above copyright notice,
46 const std::string& id, AudioSourceInterface* source) {
48 new rtc::RefCountedObject<AudioTrack>(id, source);
45 Create( const std::string& id, AudioSourceInterface* source) argument
/external/chromium_org/third_party/libvpx/source/libvpx/test/
H A Dsubtract_test.cc4 * 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.
45 uint8_t *source = reinterpret_cast<uint8_t*>( local
46 vpx_memalign(16, kBlockHeight * kSrcStride[0] * sizeof(*source)));
55 be.base_src = &source;
101 vpx_free(source);
/external/chromium_org/third_party/libvpx/source/libvpx/vp8/encoder/
H A Dboolhuff.c4 * 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.
43 void vp8_start_encode(BOOL_CODER *br, unsigned char *source, unsigned char *source_end) argument
49 br->buffer = source;
/external/chromium_org/third_party/mesa/src/src/gallium/state_trackers/clover/core/
H A Dprogram.cpp29 const std::string &source) :
30 ctx(ctx), __source(source) {
64 _cl_program::source() const { function in class:_cl_program
28 _cl_program(clover::context &ctx, const std::string &source) argument
/external/chromium_org/third_party/mesa/src/src/gallium/state_trackers/clover/tgsi/
H A Dcompiler.cpp79 read_body(const char *source, module &m) { argument
82 if (!tgsi_text_translate(source, prog, Elements(prog)))
91 clover::compile_program_tgsi(const compat::string &source) { argument
92 const char *body = source.find("COMP\n");
95 read_header({ source.begin(), body }, m);

Completed in 681 milliseconds

1234567891011>>