HomeSort by relevance Sort by last modified time
    Searched defs:sources (Results 1 - 25 of 686) 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
  /external/autotest/client/site_tests/hardware_VideoDecodeCapable/src/
setup_vaapi.py 11 sources = ['vaapimodule.cc']) variable
setup_vaapi_drm.py 12 sources = ['vaapimodule.cc']) variable
  /ndk/tests/device/test-gnustl-full/jni/
Android.mk 8 sources := $(wildcard $(unit_path)/*.cpp $(unit_path)/*.c) macro
9 sources := $(sources:$(unit_path)/%=%) macro
12 sources := $(filter-out string_header_test.c,$(sources)) macro
15 sources := $(filter-out exception_test.cpp,$(sources)) macro
18 sources := $(filter-out codecvt_test.cpp,$(sources)) macro
20 LOCAL_SRC_FILES := $(sources:%=unit/%
    [all...]
  /external/selinux/policycoreutils/sepolicy/
setup.py 9 sources=["policy.c", "info.c", "search.c"] variable
  /frameworks/native/libs/binder/
Android.mk 15 # we have the common sources, plus some device-specific stuff
16 sources := \ macro
53 LOCAL_SRC_FILES := $(sources)
65 LOCAL_SRC_FILES := $(sources)
  /ndk/tests/device/test-stlport/jni/
Android.mk 8 sources := $(wildcard $(unit_path)/*.cpp $(unit_path)/*.c) macro
9 sources := $(sources:$(LOCAL_PATH)/%=%) macro
12 sources := $(filter-out unit/string_header_test.c,$(sources)) macro
15 sources := $(filter-out unit/exception_test.cpp,$(sources)) macro
18 sources := $(filter-out unit/codecvt_test.cpp,$(sources)) macro
20 LOCAL_SRC_FILES := $(sources)
    [all...]
  /external/e2fsprogs/contrib/python-uuid/
setup.py 5 sources = ['uuid.c'], variable
  /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);
  /external/gmock/test/
Android.mk 76 sources := \ macro
83 $(call host-test, $(sources))
84 $(call target-test, $(sources))
  /external/gtest/test/
Android.mk 75 sources := \ macro
98 $(call host-test, $(sources))
99 $(call target-test, $(sources))
  /external/v8/test/cctest/compiler/
test-linkage.cc 53 const char* sources[] = {"(function() { })", "(function(a) { })", local
60 *v8::Local<v8::Function>::Cast(CompileRun(sources[i]))));
  /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...]
  /external/autotest/client/deps/lansim/src/
setup.py 21 sources = PYIFTUN_SRC, variable
  /external/vixl/third_party/android/
generate_android_mk.py 52 sources = glob.glob(os.path.join(dir_root, 'src', 'vixl', '*.cc')) + \
54 sources = map(lambda p : os.path.relpath(p, dir_root), sources) variable
55 sources.sort()
66 template = template.format(vixl_sources=' \\\n '.join(sources),
53 glob.glob(os.path.join(dir_root, 'src', 'vixl', 'a64', '*.cc')) variable
  /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
  /frameworks/base/tools/split-select/
Android.mk 27 sources := \ macro
75 LOCAL_SRC_FILES := $(sources)
  /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...]
  /external/dexmaker/src/dx/java/com/android/dx/ssa/
PhiInsn.java 47 private RegisterSpecList sources; field in class:PhiInsn
82 * Updates the TypeBearers of all the sources (phi operands) to be
99 sources = null;
133 // Un-cache sources, in case someone has already called getSources().
134 sources = null;
152 // Un-cache sources, in case someone has already called getSources().
153 sources = null;
198 * Gets sources. Constructed lazily from phi operand data structures and
201 * @return {@code non-null;} sources list
205 if (sources != null)
    [all...]
  /bionic/libc/kernel/tools/
update_all.py 56 sources = dict() variable
67 sources[rel_path] = False
69 sources[rel_path] = True
82 for rel_path in sorted(sources):
83 if sources[rel_path]:
  /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/dexmaker/src/dx/java/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...]

Completed in 1793 milliseconds

1 2 3 4 5 6 7 8 91011>>