| /developers/samples/android/input/autofill/AutofillFramework/afservice/src/androidTest/java/com/example/android/autofill/service/data/source/local/ |
| AutofillDaoTest.java | 2 * Copyright 2017, The Android Open Source Project 17 package com.example.android.autofill.service.data.source.local; 24 import com.example.android.autofill.service.data.source.local.db.AutofillDatabase;
|
| /developers/samples/android/input/autofill/AutofillFramework/afservice/src/main/java/com/example/android/autofill/service/data/source/local/ |
| SharedPrefsPackageVerificationRepository.java | 2 * Copyright (C) 2017 The Android Open Source Project 16 package com.example.android.autofill.service.data.source.local; 23 import com.example.android.autofill.service.data.source.PackageVerificationDataSource;
|
| /developers/samples/android/input/autofill/AutofillFramework/afservice/src/main/java/com/example/android/autofill/service/data/source/local/dao/ |
| AutofillDao.java | 2 * Copyright (C) 2017 The Android Open Source Project 17 package com.example.android.autofill.service.data.source.local.dao;
|
| /developers/samples/android/input/autofill/AutofillFramework/afservice/src/main/java/com/example/android/autofill/service/data/source/local/db/ |
| AutofillDatabase.java | 2 * Copyright (C) 2017 The Android Open Source Project 17 package com.example.android.autofill.service.data.source.local.db; 27 import com.example.android.autofill.service.data.source.DefaultFieldTypesSource; 28 import com.example.android.autofill.service.data.source.local.dao.AutofillDao; 41 import static com.example.android.autofill.service.data.source.local.db.Converters.IntList;
|
| /device/generic/goldfish/wifi/ipv6proxy/ |
| socket.cpp | 2 * Copyright (C) 2017 The Android Open Source Project 159 sockaddr* source = from->get<sockaddr>(); local 165 source,
|
| /device/google/contexthub/util/nanotool/ |
| nanomessage.cpp | 2 * Copyright (C) 2016 The Android Open Source Project 38 const VersionInfo *source = reinterpret_cast<const VersionInfo *>(data); local 39 info = *source; 78 const Response *source = reinterpret_cast<const Response *>(data); local 79 response = *source;
|
| /external/Reactive-Extensions/RxCpp/Rx/v2/src/rxcpp/operators/ |
| rx-retry-repeat-common.hpp | 37 state->source.subscribe( 68 : source(std::move(s)), 82 source_type source; member in struct:rxcpp::operators::detail::retry_repeat_common::finite::values 118 : source(std::move(s)) { 130 source_type source; member in struct:rxcpp::operators::detail::retry_repeat_common::infinite::values
|
| rx-scan.hpp | 13 \param a an accumulator function to be invoked on each item emitted by the source observable, whose result will be emitted and used in the next accumulator call. 53 : source(std::move(o)) 58 source_type source; member in struct:rxcpp::operators::detail::scan::scan_initial_type 85 state->source.subscribe(
|
| rx-skip.hpp | 13 \return An observable that is identical to the source observable except that it does not emit the first t items that the source observable emits. 50 : source(std::move(s)) 54 source_type source; member in struct:rxcpp::operators::detail::skip::values 98 state->source.subscribe(
|
| rx-skip_last.hpp | 13 \return An observable that is identical to the source observable except that it does not emit the last t items that the source observable emits. 53 : source(std::move(s)) 57 source_type source; member in struct:rxcpp::operators::detail::skip_last::values 90 state->source.subscribe(
|
| rx-take.hpp | 13 \return An observable that emits only the first t items emitted by the source Observable, or all of the items from the source observable if that observable emits fewer than t items. 49 : source(std::move(s)) 53 source_type source; member in struct:rxcpp::operators::detail::take::values 97 state->source.subscribe( 108 // must shutdown source before signaling completion
|
| rx-take_last.hpp | 7 \brief Emit only the final t items emitted by the source Observable. 13 \return An observable that emits only the last t items emitted by the source Observable, or all of the items from the source observable if that observable emits fewer than t items. 53 : source(std::move(s)) 57 source_type source; member in struct:rxcpp::operators::detail::take_last::values 90 state->source.subscribe(
|
| /external/Reactive-Extensions/RxCpp/Rx/v2/test/operators/ |
| publish.cpp | 69 // Ensures that 'ref_count(other)' has the source value type, 90 auto source = rxs::range<double>(0, 3); variable 94 auto next = source.map(
|
| /external/antlr/runtime/C/src/ |
| antlr3convertutf.c | 6 * This source code is provided as is by Unicode, Inc. No claims are 25 Conversions between UTF32, UTF-16, and UTF-8. Source code file. 31 source sequences, enhanced error detection, added casts 56 const UTF32* source = *sourceStart; local 58 while (source < sourceEnd) { 63 ch = *source++; 68 --source; /* return to the illegal value itself */ 86 --source; /* Back up source pointer! */ 94 *sourceStart = source; 105 const UTF16* source = *sourceStart; local 209 const UTF16* source = *sourceStart; local 333 const UTF8* source = *sourceStart; local 406 const UTF32* source = *sourceStart; local 459 const UTF8* source = *sourceStart; local [all...] |
| /external/apache-commons-compress/src/main/java/org/apache/commons/compress/changes/ |
| ChangeSet.java | 133 final String source = pChange.targetFile(); local 135 if (source != null && !changes.isEmpty()) { 146 if (Change.TYPE_DELETE == pChange.type() && source.equals(target) || 147 (Change.TYPE_DELETE_DIR == pChange.type() && target.matches(source + "/.*"))) {
|
| /external/apache-commons-math/src/main/java/org/apache/commons/math/stat/descriptive/moment/ |
| FirstMoment.java | 146 * Copies source to dest. 147 * <p>Neither source nor dest can be null.</p> 149 * @param source FirstMoment to copy 151 * @throws NullPointerException if either source or dest is null 153 public static void copy(FirstMoment source, FirstMoment dest) { 154 dest.setData(source.getDataRef()); 155 dest.n = source.n; 156 dest.m1 = source.m1; 157 dest.dev = source.dev; 158 dest.nDev = source.nDev [all...] |
| GeometricMean.java | 181 * Copies source to dest. 182 * <p>Neither source nor dest can be null.</p> 184 * @param source GeometricMean to copy 186 * @throws NullPointerException if either source or dest is null 188 public static void copy(GeometricMean source, GeometricMean dest) { 189 dest.setData(source.getDataRef()); 190 dest.sumOfLogs = source.sumOfLogs.copy();
|
| Mean.java | 260 * Copies source to dest. 261 * <p>Neither source nor dest can be null.</p> 263 * @param source Mean to copy 265 * @throws NullPointerException if either source or dest is null 267 public static void copy(Mean source, Mean dest) { 268 dest.setData(source.getDataRef()); 269 dest.incMoment = source.incMoment; 270 dest.moment = source.moment.copy();
|
| StandardDeviation.java | 259 * Copies source to dest. 260 * <p>Neither source nor dest can be null.</p> 262 * @param source StandardDeviation to copy 264 * @throws NullPointerException if either source or dest is null 266 public static void copy(StandardDeviation source, StandardDeviation dest) { 267 dest.setData(source.getDataRef()); 268 dest.variance = source.variance.copy();
|
| /external/apache-commons-math/src/main/java/org/apache/commons/math/stat/descriptive/rank/ |
| Max.java | 151 * Copies source to dest. 152 * <p>Neither source nor dest can be null.</p> 154 * @param source Max to copy 156 * @throws NullPointerException if either source or dest is null 158 public static void copy(Max source, Max dest) { 159 dest.setData(source.getDataRef()); 160 dest.n = source.n; 161 dest.value = source.value;
|
| Min.java | 151 * Copies source to dest. 152 * <p>Neither source nor dest can be null.</p> 154 * @param source Min to copy 156 * @throws NullPointerException if either source or dest is null 158 public static void copy(Min source, Min dest) { 159 dest.setData(source.getDataRef()); 160 dest.n = source.n; 161 dest.value = source.value;
|
| /external/apache-commons-math/src/main/java/org/apache/commons/math/stat/descriptive/summary/ |
| Product.java | 211 * Copies source to dest. 212 * <p>Neither source nor dest can be null.</p> 214 * @param source Product to copy 216 * @throws NullPointerException if either source or dest is null 218 public static void copy(Product source, Product dest) { 219 dest.setData(source.getDataRef()); 220 dest.n = source.n; 221 dest.value = source.value;
|
| Sum.java | 207 * Copies source to dest. 208 * <p>Neither source nor dest can be null.</p> 210 * @param source Sum to copy 212 * @throws NullPointerException if either source or dest is null 214 public static void copy(Sum source, Sum dest) { 215 dest.setData(source.getDataRef()); 216 dest.n = source.n; 217 dest.value = source.value;
|
| SumOfLogs.java | 153 * Copies source to dest. 154 * <p>Neither source nor dest can be null.</p> 156 * @param source SumOfLogs to copy 158 * @throws NullPointerException if either source or dest is null 160 public static void copy(SumOfLogs source, SumOfLogs dest) { 161 dest.setData(source.getDataRef()); 162 dest.n = source.n; 163 dest.value = source.value;
|
| SumOfSquares.java | 141 * Copies source to dest. 142 * <p>Neither source nor dest can be null.</p> 144 * @param source SumOfSquares to copy 146 * @throws NullPointerException if either source or dest is null 148 public static void copy(SumOfSquares source, SumOfSquares dest) { 149 dest.setData(source.getDataRef()); 150 dest.n = source.n; 151 dest.value = source.value;
|