Searched defs:source (Results 151 - 175 of 1325) sorted by relevance

1234567891011>>

/external/icu4c/samples/translit/
H A Dutil.cpp32 UnicodeString escape(const UnicodeString &source) { argument
36 for (i=0; i<source.length(); ++i) {
37 UChar ch = source[i];
/external/icu4c/test/cintltst/
H A Dccurrtst.c102 UChar source[2], target[2]; local
124 u_strcpy(source, currency[i]);
140 compareResult = ucol_strcoll(c, source, u_strlen(source), target, u_strlen(target));
144 sortklen=ucol_getSortKey(c, source, u_strlen(source), NULL, 0);
146 ucol_getSortKey(c, source, u_strlen(source), sortKey1, sortklen+1);
157 reportCResult( source, target, sortKey1, sortKey2, compareResult, keyResult, compareResult, expectedResult );
/external/jmonkeyengine/engine/src/networking/com/jme3/network/kernel/
H A DEndpointEvent.java5 * Redistribution and use in source and binary forms, with or without
9 * * Redistributions of source code must retain the above copyright
47 private Kernel source; field in class:EndpointEvent
51 public EndpointEvent( Kernel source, Endpoint p, Type type ) argument
53 this.source = source;
58 public static EndpointEvent createAdd( Kernel source, Endpoint p ) argument
60 return new EndpointEvent( source, p, Type.ADD );
63 public static EndpointEvent createRemove( Kernel source, Endpoint p ) argument
65 return new EndpointEvent( source,
[all...]
/external/jmonkeyengine/engine/src/tools/jme3tools/converters/model/
H A DModelConverter.java5 * Redistribution and use in source and binary forms, with or without
9 * * Redistributions of source code must retain the above copyright
163 private static void optimizeScene(Spatial source, boolean toFixed){ argument
164 if (source instanceof Geometry){
165 Geometry geom = (Geometry) source;
168 }else if (source instanceof Node){
169 Node node = (Node) source;
177 public static void optimize(Spatial source, boolean toFixed){ argument
178 optimizeScene(source, toFixed);
179 source
[all...]
/external/kernel-headers/original/linux/
H A Dudp.h23 __u16 source; member in struct:udphdr
/external/libvpx/libvpx/vpx_scale/generic/
H A Dyv12extend.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.
57 /* Now copy the top and bottom source lines into each line of the respective borders */
94 /* Now copy the top and bottom source lines into each line of the respective borders */
126 /* Now copy the top and bottom source lines into each line of the respective borders */
175 /* Now copy the top and bottom source lines into each line of the respective borders */
207 * FUNCTION : Copies the source image into the destination image and
217 unsigned char *source, *dest; local
219 source
252 unsigned char *source, *dest; local
[all...]
/external/nist-sip/java/gov/nist/javax/sip/
H A DDialogTimeoutEvent.java2 * This source code has been contributed to the public domain by Mobicents
39 * @param source - the source of TimeoutEvent.
42 public DialogTimeoutEvent(Object source, Dialog dialog, Reason reason) { argument
43 super(source);
/external/nist-sip/java/gov/nist/javax/sip/stack/
H A DDefaultMessageLogFactory.java15 public LogRecord createLogRecord(String message, String source, argument
18 return new MessageLog(message, source, destination, timeStamp,
22 public LogRecord createLogRecord(String message, String source, argument
25 return new MessageLog(message, source, destination, timeStamp,
H A DMessageLog.java49 private String source; field in class:MessageLog
84 String source,
95 this.source = source;
117 String source,
128 this.source = source;
151 + source
82 MessageLog( String message, String source, String destination, String timeStamp, boolean isSender, String firstLine, String tid, String callId, long timeStampHeaderValue) argument
115 MessageLog( String message, String source, String destination, long timeStamp, boolean isSender, String firstLine, String tid, String callId, long timestampVal) argument
/external/openfst/src/include/fst/script/
H A Dcompile.h33 const string &source; member in struct:fst::script::FstCompileArgs
45 FstCompileArgs(istream &istrm, const string &source, const string &dest, argument
51 istrm(istrm), source(source), dest(dest), fst_type(fst_type),
63 FstCompiler<Arc> fstcompiler(args->istrm, args->source, args->isyms,
82 void CompileFst(istream &istrm, const string &source, const string &dest,
/external/openfst/src/script/
H A Dfst-class.cc65 << hdr.ArcType() << "\" : " << read_options.source;
81 FstClass *FstClass::Read(istream &istr, const string &source) { argument
82 return ReadFst<FstClass>(istr, source);
/external/skia/src/effects/
H A DSkOffsetImageFilter.cpp4 * Use of this source code is governed by a BSD-style license that can be
13 bool SkOffsetImageFilter::onFilterImage(Proxy* proxy, const SkBitmap& source, argument
17 SkBitmap src = this->getInputResult(proxy, source, matrix, loc);
/external/skia/src/utils/
H A DSkBitSet.cpp5 * Use of this source code is governed by a BSD-style license that can be
21 SkBitSet::SkBitSet(const SkBitSet& source) argument
23 *this = source;
73 bool SkBitSet::orBits(const SkBitSet& source) { argument
74 if (fBitCount != source.fBitCount) {
78 uint32_t* sourceBitmap = source.internalGet(0);
/external/webkit/Source/JavaScriptCore/API/
H A DJSBase.cpp4 * Redistribution and use in source and binary forms, with or without
7 * 1. Redistributions of source code must retain the above copyright
54 SourceCode source = makeSource(script->ustring(), sourceURL->ustring(), startingLineNumber); local
55 Completion completion = evaluate(globalObject->globalExec(), globalObject->globalScopeChain(), source, jsThisObject);
75 SourceCode source = makeSource(script->ustring(), sourceURL->ustring(), startingLineNumber); local
76 Completion completion = checkSyntax(exec->dynamicGlobalObject()->globalExec(), source);
/external/webkit/Source/JavaScriptCore/runtime/
H A DRegExpPrototype.cpp138 UString source = thisObject->get(exec, exec->propertyNames().source).toString(exec); local
139 // If source is empty, use "/(?:)/" to avoid colliding with comment syntax
140 return JSValue::encode(jsMakeNontrivialString(exec, "/", source.length() ? source : UString("(?:)"), postfix));
/external/webkit/Source/WebCore/bindings/js/
H A DCachedScriptSourceProvider.h4 * Redistribution and use in source and binary forms, with or without
7 * 1. Redistributions of source code must retain the above copyright
51 const String& source() const { return m_cachedScript->script(); } function in class:WebCore::CachedScriptSourceProvider
H A DJSInjectedScriptManager.cpp6 * Redistribution and use in source and binary forms, with or without
10 * * Redistributions of source code must retain the above copyright
51 ScriptObject InjectedScriptManager::createInjectedScript(const String& source, ScriptState* scriptState, long id) argument
53 SourceCode sourceCode = makeSource(stringToUString(source));
H A DJSMainThreadExecState.h4 * Redistribution and use in source and binary forms, with or without
7 * 1. Redistributions of source code must retain the above copyright
51 static JSC::Completion evaluate(JSC::ExecState* exec, JSC::ScopeChainNode* chain, const JSC::SourceCode& source, JSC::JSValue thisValue) argument
54 return JSC::evaluate(exec, chain, source, thisValue);
H A DStringSourceProvider.h4 * Redistribution and use in source and binary forms, with or without
8 * 1. Redistributions of source code must retain the above copyright
40 static PassRefPtr<StringSourceProvider> create(const String& source, const String& url, const TextPosition1& startPosition = TextPosition1::minimumPosition()) argument
42 return adoptRef(new StringSourceProvider(source, url, startPosition));
49 const String& source() const { return m_source; } function in class:WebCore::StringSourceProvider
52 StringSourceProvider(const String& source, const String& url, const TextPosition1& startPosition) argument
55 , m_source(source)
63 inline JSC::SourceCode makeSource(const String& source, const String& url = String(), int firstLine = 1) argument
65 return JSC::SourceCode(StringSourceProvider::create(source, url), firstLine);
/external/webkit/Source/WebCore/bindings/v8/
H A DScriptSourceCode.h4 * Redistribution and use in source and binary forms, with or without
8 * * Redistributions of source code must retain the above copyright
44 ScriptSourceCode(const String& source, const KURL& url = KURL(), const TextPosition1& startPosition = TextPosition1::minimumPosition()) argument
45 : m_source(source)
64 const String& source() const { return m_source; } function in class:WebCore::ScriptSourceCode
/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);
/external/webkit/Source/WebCore/inspector/
H A DConsoleMessage.h6 * Redistribution and use in source and binary forms, with or without
10 * 1. Redistributions of source code must retain the above copyright
63 MessageSource source() const { return m_source; } function in class:WebCore::ConsoleMessage
/external/webkit/Source/WebCore/page/
H A DUserScript.h4 * Redistribution and use in source and binary forms, with or without
7 * 1. Redistributions of source code must retain the above copyright
41 UserScript(const String& source, const KURL& url, argument
44 : m_source(source)
53 const String& source() const { return m_source; } function in class:WebCore::UserScript
H A DUserStyleSheet.h4 * Redistribution and use in source and binary forms, with or without
7 * 1. Redistributions of source code must retain the above copyright
41 UserStyleSheet(const String& source, const KURL& url, argument
44 : m_source(source)
53 const String& source() const { return m_source; } function in class:WebCore::UserStyleSheet
/external/webkit/Source/WebCore/platform/audio/
H A DReverbAccumulationBuffer.cpp4 * Redistribution and use in source and binary forms, with or without
8 * 1. Redistributions of source code must retain the above copyright
61 float* source = m_buffer.data(); local
62 memcpy(destination, source + m_readIndex, sizeof(float) * numberOfFrames1);
63 memset(source + m_readIndex, 0, sizeof(float) * numberOfFrames1);
67 memcpy(destination + numberOfFrames1, source, sizeof(float) * numberOfFrames2);
68 memset(source, 0, sizeof(float) * numberOfFrames2);
81 int ReverbAccumulationBuffer::accumulate(float* source, size_t numberOfFrames, int* readIndex, size_t delayFrames) argument
101 vadd(source, 1, destination + writeIndex, 1, destination + writeIndex, 1, numberOfFrames1);
105 vadd(source
[all...]

Completed in 426 milliseconds

1234567891011>>