Searched refs:source (Results 1 - 25 of 2856) sorted by relevance

1234567891011>>

/external/syslinux/com32/lib/
H A Dchrreplace.c3 /* Replace char 'old' by char 'new' in source */
4 void chrreplace(char *source, char old, char new) argument
6 while (*source) {
7 source++;
8 if (source[0] == old) source[0]=new;
/external/clang/test/Frontend/
H A Dverify2.c10 #error source
18 // CHECK-NEXT: Line 10: source
37 // CHECK2-NEXT: File {{.*}}verify2.c Line 10: source
/external/apache-commons-math/src/main/java/org/apache/commons/math/exception/util/
H A DDummyLocalizable.java33 private final String source; field in class:DummyLocalizable
36 * @param source source text
38 public DummyLocalizable(final String source) { argument
39 this.source = source;
44 return source;
49 return source;
55 return source;
/external/conscrypt/common/src/main/java/org/conscrypt/
H A DOpenSSLBIOSource.java24 * Wrapped by a BoringSSL BIO to act as a source of bytes.
30 private OpenSSLBIOInputStream source; field in class:OpenSSLBIOSource
37 public OpenSSLBIOSource(OpenSSLBIOInputStream source) { argument
38 this.source = source;
42 return source.getBioContext();
46 if (source != null) {
47 NativeCrypto.BIO_free_all(source.getBioContext());
48 source = null;
62 private final ByteBuffer source; field in class:OpenSSLBIOSource.ByteBufferInputStream
64 ByteBufferInputStream(ByteBuffer source) argument
[all...]
/external/libyuv/files/
H A Dlinux.mk13 source/compare.o \
14 source/compare_common.o \
15 source/compare_gcc.o \
16 source/compare_neon64.o \
17 source/compare_neon.o \
18 source/compare_win.o \
19 source/convert_argb.o \
20 source/convert.o \
21 source/convert_from_argb.o \
22 source/convert_fro
[all...]
H A DAndroid.mk9 source/compare.cc \
10 source/compare_common.cc \
11 source/compare_gcc.cc \
12 source/compare_neon.cc \
13 source/compare_neon64.cc \
14 source/convert.cc \
15 source/convert_argb.cc \
16 source/convert_from.cc \
17 source/convert_from_argb.cc \
18 source/convert_jpe
[all...]
H A Dwinarm.mk14 source/compare.o\
15 source/compare_common.o\
16 source/convert.o\
17 source/convert_argb.o\
18 source/convert_from.o\
19 source/convert_from_argb.o\
20 source/convert_to_argb.o\
21 source/convert_to_i420.o\
22 source/cpu_id.o\
23 source/planar_function
[all...]
/external/googletest/googlemock/scripts/generator/cpp/
H A Dgmock_class_test.py49 """Convert C++ source to Google Mock output source lines."""
58 source = """
66 self.GenerateMethodSource(source))
69 source = """
83 self.GenerateMethodSource(source))
86 source = """
96 self.GenerateMethodSource(source))
99 source = """
112 self.GenerateMethodSource(source))
[all...]
/external/v8/testing/gmock/scripts/generator/cpp/
H A Dgmock_class_test.py49 """Convert C++ source to Google Mock output source lines."""
58 source = """
66 self.GenerateMethodSource(source))
69 source = """
83 self.GenerateMethodSource(source))
86 source = """
96 self.GenerateMethodSource(source))
99 source = """
112 self.GenerateMethodSource(source))
[all...]
/external/parameter-framework/upstream/utility/
H A DBinaryCopy.hpp5 * Redistribution and use in source and binary forms, with or without modification,
8 * 1. Redistributions of source code must retain the above copyright notice, this
45 * The source and the destination must have the same storage size (e.g. copying
48 * @tparam Source The source type
51 * @param source Source variable
52 * @returns the source, reinterpreted as the destination type
55 typename std::remove_reference<Destination>::type binaryCopy(const Source source) argument
60 using Destination_ = decltype(binaryCopy<Destination>(source));
64 Source source; member in union:utility::__anon15557
68 hack.source
[all...]
/external/guice/core/src/com/google/inject/spi/
H A DDependencyAndSource.java28 * source} where the dependency was bound.
35 private final Object source; field in class:DependencyAndSource
37 public DependencyAndSource(Dependency<?> dependency, Object source) { argument
39 this.source = source;
56 * was just-in-time, there is no valid binding source, so this describes the
60 if (source instanceof Class) {
61 return StackTraceElements.forType((Class) source).toString();
62 } else if (source instanceof Member) {
63 return StackTraceElements.forMember((Member) source)
[all...]
/external/libcxx/test/std/utilities/function.objects/refwrap/refwrap.helpers/
H A Dref_1.fail.cpp24 const A source() {return A();} function
28 std::reference_wrapper<const A> r = std::ref(source());
/external/smali/util/src/main/java/org/jf/util/
H A DTextUtils.java5 * Redistribution and use in source and binary forms, with or without
9 * * Redistributions of source code must retain the above copyright
42 public static String normalizeNewlines(@Nonnull String source) { argument
43 return normalizeNewlines(source, newline);
47 public static String normalizeNewlines(@Nonnull String source, String newlineValue) { argument
48 return source.replace("\r", "").replace("\n", newlineValue);
52 public static String normalizeWhitespace(@Nonnull String source) { argument
54 source = normalizeNewlines(source);
58 Matcher matcher = pattern.matcher(source);
77 stripComments(@onnull String source) argument
[all...]
/external/webrtc/webrtc/modules/audio_device/test/android/audio_device_android_test/src/org/webrtc/voiceengine/
H A DAudioDeviceAndroid.java1 ../../../../../../../source/android/org/webrtc/voiceengine/AudioDeviceAndroid.java
/external/webrtc/webrtc/base/
H A Durlencode_unittest.cc4 * 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.
20 char source[] = "^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^" local
23 ASSERT_EQ(0, UrlEncode(source, dest, arraysize(dest)));
27 ASSERT_EQ(0, UrlEncode(source, dest, 0));
32 char source[] = "^"; local
34 ASSERT_EQ(3, UrlEncode(source, dest, arraysize(dest)));
42 char source[] = "aa"; local
44 ASSERT_EQ(2, UrlEncode(source, des
51 char source[] = "&"; local
58 char source[] = "A^ "; local
65 char source[] = "A^ "; local
73 char source[] = "A%5E+"; local
80 char source[] = "A%5E+"; local
[all...]
/external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime.JavaExtensions/
H A DCheck.cs39 public static void Source (object source) argument
41 if (source == null)
42 throw new ArgumentNullException ("source");
53 public static void SourceAndFuncAndSelector ( object source, object func, object selector) argument
55 if (source == null)
56 throw new ArgumentNullException ("source");
64 public static void SourceAndFunc (object source, object func) argument
66 if (source == null)
67 throw new ArgumentNullException ("source");
72 public static void SourceAndSelector (object source, objec argument
80 SourceAndPredicate(object source, object predicate) argument
96 SourceAndKeySelector(object source, object keySelector) argument
104 SourceAndKeyElementSelectors(object source, object keySelector, object elementSelector) argument
113 SourceAndKeyResultSelectors(object source, object keySelector, object resultSelector) argument
123 SourceAndCollectionSelectorAndResultSelector(object source, object collectionSelector, object resultSelector) argument
133 SourceAndCollectionSelectors(object source, object collectionSelector, object selector) argument
157 GroupBySelectors(object source, object keySelector, object elementSelector, object resultSelector) argument
[all...]
/external/autotest/frontend/client/src/autotest/common/
H A DSimpleCallback.java4 public void doCallback(Object source); argument
H A DSimpleChangeListener.java4 public void onChange(Object source); argument
/external/mesa3d/src/glsl/glcpp/tests/
H A D091-hash-line.c6 #error source 1, line 0 error
8 #error source 2, line 30 error
13 #define FUNCTION_LIKE_MACRO(source, line) source line
/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/skia/gm/
H A Ddraw_bitmap_rect_skbug4374.cpp4 * Use of this source code is governed by a BSD-style license that can be
11 SkBitmap source; local
12 if (GetResourceAsBitmap("randPixels.png", &source)) {
13 SkRect rect = SkRect::Make(source.bounds());
17 canvas->drawBitmapRect(source, rect, dst, nullptr);
/external/zlib/src/contrib/puff/
H A Dpuff.h17 2. Altered source versions must be plainly marked as such, and must not be
19 3. This notice may not be removed or altered from any source distribution.
34 const unsigned char *source, /* pointer to source data pointer */
/external/google-breakpad/src/testing/scripts/generator/cpp/
H A Dgmock_class_test.py49 """Convert C++ source to Google Mock output source lines."""
58 source = """
66 self.GenerateMethodSource(source))
69 source = """
77 self.GenerateMethodSource(source))
80 source = """
88 self.GenerateMethodSource(source))
91 source = """
100 self.GenerateMethodSource(source))
[all...]
/external/clang/bindings/python/tests/cindex/
H A Dutil.py6 def get_tu(source, lang='c', all_warnings=False, flags=[]):
7 """Obtain a translation unit from source and language.
9 By default, the translation unit is created from source file "t.<ext>"
31 source)])
33 def get_cursor(source, spelling):
34 """Obtain a cursor from a source object.
37 spelling within a source. The first argument can be either a
43 root_cursor = source if isinstance(source, Cursor) else source
[all...]
/external/v8/src/
H A Dlookup-cache-inl.h2 // Use of this source code is governed by a BSD-style license that can be
13 int DescriptorLookupCache::Hash(Object* source, Name* name) { argument
17 static_cast<uint32_t>(reinterpret_cast<uintptr_t>(source)) >>
23 int DescriptorLookupCache::Lookup(Map* source, Name* name) { argument
24 int index = Hash(source, name);
26 if ((key.source == source) && (key.name == name)) return results_[index];
30 void DescriptorLookupCache::Update(Map* source, Name* name, int result) { argument
32 int index = Hash(source, name);
34 key.source
[all...]

Completed in 2770 milliseconds

1234567891011>>