Searched defs:source (Results 26 - 50 of 1325) sorted by relevance

1234567891011>>

/external/chromium/chrome/browser/tabs/
H A Dpinned_tab_service.cc2 // Use of this source code is governed by a BSD-style license that can be
38 const NotificationSource& source,
45 Browser* browser = Source<Browser>(source).ptr();
54 Browser* browser = Source<Browser>(source).ptr();
37 Observe(NotificationType type, const NotificationSource& source, const NotificationDetails& details) argument
/external/chromium/chrome/browser/ui/gtk/
H A Doverflow_button.cc2 // Use of this source code is governed by a BSD-style license that can be
30 const NotificationSource& source,
29 Observe(NotificationType type, const NotificationSource& source, const NotificationDetails& details) argument
/external/chromium/third_party/libjingle/source/talk/base/
H A Dsocketaddresspair.h5 * Redistribution and use in source and binary forms, with or without
8 * 1. Redistributions of source code must retain the above copyright notice,
35 // Records a pair (source,destination) of socket addresses. The two addresses
43 const SocketAddress& source() const { return src_; } function in class:talk_base::SocketAddressPair
/external/ganymed-ssh2/src/main/java/ch/ethz/ssh2/util/
H A DTokenizer.java19 * @param source must be non-null
23 public static String[] parseTokens(String source, char delimiter) argument
27 for (int i = 0; i < source.length(); i++)
29 if (source.charAt(i) == delimiter)
38 if (nextfield >= source.length())
44 int idx = source.indexOf(delimiter, nextfield);
46 idx = source.length();
47 list[i] = source.substring(nextfield, idx);
/external/guava/guava/src/com/google/common/collect/
H A DBstNodeFactory.java34 * Returns a new {@code N} with the key and value data from {@code source}, with left child
38 public abstract N createNode(N source, @Nullable N left, @Nullable N right); argument
41 * Returns a new {@code N} with the key and value data from {@code source} that is a leaf.
43 public final N createLeaf(N source) { argument
44 return createNode(source, null, null);
/external/guava/guava/src/com/google/common/eventbus/
H A DDeadEvent.java34 private final Object source; field in class:DeadEvent
40 * @param source object broadcasting the DeadEvent (generally the
44 public DeadEvent(Object source, Object event) { argument
45 this.source = source;
53 * @return the source of this event.
56 return source;
/external/icu4c/test/intltest/
H A Ddadrcoll.h10 * source/test/testdata/DataDrivenCollationTest.txt
32 UnicodeString source; member in class:SeqElement
/external/libvpx/libvpx/vp8/decoder/
H A Ddboolhuff.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.
17 const unsigned char *source,
20 br->user_buffer_end = source+source_sz;
21 br->user_buffer = source;
26 if (source_sz && !source)
16 vp8dx_start_decode(BOOL_DECODER *br, const unsigned char *source, unsigned int source_sz) argument
/external/llvm/lib/Object/
H A DObjectFile.cpp26 ObjectFile::ObjectFile(unsigned int Type, MemoryBuffer *source, error_code &ec) argument
27 : Binary(Type, source) {
/external/nist-sip/java/javax/sip/
H A DTimeoutEvent.java6 public TimeoutEvent(Object source, ServerTransaction serverTransaction, argument
8 super(source, serverTransaction);
12 public TimeoutEvent(Object source, ClientTransaction clientTransaction, argument
14 super(source, clientTransaction);
/external/okhttp/src/main/java/com/squareup/okhttp/
H A DOkResponseCache.java29 /** Track an HTTP response being satisfied by {@code source}. */
30 void trackResponse(ResponseSource source); argument
/external/openfst/src/bin/
H A Dfstcompile.cc54 const char *source = "standard input"; local
57 source = argv[1];
86 s::CompileFst(*istrm, source, dest, FLAGS_fst_type, FLAGS_arc_type,
/external/replicaisland/src/com/replica/replicaisland/
H A DVectorPool.java41 /** Allocates a vector and assigns the value of the passed source vector to it. */
42 public Vector2 allocate(Vector2 source) { argument
44 entry.set(source);
/external/robolectric/src/main/java/com/xtremelabs/robolectric/shadows/
H A DShadowPhoneNumberUtils.java11 public static java.lang.String formatNumber(java.lang.String source) { argument
12 return source + "-formatted";
16 public static java.lang.String stripSeparators(java.lang.String source) { argument
17 return source + "-stripped";
/external/srec/tools/thirdparty/OpenFst/fst/lib/
H A Dfst.cpp52 bool FstHeader::Read(istream &strm, const string &source) { argument
56 LOG(ERROR) << "FstHeader::Read: Bad FST header: " << source;
69 LOG(ERROR) << "FstHeader::Read: read failed: " << source;
74 bool FstHeader::Write(ostream &strm, const string &source) const {
85 LOG(ERROR) << "FstHeader::Write: write failed: " << source;
/external/valgrind/main/none/tests/s390x/
H A Dex_clone.c10 char source[40] = "aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa\0"; variable
32 ::"a" (buf2), "a" (source)
55 ::"a" (target), "a" (source)
H A Dmvst.c16 int mvst(void *targetp, void *source) argument
21 ::"a" (targetp),"a" (source): "0", "memory", "cc");
25 int mvst_full(void *targetp, void *source) argument
31 ::"a" (targetp),"a" (source): "0", "memory", "cc");
/external/webkit/Source/WebCore/html/parser/
H A DHTMLSourceTracker.cpp4 * Redistribution and use in source and binary forms, with or without
7 * 1. Redistributions of source code must retain the above copyright
60 String source = String::createUninitialized(length, data); local
65 m_cachedSourceForToken = m_sourceFromPreviousSegments + source;
/external/webkit/Source/WebCore/platform/image-decoders/haiku/
H A DImageDecoderHaiku.cpp5 * Redistribution and use in source and binary forms, with or without
8 * 1. Redistributions of source code must retain the above copyright
39 const uint8* source = reinterpret_cast<const uint8*>(m_bytes); local
46 memcpy(dst, source, bytesPerRow);
48 const uint8* sourceHandle = source;
67 source += bytesPerRow;
/external/webkit/Source/WebCore/storage/
H A DIDBCursorWithValue.cpp4 * Redistribution and use in source and binary forms, with or without
8 * 1. Redistributions of source code must retain the above copyright
36 PassRefPtr<IDBCursorWithValue> IDBCursorWithValue::create(PassRefPtr<IDBCursorBackendInterface> backend, IDBRequest* request, IDBAny* source, IDBTransaction* transaction) argument
38 return adoptRef(new IDBCursorWithValue(backend, request, source, transaction));
41 IDBCursorWithValue::IDBCursorWithValue(PassRefPtr<IDBCursorBackendInterface> backend, IDBRequest* request, IDBAny* source, IDBTransaction* transaction) argument
42 : IDBCursor(backend, request, source, transaction)
H A DIDBVersionChangeRequest.cpp4 * Redistribution and use in source and binary forms, with or without
8 * 1. Redistributions of source code must retain the above copyright
36 PassRefPtr<IDBVersionChangeRequest> IDBVersionChangeRequest::create(ScriptExecutionContext* context, PassRefPtr<IDBAny> source, const String& version) argument
38 return adoptRef(new IDBVersionChangeRequest(context, source, version));
41 IDBVersionChangeRequest::IDBVersionChangeRequest(ScriptExecutionContext* context, PassRefPtr<IDBAny> source, const String& version) argument
42 : IDBRequest(context, source, 0)
/external/webkit/Source/WebCore/webaudio/
H A DBiquadDSPKernel.cpp4 * Redistribution and use in source and binary forms, with or without
7 * 1. Redistributions of source code must retain the above copyright
35 void BiquadDSPKernel::process(const float* source, float* destination, size_t framesToProcess) argument
37 ASSERT(source && destination && biquadProcessor());
72 m_biquad.process(source, destination, framesToProcess);
/external/apache-xml/src/main/java/org/apache/xml/dtm/ref/
H A DIncrementalSAXSource.java87 public void startParse(InputSource source) throws SAXException; argument
/external/chromium/chrome/browser/automation/
H A Dautomation_extension_tracker.cc2 // Use of this source code is governed by a BSD-style license that can be
26 const NotificationSource& source,
34 Profile* profile = Source<Profile>(source).ptr();
25 Observe(NotificationType type, const NotificationSource& source, const NotificationDetails& details) argument
H A Dautomation_tab_tracker.cc2 // Use of this source code is governed by a BSD-style license that can be
41 const NotificationSource& source,
45 last_navigation_times_[Source<NavigationController>(source).ptr()] =
53 Source<NavigationController>(source).ptr());
61 AutomationResourceTracker<NavigationController*>::Observe(type, source,
40 Observe(NotificationType type, const NotificationSource& source, const NotificationDetails& details) argument

Completed in 1738 milliseconds

1234567891011>>