HomeSort by relevance Sort by last modified time
    Searched defs:sources (Results 1 - 25 of 1071) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /build/kati/testcase/
filter.mk 0 sources := foo.c bar.c baz.s ugh.h
4 echo cc $(filter %.c %.s,$(sources)) -o foo
1 sources := foo.c bar.c baz.s ugh.h macro
  /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/deqp/external/vulkancts/framework/vulkan/
vkShaderProgram.cpp 33 sources[shaderSource.shaderType].push_back(shaderSource.source);
45 sources[shaderSource.shaderType].push_back(shaderSource.source);
55 tcu::TestLog& logShader(tcu::TestLog& log, const std::vector<std::string> (&sources)[glu::SHADERTYPE_LAST])
63 for (size_t shaderNdx = 0; shaderNdx < sources[shaderType].size(); shaderNdx++)
66 sources[shaderType][shaderNdx], local
84 return logShader(log, shaderSource.sources);
89 return logShader(log, shaderSource.sources);
vkShaderProgram.hpp 72 std::vector<std::string> sources[glu::SHADERTYPE_LAST]; member in struct:vk::GlslSource
82 std::vector<std::string> sources[glu::SHADERTYPE_LAST]; member in struct:vk::HlslSource
  /external/e2fsprogs/contrib/python-uuid/
setup.py 5 sources = ['uuid.c'], variable
  /external/mesa3d/src/mesa/
Android.gen.mk 30 intermediates := $(call local-generated-sources-dir)
33 # This is the list of auto-generated files: sources and headers
34 sources := \ macro
44 LOCAL_SRC_FILES := $(filter-out $(sources), $(LOCAL_SRC_FILES))
50 sources += x86/matypes.h
55 sources += main/git_sha1.h
57 sources := $(addprefix $(intermediates)/, $(sources)) macro
59 LOCAL_GENERATED_SOURCES += $(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/jacoco/org.jacoco.report.test/src/org/jacoco/report/
MultiSourceFileLocatorTest.java 98 private final Map<String, Reader> sources = new HashMap<String, Reader>(); field in class:MultiSourceFileLocatorTest.StubLocator
101 sources.put(path, new StubReader(content));
106 return sources.get(packageName + "/" + fileName);
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());
  /packages/apps/Test/connectivity/sl4n/rapidjson/test/unittest/
pointertest.cpp 397 const char* sources[] = { local
415 for (size_t i = 0; i < sizeof(sources) / sizeof(sources[0]); i++) {
416 Pointer p(sources[i]);
419 EXPECT_STREQ(sources[i], s.GetString());
    [all...]
  /packages/services/Car/tests/carservice_test/src/com/android/car/
CarAudioManagerTest.java 44 String[] sources = mCarAudioManager.getExternalSources(); local
45 // Log the sources we found. No other real error check as long as the query doesn't crash
47 for (String s: sources) {
  /tools/apksig/src/main/java/com/android/apksig/internal/util/
ChainedDataSource.java 32 public ChainedDataSource(DataSource... sources) {
33 mSources = sources;
34 mTotalSize = Arrays.stream(sources).mapToLong(src -> src.size()).sum();
114 ArrayList<DataSource> sources = new ArrayList<>(); local
115 sources.add(beginSource.slice(
123 sources.add(mSources[i]);
126 sources.add(mSources[endIndex].slice(0, endLocalOffset));
127 return new ChainedDataSource(sources.toArray(new DataSource[0]));
  /external/autotest/client/deps/lansim/src/
setup.py 21 sources = PYIFTUN_SRC, variable
  /external/dtc/pylibfdt/
setup.py 8 Files to be built into the extension are provided in SOURCES
94 files = os.environ.get('SOURCES', '').split()
108 sources = files, variable
  /external/tensorflow/tensorflow/compiler/xla/service/gpu/
thunk_schedule.cc 115 std::list<const Thunk*>& sources = FindOrDie(depends_on_, dst); local
116 for (auto iter = sources.begin(); iter != sources.end();) {
123 iter = sources.erase(iter);
129 if (sources.empty()) {
  /frameworks/base/media/java/android/media/
AudioPatch.java 21 * An AudioPatch describes a connection between audio sources and audio sinks.
36 AudioPatch(AudioHandle patchHandle, AudioPortConfig[] sources, AudioPortConfig[] sinks) {
38 mSources = sources;
43 * Retrieve the list of sources of this audio patch.
45 public AudioPortConfig[] sources() { method in class:AudioPatch
  /dalvik/dx/src/com/android/dx/ssa/
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...]
  /dalvik/dexgen/src/com/android/dexgen/rop/code/
PlainInsn.java 37 * @param sources {@code non-null;} specs for all the sources
40 RegisterSpec result, RegisterSpecList sources) {
41 super(opcode, position, result, sources);
99 RegisterSpecList sources = getSources(); local
100 int szSources = sources.size();
106 TypeBearer lastType = sources.get(szSources - 1).getTypeBearer();
114 RegisterSpecList newSources = sources.withoutLast();
133 RegisterSpecList sources) {
137 sources);
    [all...]
  /dalvik/dx/src/com/android/dx/rop/code/
PlainInsn.java 38 * @param sources {@code non-null;} specs for all the sources
41 RegisterSpec result, RegisterSpecList sources) {
42 super(opcode, position, result, sources);
100 RegisterSpecList sources = getSources(); local
101 int szSources = sources.size();
107 TypeBearer lastType = sources.get(szSources - 1).getTypeBearer();
111 TypeBearer firstType = sources.get(0).getTypeBearer();
114 RegisterSpecList newSources = sources.withoutFirst();
125 RegisterSpecList newSources = sources.withoutLast()
    [all...]
  /external/deqp/modules/gles31/functional/
es31fProgramPipelineStateQueryTests.cpp 171 glu::ProgramSources sources; local
174 sources << glu::ProgramSeparable(true) << glu::VertexSource(s_vertexSource);
176 sources << glu::ProgramSeparable(true) << glu::FragmentSource(s_fragmentSource);
178 sources << glu::ProgramSeparable(true) << glu::ComputeSource(s_computeSource);
185 glu::ShaderProgram program(m_context.getRenderContext(), sources);
  /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/libxml2/
genChRanges.py 45 sources = "chvalid.def" # input filename variable
218 * Sources: %s
265 """ % (date, sources));
275 * Sources: %s
291 """ % (date, sources));
  /external/v8/tools/
SourceMap.js 132 sources: function()
236 var sources = [];
238 for (var i = 0; i < map.sources.length; ++i) {
239 var originalSourceURL = map.sources[i];
246 sources.push(url);
254 var sourceURL = sources[sourceIndex];
278 sourceURL = sources[sourceIndex];
128 WebInspector.SourceMap.prototype = { method in class:WebInspector.SourceMap

Completed in 751 milliseconds

1 2 3 4 5 6 7 8 91011>>