HomeSort by relevance Sort by last modified time
    Searched defs:source (Results 26 - 50 of 1682) sorted by null

12 3 4 5 6 7 8 91011>>

  /external/libcxx/test/std/containers/sequences/list/list.cons/
deduct.pass.cpp 6 // Source Licenses. See LICENSE.TXT for details.
97 std::list<long double> source; local
98 std::list lst(source); // list(list &)
  /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/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...]
  /bionic/libc/kernel/uapi/linux/
ivtvfb.h 11 *** source file (e.g. under external/kernel-headers/original/) then
24 void __user * source; member in struct:ivtvfb_dma_frame
  /external/autotest/frontend/client/src/autotest/common/
SimpleChangeListenerCollection.java 7 private Object source; field in class:SimpleChangeListenerCollection
10 public SimpleChangeListenerCollection(Object source) {
11 this.source = source;
20 listener.onChange(source);
  /external/deqp-deps/glslang/SPIRV/
bitutils.h 23 // Performs a bitwise copy of source to the destination type Dest.
25 Dest BitwiseCast(Src source) {
27 static_assert(sizeof(source) == sizeof(dest),
28 "BitwiseCast: Source and destination must have the same size");
29 std::memcpy(static_cast<void*>(&dest), &source, sizeof(dest)); local
  /external/eigen/unsupported/test/
cxx11_tensor_empty.cpp 6 // This Source Code Form is subject to the terms of the Mozilla
17 Tensor<float, 2> source; local
18 Tensor<float, 2> tgt1 = source;
19 Tensor<float, 2> tgt2(source);
27 TensorFixedSize<float, Sizes<0> > source; local
28 TensorFixedSize<float, Sizes<0> > tgt1 = source;
29 TensorFixedSize<float, Sizes<0> > tgt2(source);
  /external/icu/icu4c/source/test/intltest/
mnkytst.h 49 const UnicodeString source; member in class:CollationMonkeyTest
  /external/icu/icu4c/source/tools/escapesrc/
tblgen.cpp 30 const char *source = cp1047; local
31 ucnv_toUnicode(cnv.getAlias(), &target, u+1, &source, cp1047+1, nullptr, true, &status);
50 1 The basic source character set consists of 96 characters: the space character, the control characters repre- 15)
60 The character designated by the universal-character-name \UNNNNNNNN is that character whose character short name in ISO/IEC 10646 is NNNNNNNN; the character designated by the universal-character-name \uNNNN is that character whose character short name in ISO/IEC 10646 is 0000NNNN. If the hexadecimal value for a universal character name is less than 0x20 or in the range 0x7F-0x9F (inclusive), or if the uni- versal character name designates a character in the basic source character set, then the program is ill- formed.
  /external/kernel-headers/original/uapi/linux/
ivtvfb.h 31 void __user *source; member in struct:ivtvfb_dma_frame
  /external/libcxx/test/std/utilities/utility/forward/
forward.fail.cpp 6 // Source Licenses. See LICENSE.TXT for details.
20 A source() {return A();} function
27 std::forward<A&>(source()); // expected-note {{requested here}}
32 std::forward<A&>(source()); // expected-error {{no matching function for call to 'forward'}}
move.fail.cpp 6 // Source Licenses. See LICENSE.TXT for details.
23 move_only source() {return move_only();} function
  /external/nanopb-c/tests/regression/issue_242/
zero_value.c 16 Extendable source = {0}; local
21 source.extensions = &source_ext;
24 TEST(pb_encode(&ostream, Extendable_fields, &source));
38 PointerMessage source = {0}; local
40 source.opt_int32 = &value;
43 TEST(pb_encode(&ostream, PointerMessage_fields, &source));
  /external/skia/tools/sk_app/android/
main_android.cpp 4 * Use of this source code is governed by a BSD-style license that can be
45 struct android_poll_source* source; local
49 (void**)&source)) >= 0) {
52 if (source != NULL) {
53 source->process(state, source);
  /external/skqp/tools/sk_app/android/
main_android.cpp 4 * Use of this source code is governed by a BSD-style license that can be
45 struct android_poll_source* source; local
49 (void**)&source)) >= 0) {
52 if (source != NULL) {
53 source->process(state, source);
  /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/webrtc/webrtc/base/
socketaddresspair.h 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.
18 // Records a pair (source,destination) of socket addresses. The two addresses
26 const SocketAddress& source() const { return src_; } function in class:rtc::SocketAddressPair
  /external/vogar/src/vogar/target/
Package.java 2 * Copyright (C) 2008 The Android Open Source Project
32 private final ClassPathScanner source; field in class:Package
36 Package(ClassPathScanner source,
38 this.source = source;
52 info.add(source.scan(name));
  /bionic/libc/include/netinet/
udp.h 2 * Copyright (C) 2008 The Android Open Source Project
5 * Redistribution and use in source and binary forms, with or without
8 * * Redistributions of source code must retain the above copyright
46 u_int16_t source; member in struct:udphdr::__anon272::__anon274
  /developers/build/prebuilts/gradle/AutofillFramework/afservice/src/main/java/com/example/android/autofill/service/data/source/
DalService.java 2 * Copyright (C) 2017 The Android Open Source Project
17 package com.example.android.autofill.service.data.source;
27 Call<DalCheck> check(@Query("source.web.site") String webDomain,
DefaultFieldTypesSource.java 2 * Copyright (C) 2018 The Android Open Source Project
17 package com.example.android.autofill.service.data.source;
DigitalAssetLinksDataSource.java 2 * Copyright (C) 2017 The Android Open Source Project
16 package com.example.android.autofill.service.data.source;
25 * Data source for
PackageVerificationDataSource.java 2 * Copyright (C) 2017 The Android Open Source Project
16 package com.example.android.autofill.service.data.source;
  /developers/samples/android/input/autofill/AutofillFramework/afservice/src/main/java/com/example/android/autofill/service/data/source/
DalService.java 2 * Copyright (C) 2017 The Android Open Source Project
17 package com.example.android.autofill.service.data.source;
27 Call<DalCheck> check(@Query("source.web.site") String webDomain,

Completed in 752 milliseconds

12 3 4 5 6 7 8 91011>>