Searched defs:source (Results 101 - 125 of 1325) sorted by relevance

1234567891011>>

/external/nist-sip/java/javax/sip/
H A DResponseEvent.java11 public ResponseEvent(Object source, ClientTransaction clientTransaction, argument
13 super(source);
H A DTransactionTerminatedEvent.java11 Object source, ServerTransaction serverTransaction) {
12 super(source);
19 Object source, ClientTransaction clientTransaction) {
20 super(source);
10 TransactionTerminatedEvent( Object source, ServerTransaction serverTransaction) argument
18 TransactionTerminatedEvent( Object source, ClientTransaction clientTransaction) argument
/external/oauth/core/src/main/java/net/oauth/
H A DConsumerProperties.java48 public static Properties getProperties(URL source) throws IOException { argument
49 InputStream input = source.openStream();
/external/openfst/src/script/
H A Dcompile.cc26 void CompileFst(istream &istrm, const string &source, const string &dest, argument
32 FstCompileArgs args(istrm, source, dest, fst_type, isyms, osyms, ssyms,
/external/protobuf/java/src/main/java/com/google/protobuf/
H A DRpcUtil.java5 // Redistribution and use in source and binary forms, with or without
9 // * Redistributions of source code must retain the above copyright
87 * Creates a new message of type "Type" which is a copy of "source". "source"
93 final Type typeDefaultInstance, final Message source) {
95 .mergeFrom(source)
92 copyAsType( final Type typeDefaultInstance, final Message source) argument
/external/smack/src/com/kenai/jbosh/
H A DBOSHMessageEvent.java41 * @param source event source
45 final Object source,
47 super(source);
59 * @param source sender of the message
64 final BOSHClient source,
66 return new BOSHMessageEvent(source, body);
73 * @param source receiver of the message
78 final BOSHClient source,
80 return new BOSHMessageEvent(source, bod
44 BOSHMessageEvent( final Object source, final AbstractBody cBody) argument
63 createRequestSentEvent( final BOSHClient source, final AbstractBody body) argument
77 createResponseReceivedEvent( final BOSHClient source, final AbstractBody body) argument
[all...]
/external/v8/test/mjsunit/
H A Dmirror-regexp.js2 // Redistribution and use in source and binary forms, with or without
6 // * Redistributions of source code must retain the above copyright
35 'source': all_attributes,
79 assertEquals('/' + r.source + '/', mirror.toText());
/external/webkit/Source/JavaScriptCore/runtime/
H A DCompletion.cpp37 Completion checkSyntax(ExecState* exec, const SourceCode& source) argument
42 ProgramExecutable* program = ProgramExecutable::create(exec, source);
50 Completion evaluate(ExecState* exec, ScopeChainNode* scopeChain, const SourceCode& source, JSValue thisValue) argument
55 ProgramExecutable* program = ProgramExecutable::create(exec, source);
/external/webkit/Source/JavaScriptCore/wtf/
H A DPossiblyNull.h4 * Redistribution and use in source and binary forms, with or without
7 * 1. Redistributions of source code must retain the above copyright
38 PossiblyNull(const PossiblyNull<T>& source) argument
39 : m_data(source.m_data)
41 source.m_data = 0;
/external/webkit/Source/JavaScriptCore/wtf/url/src/
H A DURLQueryCanonicalizer.h3 // Redistribution and use in source and binary forms, with or without
7 // * Redistributions of source code must retain the above copyright
69 static bool isRaw8Bit(const InChar* source, int length) argument
71 for (int i = source; i < length; ++i) {
72 if (source[i] & 0xFF != source[i])
79 static void appendRaw8BitQueryString(const InChar* source, int length, URLBuffer<OutChar>* buffer) argument
81 ASSERT(isRaw8Bit(source, length));
83 if (!URLCharacterTypes::isQueryChar(source[i]))
84 appendURLEscapedCharacter(static_cast<unsigned char>(source[
[all...]
/external/webkit/Source/JavaScriptGlue/
H A DJSRun.cpp4 * Redistribution and use in source and binary forms, with or without
8 * 1. Redistributions of source code must retain the above copyright
43 JSRun::JSRun(CFStringRef source, JSFlags inFlags) argument
45 fSource(CFStringToUString(source)),
/external/webkit/Source/WebCore/bindings/js/
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
45 ScriptSourceCode(const String& source, const KURL& url = KURL(), const TextPosition1& startPosition = TextPosition1::minimumPosition()) argument
46 : m_provider(StringSourceProvider::create(source, url.isNull() ? String() : url.string(), startPosition))
62 const String& source() const { return m_provider->source(); } function in class:WebCore::ScriptSourceCode
/external/webkit/Source/WebCore/bindings/v8/custom/
H A DV8XSLTProcessorCustom.cpp4 * Redistribution and use in source and binary forms, with or without
8 * * Redistributions of source code must retain the above copyright
78 Node* source = V8Node::toNative(v8::Handle<v8::Object>::Cast(args[0])); local
80 RefPtr<DocumentFragment> result = imp->transformToFragment(source, owner);
94 Node* source = V8Node::toNative(v8::Handle<v8::Object>::Cast(args[0])); local
95 if (!source)
98 RefPtr<Document> result = imp->transformToDocument(source);
/external/webkit/Source/WebCore/dom/
H A DDocumentFragment.cpp78 void DocumentFragment::parseHTML(const String& source, Element* contextElement, FragmentScriptingPermission scriptingPermission) argument
80 HTMLDocumentParser::parseDocumentFragment(source, this, contextElement, scriptingPermission);
83 bool DocumentFragment::parseXML(const String& source, Element* contextElement, FragmentScriptingPermission scriptingPermission) argument
85 return XMLDocumentParser::parseDocumentFragment(source, this, contextElement, scriptingPermission);
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/html/canvas/
H A DArrayBuffer.cpp4 * Redistribution and use in source and binary forms, with or without
7 * 1. Redistributions of source code must retain the above copyright
46 PassRefPtr<ArrayBuffer> ArrayBuffer::create(void* source, unsigned byteLength) argument
52 memcpy(buffer->data(), source, byteLength);
H A DWebGLShader.h4 * Redistribution and use in source and binary forms, with or without
7 * 1. Redistributions of source code must retain the above copyright
45 void setSource(const String& source) { m_source = source; } argument
/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);
/external/webkit/Source/WebCore/platform/text/
H A DTextCodecASCIIFastPath.h5 * Redistribution and use in source and binary forms, with or without
8 * 1. Redistributions of source code must retain the above copyright
52 static void copy(UChar* destination, const uint8_t* source) argument
54 destination[0] = source[0];
55 destination[1] = source[1];
56 destination[2] = source[2];
57 destination[3] = source[3];
61 static void copy(UChar* destination, const uint8_t* source) argument
63 destination[0] = source[0];
64 destination[1] = source[
79 copyASCIIMachineWord(UChar* destination, const uint8_t* source) argument
[all...]
/external/webkit/Source/WebCore/webaudio/
H A DAudioChannelSplitter.cpp4 * Redistribution and use in source and binary forms, with or without
7 * 1. Redistributions of source code must retain the above copyright
56 AudioBus* source = input(0)->bus(); local
57 ASSERT(source);
58 ASSERT_UNUSED(framesToProcess, framesToProcess == source->length());
60 unsigned numberOfSourceChannels = source->numberOfChannels();
68 // Split the channel out if it exists in the source.
70 destination->channel(0)->copyFrom(source->channel(i));
/external/webkit/Source/WebKit2/Platform/cg/
H A DCGUtilities.cpp4 * Redistribution and use in source and binary forms, with or without
7 * 1. Redistributions of source code must retain the above copyright
33 void paintImage(CGContextRef context, CGImageRef image, CGPoint destination, CGRect source) argument
37 CGContextClipToRect(context, CGRectMake(destination.x, destination.y, source.size.width, source.size.height));
43 CGFloat destX = destination.x - source.origin.x;
44 CGFloat destY = -static_cast<CGFloat>(imageHeight) - destination.y + source.origin.y;
50 void paintBitmapContext(CGContextRef context, CGContextRef bitmapContext, CGPoint destination, CGRect source) argument
53 paintImage(context, image.get(), destination, source);
/external/webkit/Tools/DumpRenderTree/win/
H A DDraggingInfo.h4 * Redistribution and use in source and binary forms, with or without
8 * 1. Redistributions of source code must retain the above copyright
36 DraggingInfo(IDataObject* object, IDropSource* source) argument
38 , m_source(source)
/external/zlib/src/contrib/dotzlib/DotZLib/
H A DCircularBuffer.cs39 public int Put(byte[] source, int offset, int count) argument
44 _buffer[(_tail+i) % _capacity] = source[offset+i];
/external/chromium/base/
H A Dfile_descriptor_shuffle.h2 // Use of this source code is governed by a BSD-style license that can be
57 : source(in_source),
62 int source; member in struct:base::InjectionArc
64 bool close; // if true, delete the source element after performing the
/external/chromium/chrome/browser/extensions/
H A Dextension_infobar_delegate.cc2 // Use of this source code is governed by a BSD-style license that can be
76 const NotificationSource& source,
75 Observe(NotificationType type, const NotificationSource& source, const NotificationDetails& details) argument

Completed in 836 milliseconds

1234567891011>>