Searched refs:source (Results 126 - 150 of 2480) sorted by relevance

1234567891011>>

/external/icu4c/test/intltest/
H A Dtscoll.h33 void doTest(Collator* col, const UChar *source, const UChar *target, Collator::EComparisonResult result);
35 void doTest(Collator* col, const UnicodeString &source, const UnicodeString &target, Collator::EComparisonResult result);
36 void doTestVariant(Collator* col, const UnicodeString &source, const UnicodeString &target, Collator::EComparisonResult result);
37 virtual void reportCResult( const UnicodeString &source, const UnicodeString &target,
44 static UnicodeString &prettify(const CollationKey &source, UnicodeString &target);
52 UCollationResult compareUsingPartials(UCollator *coll, const UChar source[], int32_t sLen, const UChar target[], int32_t tLen, int32_t pieceSize, UErrorCode &status);
/external/icu4c/tools/genrb/
H A Dprscmnts.h33 getNote(const UChar* source, int32_t srcLen,
37 removeCmtText(UChar* source, int32_t srcLen, UErrorCode* status);
40 getDescription( const UChar* source, int32_t srcLen,
44 getTranslate( const UChar* source, int32_t srcLen,
49 getAt(const UChar* source, int32_t srcLen,
56 getCount(const UChar* source, int32_t srcLen,
/external/qemu/distrib/zlib-1.2.3/
H A Dcompress.c12 Compresses the source buffer into the destination buffer. The level
14 length of the source buffer. Upon entry, destLen is the total size of the
22 int ZEXPORT compress2 (dest, destLen, source, sourceLen, level)
25 const Bytef *source;
32 stream.next_in = (Bytef*)source;
35 /* Check for source > 64K on 16-bit machine: */
62 int ZEXPORT compress (dest, destLen, source, sourceLen)
65 const Bytef *source;
68 return compress2(dest, destLen, source, sourceLen, Z_DEFAULT_COMPRESSION);
/external/webkit/Source/WebCore/dom/
H A DMessageEvent.cpp5 * Redistribution and use in source and binary forms, with or without
8 * 1. Redistributions of source code must retain the above copyright
41 MessageEvent::MessageEvent(PassRefPtr<SerializedScriptValue> data, const String& origin, const String& lastEventId, PassRefPtr<DOMWindow> source, PassOwnPtr<MessagePortArray> ports) argument
46 , m_source(source)
55 void MessageEvent::initMessageEvent(const AtomicString& type, bool canBubble, bool cancelable, PassRefPtr<SerializedScriptValue> data, const String& origin, const String& lastEventId, DOMWindow* source, PassOwnPtr<MessagePortArray> ports) argument
65 m_source = source;
78 void MessageEvent::initMessageEvent(const AtomicString& type, bool canBubble, bool cancelable, PassRefPtr<SerializedScriptValue> data, const String& origin, const String& lastEventId, DOMWindow* source, MessagePort* port) argument
85 initMessageEvent(type, canBubble, cancelable, data, origin, lastEventId, source, ports);
H A DMessageEvent.h5 * Redistribution and use in source and binary forms, with or without
8 * 1. Redistributions of source code must retain the above copyright
46 static PassRefPtr<MessageEvent> create(PassOwnPtr<MessagePortArray> ports, PassRefPtr<SerializedScriptValue> data = 0, const String& origin = "", const String& lastEventId = "", PassRefPtr<DOMWindow> source = 0)
48 return adoptRef(new MessageEvent(data, origin, lastEventId, source, ports));
52 void initMessageEvent(const AtomicString& type, bool canBubble, bool cancelable, PassRefPtr<SerializedScriptValue> data, const String& origin, const String& lastEventId, DOMWindow* source, PassOwnPtr<MessagePortArray>);
57 DOMWindow* source() const { return m_source.get(); } function in class:WebCore::MessageEvent
63 void initMessageEvent(const AtomicString& type, bool canBubble, bool cancelable, PassRefPtr<SerializedScriptValue> data, const String& origin, const String& lastEventId, DOMWindow* source, MessagePort*);
69 MessageEvent(PassRefPtr<SerializedScriptValue> data, const String& origin, const String& lastEventId, PassRefPtr<DOMWindow> source, PassOwnPtr<MessagePortArray>);
/external/webkit/Source/WebCore/platform/audio/
H A DAudioDSPKernelProcessor.cpp4 * Redistribution and use in source and binary forms, with or without
8 * * Redistributions of source code must retain the above copyright
73 void AudioDSPKernelProcessor::process(AudioBus* source, AudioBus* destination, size_t framesToProcess) argument
75 ASSERT(source && destination);
76 if (!source || !destination)
84 bool channelCountMatches = source->numberOfChannels() == destination->numberOfChannels() && source->numberOfChannels() == m_kernels.size();
90 m_kernels[i]->process(source->channel(i)->data(), destination->channel(i)->data(), framesToProcess);
H A DAudioResamplerKernel.cpp4 * Redistribution and use in source and binary forms, with or without
7 * 1. Redistributions of source code must retain the above copyright
67 // Do bounds checking for the source buffer.
80 float* source = m_sourceBuffer.data();
88 source[0] = m_lastValues[0];
89 source[1] = m_lastValues[1];
95 // Sanity check source buffer access.
105 double sample1 = source[readIndex];
106 double sample2 = source[readIndex + 1];
115 // Save the last two sample-frames which will later be used at the beginning of the source buffe
[all...]
/external/webkit/Source/WebKit/chromium/src/
H A DWebImageSkia.cpp4 * Redistribution and use in source and binary forms, with or without
8 * * Redistributions of source code must retain the above copyright
51 ImageSource source; local
52 source.setData(PassRefPtr<SharedBuffer>(data).get(), true);
53 if (!source.isSizeAvailable())
59 const size_t frameCount = source.frameCount();
63 const IntSize frameSize = source.frameSizeAtIndex(i);
79 OwnPtr<NativeImageSkia> frame(source.createFrameAtIndex(index));
/external/zlib/src/
H A Dcompress.c12 Compresses the source buffer into the destination buffer. The level
14 length of the source buffer. Upon entry, destLen is the total size of the
22 int ZEXPORT compress2 (dest, destLen, source, sourceLen, level)
25 const Bytef *source;
32 stream.next_in = (Bytef*)source;
35 /* Check for source > 64K on 16-bit machine: */
62 int ZEXPORT compress (dest, destLen, source, sourceLen)
65 const Bytef *source;
68 return compress2(dest, destLen, source, sourceLen, Z_DEFAULT_COMPRESSION);
/external/quake/quake/src/QW/client/
H A Ddraw.c136 byte *source; local
153 source = draw_chars + (row<<10) + (col<<3);
158 source -= 128*y;
171 if (source[0])
172 dest[0] = source[0];
173 if (source[1])
174 dest[1] = source[1];
175 if (source[2])
176 dest[2] = source[2];
177 if (source[
308 byte *source; local
346 byte *dest, *source; local
397 byte *dest, *source; local
448 byte *dest, *source, tbyte; local
535 byte *dest, *source, tbyte; local
618 byte *source; local
[all...]
/external/chromium/googleurl/src/
H A Durl_canon_stdurl.cc4 // Redistribution and use in source and binary forms, with or without
8 // * Redistributions of source code must retain the above copyright
41 bool DoCanonicalizeStandardURL(const URLComponentSource<CHAR>& source, argument
47 bool success = CanonicalizeScheme(source.scheme, parsed.scheme,
63 success &= CanonicalizeUserInfo(source.username, parsed.username,
64 source.password, parsed.password,
69 success &= CanonicalizeHost(source.host, parsed.host,
79 success &= CanonicalizePort(source.port, parsed.port, default_port,
93 success &= CanonicalizePath(source.path, parsed.path,
108 CanonicalizeQuery(source
[all...]
H A Durl_canon_mailtourl.cc4 // Redistribution and use in source and binary forms, with or without
8 // * Redistributions of source code must retain the above copyright
43 bool DoCanonicalizeMailtoURL(const URLComponentSource<CHAR>& source, argument
72 UCHAR uch = static_cast<UCHAR>(source.path[i]);
74 success &= AppendUTF8EscapedChar(source.path, &i, end, output);
86 CanonicalizeQuery(source.query, parsed.query, NULL,
117 URLComponentSource<char> source(base);
119 SetupOverrideComponents(base, replacements, &source, &parsed);
121 source, parsed, output, new_parsed);
130 URLComponentSource<char> source(bas
[all...]
H A Durl_canon_pathurl.cc4 // Redistribution and use in source and binary forms, with or without
8 // * Redistributions of source code must retain the above copyright
42 bool DoCanonicalizePathURL(const URLComponentSource<CHAR>& source, argument
47 bool success = CanonicalizeScheme(source.scheme, parsed.scheme,
64 UCHAR uch = static_cast<UCHAR>(source.path[i]);
66 success &= AppendUTF8EscapedChar(source.path, &i, end, output);
108 URLComponentSource<char> source(base);
110 SetupOverrideComponents(base, replacements, &source, &parsed);
112 source, parsed, output, new_parsed);
121 URLComponentSource<char> source(bas
[all...]
/external/webkit/Source/WebCore/html/parser/
H A DHTMLTokenizer.h5 * Redistribution and use in source and binary forms, with or without
8 * 1. Redistributions of source code must retain the above copyright
190 // characters in |source| (after collapsing \r\n, etc).
191 ALWAYS_INLINE bool peek(SegmentedString& source, int& lineNumber) argument
194 m_nextInputCharacter = *source;
208 source.advancePastNewline(lineNumber);
209 if (source.isEmpty())
211 m_nextInputCharacter = *source;
222 if (m_nextInputCharacter == '\0' && !shouldTreatNullAsEndOfFileMarker(source)) {
224 source
236 advance(SegmentedString& source, int& lineNumber) argument
[all...]
H A DHTMLTokenizer.cpp6 * Redistribution and use in source and binary forms, with or without
9 * 1. Redistributions of source code must retain the above copyright
65 inline void advanceStringAndASSERTIgnoringCase(SegmentedString& source, const char* expectedCharacters) argument
68 source.advanceAndASSERTIgnoringCase(*expectedCharacters++);
71 inline void advanceStringAndASSERT(SegmentedString& source, const char* expectedCharacters) argument
74 source.advanceAndASSERT(*expectedCharacters++);
128 inline bool HTMLTokenizer::processEntity(SegmentedString& source) argument
132 bool success = consumeHTMLEntity(source, decodedEntity, notEnoughCharacters);
168 if (!m_inputStreamPreprocessor.advance(source, m_lineNumber)) \
176 // state. We handle those cases by advancing the source directl
199 emitAndResumeIn(SegmentedString& source, State state) argument
217 emitEndOfFile(SegmentedString& source) argument
228 flushBufferedEndTag(SegmentedString& source) argument
251 flushEmitAndResumeIn(SegmentedString& source, State state) argument
258 nextToken(SegmentedString& source, HTMLToken& token) argument
[all...]
/external/v8/src/
H A Dcompilation-cache.cc2 // Redistribution and use in source and binary forms, with or without
6 // * Redistributions of source code must retain the above copyright
139 // We only re-use a cached function for some script source code if the
166 // will be cached, but subsequent code from different source / line
168 Handle<SharedFunctionInfo> CompilationCacheScript::Lookup(Handle<String> source, argument
180 Handle<Object> probe(table->Lookup(*source), isolate());
217 if (generation != 0) Put(source, shared);
228 Handle<String> source,
231 return table->Put(*source, *function_info);
236 Handle<String> source,
227 TryTablePut( Handle<String> source, Handle<SharedFunctionInfo> function_info) argument
235 TablePut( Handle<String> source, Handle<SharedFunctionInfo> function_info) argument
244 Put(Handle<String> source, Handle<SharedFunctionInfo> function_info) argument
251 Lookup( Handle<String> source, Handle<Context> context, LanguageMode language_mode, int scope_position) argument
286 TryTablePut( Handle<String> source, Handle<Context> context, Handle<SharedFunctionInfo> function_info, int scope_position) argument
296 TablePut( Handle<String> source, Handle<Context> context, Handle<SharedFunctionInfo> function_info, int scope_position) argument
308 Put(Handle<String> source, Handle<Context> context, Handle<SharedFunctionInfo> function_info, int scope_position) argument
317 Lookup(Handle<String> source, JSRegExp::Flags flags) argument
347 TryTablePut( Handle<String> source, JSRegExp::Flags flags, Handle<FixedArray> data) argument
356 TablePut( Handle<String> source, JSRegExp::Flags flags, Handle<FixedArray> data) argument
366 Put(Handle<String> source, JSRegExp::Flags flags, Handle<FixedArray> data) argument
383 LookupScript(Handle<String> source, Handle<Object> name, int line_offset, int column_offset) argument
395 LookupEval( Handle<String> source, Handle<Context> context, bool is_global, LanguageMode language_mode, int scope_position) argument
418 LookupRegExp(Handle<String> source, JSRegExp::Flags flags) argument
428 PutScript(Handle<String> source, Handle<SharedFunctionInfo> function_info) argument
438 PutEval(Handle<String> source, Handle<Context> context, bool is_global, Handle<SharedFunctionInfo> function_info, int scope_position) argument
458 PutRegExp(Handle<String> source, JSRegExp::Flags flags, Handle<FixedArray> data) argument
[all...]
/external/chromium/chrome/browser/extensions/
H A Dextension_icon_manager.cc2 // Use of this source code is governed by a BSD-style license that can be
25 static SkBitmap ApplyPadding(const SkBitmap& source, argument
28 new gfx::CanvasSkia(source.width() + padding.width(),
29 source.height() + padding.height(), false));
31 source,
32 0, 0, source.width(), source.height(),
33 padding.left(), padding.top(), source.width(), source.height(),
106 SkBitmap ExtensionIconManager::ApplyTransforms(const SkBitmap& source) { argument
[all...]
/external/jmonkeyengine/engine/src/core/com/jme3/audio/
H A DEnvironment.java5 * Redistribution and use in source and binary forms, with or without
9 * * Redistributions of source code must retain the above copyright
81 public Environment(Environment source) { argument
82 this.airAbsorbGainHf = source.airAbsorbGainHf;
83 this.roomRolloffFactor = source.roomRolloffFactor;
84 this.decayTime = source.decayTime;
85 this.decayHFRatio = source.decayHFRatio;
86 this.density = source.density;
87 this.diffusion = source.diffusion;
88 this.gain = source
[all...]
/external/chromium/net/base/
H A Dcapturing_net_log.cc2 // Use of this source code is governed by a BSD-style license that can be
11 Source source,
14 : type(type), time(time), source(source), phase(phase),
45 const Source& source,
49 Entry entry(type, time, source, phase, extra_parameters);
63 CapturingBoundNetLog::CapturingBoundNetLog(const NetLog::Source& source, argument
65 : source_(source), capturing_net_log_(net_log) {
9 Entry(EventType type, const base::TimeTicks& time, Source source, EventPhase phase, EventParameters* extra_parameters) argument
43 AddEntry(EventType type, const base::TimeTicks& time, const Source& source, EventPhase phase, EventParameters* extra_parameters) argument
/external/freetype/src/base/
H A Dftdbgmem.c96 FT_MemSource source; member in struct:FT_MemNodeRec_
373 FT_FILENAME( node->source->file_name ),
374 node->source->line_no );
400 FT_MemSource source, next; local
403 for ( source = table->sources[i]; source != NULL; source = next )
405 next = source->link;
406 ft_mem_table_free( table, source );
519 FT_MemSource source; local
621 FT_MemSource source; local
940 FT_MemSource source = *bucket; local
953 FT_MemSource source = *bucket; local
974 FT_MemSource source = sources[nn]; local
[all...]
/external/apache-xml/src/main/java/org/apache/xpath/
H A DSourceTreeManager.java40 * This class bottlenecks all management of source trees. The methods
41 * in this class should allow easy garbage collection of source
42 * trees (not yet!), and should centralize parsing for those source trees.
59 /** The TrAX URI resolver used to obtain source trees. */
123 Source source = null;
127 source = m_uriResolver.resolve(urlString, base);
130 if (null == source)
134 source = new StreamSource(uri);
137 return source;
163 * Put the source tre
169 putDocumentInCache(int n, Source source) argument
196 getNode(Source source) argument
272 getSourceTree(Source source, SourceLocator locator, XPathContext xctxt) argument
300 parseToNode(Source source, SourceLocator locator, XPathContext xctxt) argument
[all...]
/external/chromium/third_party/libjingle/source/talk/base/
H A Dstringencode.cc5 * Redistribution and use in source and binary forms, with or without
8 * 1. Redistributions of source code must retain the above copyright notice,
64 const char * source, size_t srclen,
72 char ch = source[srcpos++];
86 const char * source, size_t srclen,
94 char ch = source[srcpos++];
96 ch = source[srcpos++];
105 const char * source, size_t srclen,
113 char ch = source[srcpos++];
130 const char * source, size_
[all...]
/external/chromium/chrome/browser/net/
H A Dload_timing_observer_unittest.cc2 // Use of this source code is governed by a BSD-style license that can be
35 const NetLog::Source& source,
38 observer.OnAddEntry(type, current_time, source, NetLog::PHASE_BEGIN, params);
42 const NetLog::Source& source,
45 observer.OnAddEntry(type, current_time, source, NetLog::PHASE_END, params);
57 NetLog::Source source(NetLog::SOURCE_URL_REQUEST, id);
58 AddStartEntry(observer, source, NetLog::TYPE_REQUEST_ALIVE, NULL);
60 source,
66 NetLog::Source source(NetLog::SOURCE_URL_REQUEST, id);
67 AddEndEntry(observer, source, NetLo
34 AddStartEntry(LoadTimingObserver& observer, const NetLog::Source& source, NetLog::EventType type, NetLog::EventParameters* params) argument
41 AddEndEntry(LoadTimingObserver& observer, const NetLog::Source& source, NetLog::EventType type, NetLog::EventParameters* params) argument
[all...]
/external/chromium/chrome/browser/debugger/
H A Ddevtools_window.h2 // Use of this source code is governed by a BSD-style license that can be
63 const NotificationSource& source,
74 virtual void OpenURLFromTab(TabContents* source,
79 virtual void NavigationStateChanged(const TabContents* source, argument
81 virtual void AddNewContents(TabContents* source,
88 virtual void LoadingStateChanged(TabContents* source) {} argument
89 virtual void CloseContents(TabContents* source) {} argument
90 virtual void MoveContents(TabContents* source, const gfx::Rect& pos) {} argument
91 virtual bool CanReloadContents(TabContents* source) const;
92 virtual void UpdateTargetURL(TabContents* source, cons argument
[all...]
/external/icu4c/i18n/
H A Ddtrule.cpp53 DateTimeRule::DateTimeRule(const DateTimeRule& source) argument
54 : UObject(source),
55 fMonth(source.fMonth), fDayOfMonth(source.fDayOfMonth), fDayOfWeek(source.fDayOfWeek),
56 fWeekInMonth(source.fWeekInMonth), fMillisInDay(source.fMillisInDay),
57 fDateRuleType(source.fDateRuleType), fTimeRuleType(source.fTimeRuleType) {

Completed in 1533 milliseconds

1234567891011>>