HomeSort by relevance Sort by last modified time
    Searched refs:source (Results 1 - 25 of 5728) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/swiftshader/third_party/llvm-7.0/llvm/test/MC/AsmParser/
debug-empty-source.s 4 .file 1 "dir1" "foo" source ""
6 # CHECK: .file {{.*}} source ""
debug-no-source.s 6 # CHECK-NOT: .file {{.*}} source
  /external/clang/test/Frontend/
verify2.c 10 #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/
DummyLocalizable.java 32 /** Source string. */
33 private final String source; field in class:DummyLocalizable
36 * @param source source text
38 public DummyLocalizable(final String source) {
39 this.source = source;
44 return source;
49 return source;
55 return source;
    [all...]
  /external/conscrypt/common/src/main/java/org/conscrypt/
OpenSSLBIOSource.java 2 * Copyright (C) 2014 The Android Open Source Project
24 * Wrapped by a BoringSSL BIO to act as a source of bytes.
27 private OpenSSLBIOInputStream source; field in class:OpenSSLBIOSource
34 private OpenSSLBIOSource(OpenSSLBIOInputStream source) {
35 this.source = source;
39 return source.getBioContext();
43 if (source != null) {
44 NativeCrypto.BIO_free_all(source.getBioContext());
45 source = null
59 private final ByteBuffer source; field in class:OpenSSLBIOSource.ByteBufferInputStream
    [all...]
  /external/conscrypt/repackaged/common/src/main/java/com/android/org/conscrypt/
OpenSSLBIOSource.java 1 /* GENERATED SOURCE. DO NOT MODIFY. */
3 * Copyright (C) 2014 The Android Open Source Project
25 * Wrapped by a BoringSSL BIO to act as a source of bytes.
28 private OpenSSLBIOInputStream source; field in class:OpenSSLBIOSource
35 private OpenSSLBIOSource(OpenSSLBIOInputStream source) {
36 this.source = source;
40 return source.getBioContext();
44 if (source != null) {
45 NativeCrypto.BIO_free_all(source.getBioContext())
60 private final ByteBuffer source; field in class:OpenSSLBIOSource.ByteBufferInputStream
    [all...]
  /external/libaom/libaom/aom_scale/generic/
gen_scalers.c 4 * This source code is subject to the terms of the BSD 2 Clause License and
6 * was not distributed with this source code in the LICENSE file, you can
8 * Media Patent License 1.0 was not distributed with this source code in the
23 * INPUTS : const unsigned char *source : Pointer to source data.
24 * unsigned int source_width : Stride of source.
33 * FUNCTION : Copies horizontal line of pixels from source to
39 void aom_horizontal_line_5_4_scale_c(const unsigned char *source,
43 const unsigned char *const source_end = source + source_width;
46 while (source < source_end)
    [all...]
  /external/turbine/java/com/google/turbine/diag/
SourceFile.java 19 /** A source file. */
23 private final String source; field in class:SourceFile
25 public SourceFile(String path, String source) {
27 this.source = source;
35 /** The source. */
36 public String source() { method in class:SourceFile
37 return source;
  /external/libyuv/files/
linux.mk 13 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_from.o
    [all...]
winarm.mk 14 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_functions.o
    [all...]
  /external/parameter-framework/upstream/utility/
BinaryCopy.hpp 5 * 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
54 template <class Destination, class Source>
55 typename std::remove_reference<Destination>::type binaryCopy(const Source source
64 Source source; member in union:utility::__anon34774
    [all...]
  /external/guice/core/src/com/google/inject/spi/
DependencyAndSource.java 26 * A combination of a {@link Dependency} and the {@link Binding#getSource() source} where the
38 private final Object source; field in class:DependencyAndSource
40 public DependencyAndSource(Dependency<?> dependency, Object source) {
42 this.source = source;
58 * there is no valid binding source, so this describes the class in question.
61 if (source instanceof Class) {
62 return StackTraceElements.forType((Class) source).toString();
63 } else if (source instanceof Member) {
64 return StackTraceElements.forMember((Member) source).toString()
73 Object source = getBindingSource(); local
    [all...]
  /external/libcxx/test/std/utilities/function.objects/refwrap/refwrap.helpers/
ref_1.fail.cpp 6 // Source Licenses. See LICENSE.TXT for details.
24 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/
TextUtils.java 5 * 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) {
43 return normalizeNewlines(source, newline);
47 public static String normalizeNewlines(@Nonnull String source, String newlineValue) {
48 return source.replace("\r", "").replace("\n", newlineValue);
52 public static String normalizeWhitespace(@Nonnull String source) {
54 source = normalizeNewlines(source);
58 Matcher matcher = pattern.matcher(source);
    [all...]
  /external/webrtc/webrtc/modules/audio_device/test/android/audio_device_android_test/src/org/webrtc/voiceengine/
AudioDeviceAndroid.java 1 ../../../../../../../source/android/org/webrtc/voiceengine/AudioDeviceAndroid.java
  /external/webrtc/webrtc/base/
urlencode_unittest.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.
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, dest, arraysize(dest)))
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/autotest/frontend/client/src/autotest/common/
SimpleCallback.java 4 public void doCallback(Object source);
SimpleChangeListener.java 4 public void onChange(Object source);
  /external/grpc-grpc/src/core/lib/gpr/
wrap_memcpy.cc 33 void* __wrap_memcpy(void* destination, const void* source, size_t num) {
34 return memcpy(destination, source, num);
37 void* __wrap_memcpy(void* destination, const void* source, size_t num) {
38 return memmove(destination, source, num);
  /external/mesa3d/src/compiler/glsl/glcpp/tests/
091-hash-line.c 6 #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/
TimeoutEvent.java 6 public TimeoutEvent(Object source, ServerTransaction serverTransaction,
8 super(source, serverTransaction);
12 public TimeoutEvent(Object source, ClientTransaction clientTransaction,
14 super(source, clientTransaction);
  /external/skia/gm/
draw_bitmap_rect_skbug4374.cpp 4 * Use of this source code is governed by a BSD-style license that can be
11 SkBitmap source; local
12 if (GetResourceAsBitmap("images/randPixels.png", &source)) {
13 SkRect rect = SkRect::Make(source.bounds());
17 canvas->drawBitmapRect(source, rect, dst, nullptr);
  /external/skqp/gm/
draw_bitmap_rect_skbug4374.cpp 4 * Use of this source code is governed by a BSD-style license that can be
11 SkBitmap source; local
12 if (GetResourceAsBitmap("images/randPixels.png", &source)) {
13 SkRect rect = SkRect::Make(source.bounds());
17 canvas->drawBitmapRect(source, rect, dst, nullptr);
  /external/u-boot/arch/arm/mach-tegra/tegra20/
crypto.h 13 * \param source Source data
14 * \param length Size of source data
17 int sign_data_block(u8 *source, unsigned length, u8 *signature);
  /external/zlib/src/contrib/puff/
puff.h 17 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 */

Completed in 1034 milliseconds

1 2 3 4 5 6 7 8 91011>>