/external/guava/guava-tests/test/com/google/common/io/ |
MultiInputStreamTest.java | 70 List<ByteSource> sources = Lists.newArrayList(); local 73 sources.add(newByteSource(start, span)); 76 ByteSource joined = ByteSource.concat(sources);
|
/external/guice/core/src/com/google/inject/spi/ |
Message.java | 47 private final List<Object> sources; field in class:Message 52 public Message(List<Object> sources, String message, Throwable cause) { 53 this.sources = ImmutableList.copyOf(sources); 74 return sources.isEmpty() 76 : Errors.convert(sources.get(sources.size() - 1)).toString(); 81 return sources; 119 return message.equals(e.message) && Objects.equal(cause, e.cause) && sources.equals(e.sources); [all...] |
/external/jacoco/org.jacoco.report.test/src/org/jacoco/report/ |
InputStreamSourceFileLocatorTest.java | 30 private Map<String, byte[]> sources = new HashMap<String, byte[]>(); field in class:InputStreamSourceFileLocatorTest 40 final byte[] bytes = sources.get(path); 60 sources.put("org/jacoco/example/Test.java", "ÜÄö".getBytes("UTF-8")); 68 sources.put("Test.java", "ÜÄö".getBytes("UTF-8")); 75 sources.put("Test.java", "ÜÄö".getBytes("UTF-16")); 82 sources.put("Test.java", "Hello World!".getBytes());
|
/external/mesa3d/src/glsl/ |
Android.gen.mk | 32 sources := \ macro 39 sources += builtin_function.cpp 42 LOCAL_SRC_FILES := $(filter-out $(sources), $(LOCAL_SRC_FILES)) 46 sources := $(addprefix $(intermediates)/, $(sources)) macro 47 LOCAL_GENERATED_SOURCES += $(sources)
|
/external/mesa3d/src/mesa/ |
Android.gen.mk | 32 # This is the list of auto-generated files: sources and headers 33 sources := \ macro 43 LOCAL_SRC_FILES := $(filter-out $(sources), $(LOCAL_SRC_FILES)) 49 sources += x86/matypes.h 54 sources += main/git_sha1.h 56 sources := $(addprefix $(intermediates)/, $(sources)) macro 58 LOCAL_GENERATED_SOURCES += $(sources)
|
/external/opencv3/samples/python2/ |
video.py | 176 args, sources = getopt.getopt(sys.argv[1:], '', 'shotdir=') 179 if len(sources) == 0: 180 sources = [ 0 ] variable 182 caps = map(create_capture, sources)
|
/dalvik/dexgen/src/com/android/dexgen/rop/code/ |
BasicBlockList.java | 377 RegisterSpecList sources = insn.getSources(); local 378 int sz = sources.size(); 381 processReg(sources.get(i));
|
Rop.java | 61 /** {@code non-null;} types of all the sources of this operation */ 62 private final TypeList sources; field in class:Rop 86 * @param sources {@code non-null;} types of all the sources of this operation 94 public Rop(int opcode, Type result, TypeList sources, 101 if (sources == null) { 102 throw new NullPointerException("sources == null"); 120 this.sources = sources; 134 * @param sources {@code non-null;} types of all the sources of this operatio [all...] |
/dalvik/dx/src/com/android/dx/rop/code/ |
BasicBlockList.java | 375 RegisterSpecList sources = insn.getSources(); local 376 int sz = sources.size(); 379 processReg(sources.get(i));
|
Rop.java | 61 /** {@code non-null;} types of all the sources of this operation */ 62 private final TypeList sources; field in class:Rop 86 * @param sources {@code non-null;} types of all the sources of this operation 94 public Rop(int opcode, Type result, TypeList sources, 101 if (sources == null) { 102 throw new NullPointerException("sources == null"); 120 this.sources = sources; 134 * @param sources {@code non-null;} types of all the sources of this operatio [all...] |
/external/dexmaker/src/dx/java/com/android/dx/rop/code/ |
BasicBlockList.java | 375 RegisterSpecList sources = insn.getSources(); local 376 int sz = sources.size(); 379 processReg(sources.get(i));
|
Rop.java | 61 /** {@code non-null;} types of all the sources of this operation */ 62 private final TypeList sources; field in class:Rop 86 * @param sources {@code non-null;} types of all the sources of this operation 94 public Rop(int opcode, Type result, TypeList sources, 101 if (sources == null) { 102 throw new NullPointerException("sources == null"); 120 this.sources = sources; 134 * @param sources {@code non-null;} types of all the sources of this operatio [all...] |
/dalvik/dx/src/com/android/dx/cf/code/ |
RopperMachine.java | 300 // The sources have to be retrieved before super.run() gets called. 301 RegisterSpecList sources = getSources(opcode, stackPointer); local 302 int sourceCount = sources.size(); 348 RegisterSpec src = sources.get(i); 388 insn = new ThrowingCstInsn(rop, pos, sources, catches, 473 sources = RegisterSpecList.make(objectReg); 490 rop = Rops.ropFor(ropOpcode, destType, sources, cst); 533 TypeBearer firstType = sources.get(0).getTypeBearer(); 534 TypeBearer lastType = sources.get(1).getTypeBearer(); 537 advice.hasConstantOperation(rop, sources.get(0) 674 RegisterSpecList sources; local [all...] |
/dalvik/dx/src/com/android/dx/ssa/ |
PhiTypeResolver.java | 129 RegisterSpecList sources = insn.getSources(); local 135 int szSources = sources.size(); 137 RegisterSpec rs = sources.get(i); 158 RegisterSpec rs = sources.get(i); 179 sb.append(sources.get(i).toString());
|
/dalvik/dx/src/com/android/dx/ssa/back/ |
RegisterAllocator.java | 184 RegisterSpecList sources = insn.getSources(); local 185 int szSources = sources.size(); 188 interference.add(newReg, sources.get(i).getReg());
|
/development/build/tools/ |
sdk_repo.mk | 92 # Defines the rule to build an SDK sources package. 97 # $4=package to create, must be "sources" 99 define mk-sdk-repo-sources 101 @echo "Building SDK sources package" 134 $(eval $(call mk-sdk-repo-sources,SDK_REPO_XML_ARGS,$(HOST_OS),$(MAIN_SDK_ZIP),sources)) 142 $(call sdk-repo-pkg-zip,$(HOST_OS),$(MAIN_SDK_ZIP),sources)
|
/external/chromium-trace/catapult/third_party/polymer/components/web-animations-js/ |
Gruntfile.js | 21 function concat(sources, target, defines) { 35 src: sources 94 function concatWithMaps(sources, target) { 96 sources: sources 198 var sources = this.data.sources.map(grunt.file.read); 199 var sourceMaps = this.data.sources.map(function(f) { return grunt.file.read(f + '.map'); }); 203 for (var i = 0; i < sources.length; i++) { 204 out += sources[i] [all...] |
/external/deqp/modules/gles2/functional/ |
es2fShaderFragDataTests.cpp | 117 glu::ProgramSources sources; local 121 sources << glu::VertexSource( 134 sources << glu::FragmentSource(string( 143 return sources;
|
/external/dexmaker/src/dx/java/com/android/dx/ssa/ |
PhiTypeResolver.java | 130 RegisterSpecList sources = insn.getSources(); local 136 int szSources = sources.size(); 138 RegisterSpec rs = sources.get(i); 159 RegisterSpec rs = sources.get(i); 180 sb.append(sources.get(i).toString());
|
/external/dexmaker/src/dx/java/com/android/dx/ssa/back/ |
RegisterAllocator.java | 186 RegisterSpecList sources = insn.getSources(); local 187 int szSources = sources.size(); 190 interference.add(newReg, sources.get(i).getReg());
|
/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/libxml2/ |
genChRanges.py | 45 sources = "chvalid.def" # input filename variable 218 * Sources: %s 265 """ % (date, sources)); 275 * Sources: %s 291 """ % (date, sources));
|
genUnicode.py | 17 sources = "Blocks-4.0.1.txt UnicodeData-4.0.1.txt" variable 34 (blockfile, catfile) = string.split(sources) 221 * Sources: %s 236 """ % (webpage, date, sources)); 248 * Sources: %s 278 """ % (webpage, date, sources));
|
/external/webrtc/webrtc/modules/remote_bitrate_estimator/ |
bwe_simulations.cc | 247 rtc::scoped_ptr<VideoSource> sources[kNumFlows]; local 252 sources[i].reset(new AdaptiveVideoSource(kAllFlowIds[i], 30, 300, 0, 254 senders[i].reset(new VideoSender(&uplink_, sources[i].get(), GetParam()));
|
/frameworks/av/services/audiopolicy/common/managerdefinitions/src/ |
HwModule.cpp | 157 Vector <sp<AudioPort> > sources = route->getSources(); local 158 for (size_t i = 0; i < sources.size(); i++) { 159 if (sources[i]->getType() == AUDIO_PORT_TYPE_DEVICE) { 160 sourceDevices.add(mDeclaredDevices.getDeviceFromTagName(sources[i]->getTagName()));
|