HomeSort by relevance Sort by last modified time
    Searched defs:source (Results 151 - 175 of 1097) sorted by null

1 2 3 4 5 67 8 91011>>

  /external/chromium/net/http/
http_auth_handler_unittest.cc 2 // Use of this source code is governed by a BSD-style license that can be
20 NetLog::Source source; local
42 BoundNetLog bound_net_log(source, &capturing_net_log);
  /external/guava/guava-testlib/src/com/google/common/collect/testing/features/
ConflictingRequirementsException.java 31 private Object source; field in class:ConflictingRequirementsException
34 String message, Set<Feature<?>> conflicts, Object source) {
37 this.source = source;
45 return source;
49 return super.getMessage() + " (source: " + source + ")";
  /external/icu4c/common/unicode/
caniter.h 76 * @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, UBool skipZeros, Hashtable *result, UErrorCode &status)
165 UnicodeString source; member in class:CanonicalIterator
    [all...]
  /external/icu4c/i18n/
tridpars.h 31 * 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/iptables/include/linux/netfilter_ipv4/
ipt_addrtype.h 12 u_int16_t source; /* source-type mask */ member in struct:ipt_addrtype_info_v1
19 u_int16_t source; /* source-type mask */ member in struct:ipt_addrtype_info
  /external/jmonkeyengine/engine/src/networking/com/jme3/network/kernel/
Envelope.java 5 * Redistribution and use in source and binary forms, with or without
9 * * Redistributions of source code must retain the above copyright
44 private Endpoint source; field in class:Envelope
50 * source. The 'reliable' flag further indicates on which mode of
53 public Envelope( Endpoint source, byte[] data, boolean reliable )
55 this.source = source;
62 return source;
77 return "Envelope[" + source + ", " + (reliable?"reliable":"unreliable") + ", " + data.length + "]";
  /external/kernel-headers/original/linux/
udp.h 23 __u16 source; member in struct:udphdr
  /external/libvpx/libvpx/test/
subtract_test.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.
40 uint8_t *source = reinterpret_cast<uint8_t*>( local
41 vpx_memalign(16, kBlockHeight * kSrcStride[0] * sizeof(*source)));
50 be.base_src = &source;
96 vpx_free(source);
  /external/libvpx/libvpx/vpx_scale/generic/
yv12extend.c 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.
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 = src_ybc->y_buffer
252 unsigned char *source, *dest; local
    [all...]
  /external/v8/test/mjsunit/
mirror-regexp.js 2 // 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/
FunctionConstructor.cpp 100 SourceCode source = makeSource(program, sourceURL, lineNumber); local
102 FunctionExecutable* function = FunctionExecutable::fromGlobalCode(functionName, exec, exec->dynamicGlobalObject()->debugger(), source, &exception);
RegExpPrototype.cpp 138 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/
CachedScriptSourceProvider.h 4 * 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
ScriptSourceCode.h 4 * 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())
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
StringSourceProvider.h 4 * 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())
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)
55 , m_source(source)
63 inline JSC::SourceCode makeSource(const String& source, const String& url = String(), int firstLine = 1)
65 return JSC::SourceCode(StringSourceProvider::create(source, url), firstLine);
  /external/webkit/Source/WebCore/bindings/v8/
ScriptSourceCode.h 4 * 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())
45 : m_source(source)
64 const String& source() const { return m_source; } function in class:WebCore::ScriptSourceCode
  /external/webkit/Source/WebCore/bindings/v8/custom/
V8XSLTProcessorCustom.cpp 4 * 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/
MessageEvent.h 5 * 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/page/
UserScript.h 4 * 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,
44 : m_source(source)
53 const String& source() const { return m_source; } function in class:WebCore::UserScript
UserStyleSheet.h 4 * 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,
44 : m_source(source)
53 const String& source() const { return m_source; } function in class:WebCore::UserStyleSheet
  /external/webkit/Source/WebCore/platform/audio/
ReverbAccumulationBuffer.cpp 4 * 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)
101 vadd(source, 1, destination + writeIndex, 1, destination + writeIndex, 1, numberOfFrames1);
105 vadd(source + numberOfFrames1, 1, destination, 1, destination, 1, numberOfFrames2)
    [all...]
ReverbConvolverStage.cpp 4 * Redistribution and use in source and binary forms, with or without
8 * 1. Redistributions of source code must retain the above copyright
87 float* source = inputBuffer->directReadFrom(&m_inputReadIndex, framesToProcess); local
88 process(source, framesToProcess);
91 void ReverbConvolverStage::process(float* source, size_t framesToProcess)
93 ASSERT(source);
94 if (!source)
115 preDelayedSource = source;
143 memcpy(preDelayedSource, source, sizeof(float) * framesToProcess);
  /external/webkit/Source/WebCore/platform/gtk/
CursorGtk.cpp 7 * Redistribution and use in source and binary forms, with or without
10 * 1. Redistributions of source code must retain the above copyright
50 RefPtr<cairo_surface_t> source = adoptRef(cairo_image_surface_create_for_data(const_cast<unsigned char*>(cursor.bits), CAIRO_FORMAT_A1, 32, 32, 4)); local
55 cairo_set_source_surface(cr.get(), source.get(), cursor.hot_x, cursor.hot_y);
  /external/webkit/Source/WebCore/platform/text/
BidiContext.h 47 BidiEmbeddingSource source() const { return static_cast<BidiEmbeddingSource>(m_source); } function in class:WebCore::BidiContext
51 BidiContext(unsigned char level, WTF::Unicode::Direction direction, bool override, BidiEmbeddingSource source, BidiContext* parent)
55 , m_source(source)
  /external/webkit/Source/WebCore/storage/
IDBCursor.cpp 4 * Redistribution and use in source and binary forms, with or without
8 * 1. Redistributions of source code must retain the above copyright
42 PassRefPtr<IDBCursor> IDBCursor::create(PassRefPtr<IDBCursorBackendInterface> backend, IDBRequest* request, IDBAny* source, IDBTransaction* transaction)
44 return adoptRef(new IDBCursor(backend, request, source, transaction));
47 IDBCursor::IDBCursor(PassRefPtr<IDBCursorBackendInterface> backend, IDBRequest* request, IDBAny* source, IDBTransaction* transaction)
50 , m_source(source)
83 IDBAny* IDBCursor::source() const function in class:WebCore::IDBCursor

Completed in 2089 milliseconds

1 2 3 4 5 67 8 91011>>