/external/walt/ios/WALT/ |
MIDIEndpoint.m | 60 NSMutableArray<MIDISource *> *sources = [[NSMutableArray<MIDISource *> alloc] init]; 68 [sources addObject:source]; 74 return sources;
|
/external/tensorflow/tensorflow/python/eager/ |
lift_to_graph.py | 52 def _path_from(from_op, tensor, sources): 53 """Find one path from `from_op` to `tensor`, ignoring `sources`. 58 sources: A list of `tf.Tensor`. 63 visited_ops = set([x.op for x in sources]) 81 if inp not in visited_ops and inp not in sources: 87 def _map_subgraph(init_tensor, sources, disallowed_placeholders, visited_ops, 89 """Walk a Graph and capture the subgraph between init_tensor and sources. 95 sources: A set of Tensors where subgraph extraction should stop. 102 sources should be allowed. 106 sources [all...] |
imperative_grad.py | 35 sources, 42 gradients for all sources. 47 sources: list of Tensors for which we want gradients 51 sources are unconnected. When 'none' the value returned is None wheras when 52 'zero' a zero tensor in the same shape as the sources is returned. 55 the gradient wrt each of the sources. 70 sources,
|
/external/guava/guava/src/com/google/common/io/ |
CharSource.java | 254 * the source will contain the concatenated data from the streams of the underlying sources. 259 * @param sources the sources to concatenate 263 public static CharSource concat(Iterable<? extends CharSource> sources) { 264 return new ConcatenatedCharSource(sources); 269 * the source will contain the concatenated data from the streams of the underlying sources. 276 * iterator eagerly fetches data for each source when iterated (rather than producing sources 280 * @param sources the sources to concatenate 282 * @throws NullPointerException if any of {@code sources} is {@code null [all...] |
/device/linaro/bootloader/edk2/IntelFsp2Pkg/Library/BaseCacheLib/ |
BaseCacheLib.inf | 23 [sources.IA32]
|
/device/linaro/bootloader/edk2/IntelFspPkg/Library/BaseCacheLib/ |
BaseCacheLib.inf | 23 [sources.IA32]
|
/external/guice/core/src/com/google/inject/internal/ |
WeakKeySet.java | 51 * Tracks child injector lifetimes and evicts blacklisted keys/sources after the child injector is 99 Multiset<Object> sources = backingMap.get(key); local 100 if (sources == null) { 101 sources = LinkedHashMultiset.create(); 102 backingMap.put(key, sources); 105 sources.add(convertedSource); 124 Multiset<Object> sources = (backingMap == null) ? null : backingMap.get(key); local 125 return (sources == null) ? null : sources.elementSet();
|
/frameworks/av/media/libaudioclient/include/media/ |
AudioIoDescriptor.h | 50 if (mPatch.sources[0].type == AUDIO_PORT_TYPE_MIX) { 56 return mPatch.sources[0].id;
|
/frameworks/av/services/audiopolicy/common/managerdefinitions/include/ |
AudioRoute.h | 41 void setSources(const AudioPortVector &sources) { mSources = sources; }
|
/build/make/core/ |
header_library_internal.mk | 17 $(call pretty-error,Header libraries may not have any sources)
|
/dalvik/dx/src/com/android/dx/rop/code/ |
ThrowingCstInsn.java | 38 * @param sources {@code non-null;} specs for all the sources 43 RegisterSpecList sources, 45 super(opcode, position, null, sources, cst); 101 RegisterSpecList sources) { 104 sources,
|
Insn.java | 27 * list of actual sources and result registers/values, and additional 40 /** {@code non-null;} specs for all the sources of this instruction */ 41 private final RegisterSpecList sources; field in class:Insn 49 * @param sources {@code non-null;} specs for all the sources 52 RegisterSpecList sources) { 61 if (sources == null) { 62 throw new NullPointerException("sources == null"); 68 this.sources = sources; [all...] |
/device/linaro/bootloader/edk2/BaseTools/Source/C/PyEfiCompressor/ |
setup.py | 31 sources=[
variable
|
/device/linaro/bootloader/edk2/BaseTools/Source/C/PyUtility/ |
setup.py | 31 sources=[
variable
|
/external/Reactive-Extensions/RxCpp/Rx/v2/examples/doxygen/ |
all.cpp | 18 using namespace rxcpp::sources;
|
any.cpp | 18 using namespace rxcpp::sources;
|
exists.cpp | 18 using namespace rxcpp::sources;
|
switch_if_empty.cpp | 21 using namespace rxcpp::sources;
|
/external/autotest/client/deps/lansim/src/ |
setup.py | 21 sources = PYIFTUN_SRC, variable
|
/external/chromium-trace/catapult/common/py_vulcanize/third_party/rcssmin/ |
setup.py | 31 ext=[Extension('_rcssmin', sources=['rcssmin.c'])]
|
/external/chromium-trace/catapult/common/py_vulcanize/third_party/rjsmin/ |
setup.py | 31 ext=[Extension('_rjsmin', sources=['rjsmin.c'])]
|
/external/mesa3d/src/mesa/drivers/dri/i915/ |
Android.mk | 33 include $(LOCAL_PATH)/Makefile.sources
|
/dalvik/dexgen/src/com/android/dexgen/rop/code/ |
Insn.java | 29 * list of actual sources and result registers/values, and additional 42 /** {@code non-null;} specs for all the sources of this instruction */ 43 private final RegisterSpecList sources; field in class:Insn 51 * @param sources {@code non-null;} specs for all the sources 54 RegisterSpecList sources) { 63 if (sources == null) { 64 throw new NullPointerException("sources == null"); 70 this.sources = sources; [all...] |
/dalvik/dx/src/com/android/dx/ssa/ |
LiteralOpUpgrader.java | 100 RegisterSpecList sources = insn.getSources(); 105 if (sources.size() != 2 ) { 114 if (isConstIntZeroOrKnownNull(sources.get(0))) { 115 replacePlainInsn(insn, sources.withoutFirst(), 117 } else if (isConstIntZeroOrKnownNull(sources.get(1))) { 118 replacePlainInsn(insn, sources.withoutLast(), 122 opcode, sources.get(0), sources.get(1))) { 126 opcode, sources.get(1), sources.get(0))) [all...] |
PhiInsn.java | 51 private RegisterSpecList sources; field in class:PhiInsn 86 * Updates the TypeBearers of all the sources (phi operands) to be 103 sources = null; 137 // Un-cache sources, in case someone has already called getSources(). 138 sources = null; 156 // Un-cache sources, in case someone has already called getSources(). 157 sources = null; 202 * Gets sources. Constructed lazily from phi operand data structures and 205 * @return {@code non-null;} sources list 209 if (sources != null) [all...] |