/dalvik/dx/src/com/android/dx/rop/code/ |
DexTranslationAdvice.java | 38 * instruction that requires its sources to be in order and contiguous. 103 RegisterSpecList sources) { 106 && totalRopWidth(sources) >= MIN_INVOKE_IN_ORDER; 112 * @param sources {@code non-null;} list of SSA registers 115 private int totalRopWidth(RegisterSpecList sources) { 116 int sz = sources.size(); 120 total += sources.get(i).getCategory();
|
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...] |
/external/ltp/android/tools/ |
make_parser.py | 87 sources = self.GetRelativePathForExtensions(unparsed, ['o']) 102 assert len(sources) > 0 105 self.result.append("ar['%s'] = %s" % (target, sources)) 115 sources = self.GetRelativePathForExtensions(unparsed, ['c', 'o']) 128 assert len(sources) > 0 131 self.result.append("cc_compile['%s'] = %s" % (target, sources)) 134 if sources[0].endswith('.o'): 135 self.result.append("cc_link['%s'] = %s" % (target, sources)) 138 (target, sources))
|
/external/guice/core/test/com/google/inject/internal/ |
WeakKeySetUtils.java | 58 Object... sources) { 61 for (Object source : sources) { 69 Set<Object> sources = set.getSources(key); local 71 if (!sources.contains(source)) { 76 Set<Object> sources = set.getSources(key); local 78 assertFalse(sources.contains(source));
|
/external/walt/ios/WALT/ |
MIDIEndpoint.m | 60 NSMutableArray<MIDISource *> *sources = [[NSMutableArray<MIDISource *> alloc] init]; 68 [sources addObject:source]; 74 return 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/IntelFspPkg/Library/BaseCacheLib/ |
BaseCacheLib.inf | 23 [sources.IA32]
|
/external/deqp/external/vulkancts/framework/vulkan/ |
vkGlslProgram.hpp | 63 std::vector<std::string> sources[glu::SHADERTYPE_LAST]; member in struct:vk::GlslSource 68 GlslSource& operator<< (const glu::ShaderSource& shaderSource) { sources[shaderSource.shaderType].push_back(shaderSource.source); return *this; }
|
/external/guice/core/src/com/google/inject/internal/ |
WeakKeySet.java | 52 * 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();
|
/external/libdrm/ |
Android.common.mk | 11 # Quiet down the build system and remove any .h files from the sources
|
/frameworks/av/media/libaudioclient/include/media/ |
AudioIoDescriptor.h | 49 if (mPatch.sources[0].type == AUDIO_PORT_TYPE_MIX) { 55 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)
|
/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/autotest/client/deps/lansim/src/ |
setup.py | 21 sources = PYIFTUN_SRC, variable
|
/external/mesa3d/src/gallium/drivers/freedreno/ |
Android.gen.mk | 31 intermediates := $(call local-generated-sources-dir)
|
/external/mesa3d/src/mesa/drivers/dri/i965/ |
Android.gen.mk | 31 intermediates := $(call local-generated-sources-dir)
|
/frameworks/compile/libbcc/lib/ |
RSScriptGroupFusion.h | 35 /// @param sources The Sources containing the kernels. 42 const std::vector<Source *>& 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 | 97 RegisterSpecList sources = insn.getSources(); 102 if (sources.size() != 2 ) { 111 if (isConstIntZeroOrKnownNull(sources.get(0))) { 112 replacePlainInsn(insn, sources.withoutFirst(), 114 } else if (isConstIntZeroOrKnownNull(sources.get(1))) { 115 replacePlainInsn(insn, sources.withoutLast(), 119 opcode, sources.get(0), sources.get(1))) { 123 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...] |
/development/tools/findunused/ |
findunusedresources | 44 sources=$app/src 47 sources="$sources $app/tests" 51 sources="$sources $app/samples" 62 find $resources $sources $app/AndroidManifest.xml -type f -print |xargs cat | tr -d '\n ' > /tmp/everything$$
|
/external/owasp/sanitizer/tools/ |
stage_to_maven_central.sh | 75 requireFile "$JAR_NO_EXT"-sources.jar 85 -Dfiles="$JAR_NO_EXT"-sources.jar,"$JAR_NO_EXT"-javadoc.jar \ 87 -Dclassifiers=sources,javadoc \
|