/development/tools/repo_diff/ |
git_commits_not_upstreamed.py | 1 """List downstream commits that are not upstream and are visible in the diff. 4 the downstream and usptream branches. 9 This will also exclude changes that were added then reverted downstream. 39 def __init__(self, working_dir, upstream, downstream): 42 self.downstream = downstream 49 '%s..%s' % (self.upstream, self.downstream), 61 def find_insertion_commits(upstream, downstream, working_dir): 66 downstream: Downstream branch to search for commits missing upstream [all...] |
repo_diff_trees.py | 5 downstream and the upstream workspace it then diffs the each project. 106 Diffs a downstream directory against an upstream directory. 107 Lines that exist only in the downstream directory are considered insertions. 112 downstream_dir: A path to the downstream directory to compare. 134 """Match a downstream project to an upstream project using their root commits. 136 Find all root commits in a downstream project and find a matching 140 downstream_project_name: A string with the downstream project name. 141 downstream_project_path: A string with the downstream project path. 165 """Match downstream projects to upstream projects. 169 downstream_projects: A dict of downstream projects [all...] |
repo_diff_android.py | 2 """Diff a repo (downstream) and its upstream. 7 2. Retrieves the BUILD_ID from $downstream/build/core/build_id.mk. 18 HELP_MSG = "Diff a repo (downstream) and its upstream" 20 DOWNSTREAM_WORKSPACE = "downstream" 145 # repo sync downstream source tree
|
/external/kernel-headers/original/uapi/linux/usb/ |
charger.h | 11 * SDP (Standard Downstream Port) 13 * CDP (Charging Downstream Port)
|
/hardware/qcom/msm8996/original-kernel-headers/video/ |
msm_hdmi_hdcp_mgr.h | 4 enum DS_TYPE { /* type of downstream device */ 44 /* indicates downstream's type */
|
/libcore/ojluni/src/main/java/java/util/stream/ |
Sink.java | 77 * sends some elements "downstream" -- into the {@code Sink} for the mapping 78 * stage, which in turn sends integral values downstream into the {@code Sink} 81 * the correct {@code accept} method on its downstream {@code Sink}. Similarly, 92 * {@code Sink.OfInt}, but also maintain a {@code downstream} field which 93 * represents the downstream {@code Sink}, and implement the methods 95 * delegate to the downstream {@code Sink}. Most implementations of 102 * downstream.accept(mapper.applyAsInt(u)); 108 * to receive elements of type {@code U} as input, and pass the downstream sink 110 * must call the {@code accept(int)} method when emitting values to the downstream. 112 * {@code int} and passes the resulting value to the downstream {@code Sink} 246 protected final Sink<? super E_OUT> downstream; field in class:Sink.ChainedReference 278 protected final Sink<? super E_OUT> downstream; field in class:Sink.ChainedInt 310 protected final Sink<? super E_OUT> downstream; field in class:Sink.ChainedLong 342 protected final Sink<? super E_OUT> downstream; field in class:Sink.ChainedDouble [all...] |
SortedOps.java | 290 * sorted and then pushed downstream. 294 * pushing elements downstream will preserve the short-circuiting protocol 295 * by calling {@code downstream.cancellationRequested()} and checking the 309 AbstractRefSortingSink(Sink<? super T> downstream, Comparator<? super T> comparator) { 310 super(downstream); 316 * can be preserved when the sorted elements are pushed downstream. 349 downstream.begin(offset); 352 downstream.accept(array[i]); 355 for (int i = 0; i < offset && !downstream.cancellationRequested(); i++) 356 downstream.accept(array[i]) [all...] |
Collectors.java | 332 * multi-level reduction, such as downstream of a {@code groupingBy} or 342 * @param <U> type of elements accepted by downstream collector 343 * @param <A> intermediate accumulation type of the downstream collector 346 * @param downstream a collector which will accept mapped values 348 * elements and provides the mapped results to the downstream collector 352 Collector<? super U, A, R> downstream) { 353 BiConsumer<A, ? super U> downstreamAccumulator = downstream.accumulator(); 354 return new CollectorImpl<>(downstream.supplier(), 356 downstream.combiner(), downstream.finisher() [all...] |
DistinctOps.java | 133 downstream.begin(-1); 140 downstream.end(); 148 downstream.accept(lastSeen = null); 151 downstream.accept(lastSeen = t); 162 downstream.begin(-1); 168 downstream.end(); 175 downstream.accept(t);
|
/frameworks/base/services/core/java/com/android/server/connectivity/tethering/ |
IPv6TetheringCoordinator.java | 42 * assigned to the device and deciding how to divvy them up among downstream 52 private static class Downstream { 58 Downstream(TetherInterfaceStateMachine tism, int mode, short subnetId) { 70 // a downstream that is no longer active can be redistributed to any next 71 // waiting active downstream (again, in arrival order). 72 private final LinkedList<Downstream> mActiveDownstreams; 86 public void addActiveDownstream(TetherInterfaceStateMachine downstream, int mode) { 87 if (findDownstream(downstream) == null) { 88 // Adding a new downstream appends it to the list. Adding a 89 // downstream a second time without first removing it has no effect [all...] |
/device/linaro/bootloader/edk2/QuarkSocPkg/QuarkNorthCluster/QNCInit/Dxe/ |
QNCInit.h | 26 Perform Initialization of the Downstream Root Ports.
44 Set an Init Root Port Downstream devices S3 dispatch item, this function may assert if any error happend
|
/external/chromium-trace/catapult/third_party/pyserial/ |
README.chromium | 16 Packaging and setup files have not been copied downstream. 18 have not been copied downstream.
|
/external/annotation-tools/ |
.travis.yml | 12 - stage: trigger-downstream
|
/external/libedit/ |
README.android | 8 * Initial downstream on 2013/10/30: Synched to libedit-20130712-3.1.tar.gz
|
/external/nist-sip/java/gov/nist/javax/sip/ |
TransactionExt.java | 18 * Returns the IP address of the upstream/downstream hop from which this message was initially received 19 * @return the IP address of the upstream/downstream hop from which this message was initially received 24 * Returns the port of the upstream/downstream hop from which this message was initially received 25 * @return the port of the upstream/downstream hop from which this message was initially received
|
/external/curl/lib/ |
content_encoding.h | 32 contenc_writer *downstream; /* Downstream writer. */ member in struct:contenc_writer_s
|
/external/tensorflow/tensorflow/core/api_def/base_api/ |
api_def_UnbatchGrad.pbtxt | 12 grad: The downstream gradient.
|
/external/dagger2/producers/src/main/java/dagger/producers/ |
ProductionComponent.java | 56 * <p>When a producer throws an exception, the exception will be propagated to its downstream 57 * producers in the following way: if the downstream producer injects a type {@code T}, then that 58 * downstream producer will be skipped, and the exception propagated to its downstream producers; 59 * and if the downstream producer injects a {@code Produced<T>}, then the downstream producer will
|
/device/linaro/bootloader/edk2/QuarkSocPkg/QuarkNorthCluster/Library/IntelQNCLib/ |
PciExpress.c | 125 Map Vc on both root port and downstream device
130 @param[in] Bus2 Bus number of the downstream device
131 @param[in] Device2 Device number of the downstream device
132 @param[in] Function2 Function number of the downstream device
171 Map Traffic Class x to Vc0 on both root port and downstream device
176 @param[in] Bus2 Bus number of the downstream device
177 @param[in] Device2 Device number of the downstream device
178 @param[in] Function2 Function number of the downstream device
220 Set common clock for both root port and downstream device.
225 @param[in] Bus2 Device number of the downstream device [all...] |
/libcore/ojluni/src/test/java/util/stream/boottest/java/util/stream/ |
FlagOpTest.java | 56 TestFlagPassThroughOp<T> downstream; field in class:FlagOpTest.TestFlagPassThroughOp 62 void set(TestFlagPassThroughOp<T> upstream, TestFlagPassThroughOp<T> downstream) { 64 this.downstream = downstream; 74 if (downstream != null) { 75 assertTrue(flags == downstream.wrapFlags);
|
/external/tensorflow/tensorflow/python/eager/ |
imperative_grad.py | 40 Works by filtering the tape, computing how many downstream usages are of each 50 or None if we are to use the target's computed downstream gradient.
|
/external/webrtc/webrtc/base/ |
networkmonitor.h | 28 * the singleton Java NetworkMonitor class. Downstream operations can be from 29 * any thread, but this class will forward all the downstream operations onto
|
/hardware/interfaces/audio/effect/2.0/ |
IVisualizerEffect.hal | 56 * Informs the visualizer about the downstream latency. 61 * Gets the downstream latency.
|
/hardware/interfaces/audio/effect/4.0/ |
IVisualizerEffect.hal | 56 * Informs the visualizer about the downstream latency. 61 * Gets the downstream latency.
|
/hardware/interfaces/tetheroffload/control/1.0/ |
IOffloadControl.hal | 84 * statistics from all offloaded downstream tether interfaces that have been forwarded to this 167 * Configure a downstream interface and prefix in the hardware management process that may be 176 * downstream interface that have IP addresses within the specified prefix. Traffic from the same 177 * downstream interfaces is unaffected and must be forwarded if and only if it was already 180 * If no upstream is currently configured, then these downstream interface and prefixes must be 189 * @param prefix Downstream prefix depicting addresses that may be offloaded. 206 * Remove a downstream prefix that may be forwarded from the hardware management process. 214 * @param prefix Downstream prefix depicting address that must no longer be offloaded
|