Searched refs:sources (Results 51 - 75 of 425) sorted by relevance

1234567891011>>

/external/mesa3d/src/gallium/targets/libgl-xlib/
H A DSConscript34 sources = [
38 # The sources depend on the python-generated GL API files/headers.
39 env.Depends(sources, glapi_headers)
52 source = sources,
/external/dexmaker/src/dx/java/com/android/dx/rop/code/
H A DCstInsn.java35 * @param sources {@code non-null;} specs for all the sources
39 RegisterSpecList sources, Constant cst) {
40 super(opcode, position, result, sources);
38 CstInsn(Rop opcode, SourcePosition position, RegisterSpec result, RegisterSpecList sources, Constant cst) argument
H A DConservativeTranslationAdvice.java44 RegisterSpecList sources) {
43 requiresSourcesInOrder(Rop opcode, RegisterSpecList sources) argument
H A DFillArrayDataInsn.java47 * @param sources {@code non-null;} specs for all the sources
52 RegisterSpecList sources,
55 super(opcode, position, null, sources);
111 RegisterSpecList sources) {
114 sources, initValues, arrayType);
51 FillArrayDataInsn(Rop opcode, SourcePosition position, RegisterSpecList sources, ArrayList<Constant> initValues, Constant cst) argument
110 withNewRegisters(RegisterSpec result, RegisterSpecList sources) argument
H A DPlainCstInsn.java36 * @param sources {@code non-null;} specs for all the sources
40 RegisterSpec result, RegisterSpecList sources,
42 super(opcode, position, result, sources, cst);
79 RegisterSpecList sources) {
83 sources,
39 PlainCstInsn(Rop opcode, SourcePosition position, RegisterSpec result, RegisterSpecList sources, Constant cst) argument
78 withNewRegisters(RegisterSpec result, RegisterSpecList sources) argument
H A DSwitchInsn.java38 * @param sources {@code non-null;} specs for all the sources
42 RegisterSpecList sources, IntList cases) {
43 super(opcode, position, result, sources);
103 RegisterSpecList sources) {
107 sources,
41 SwitchInsn(Rop opcode, SourcePosition position, RegisterSpec result, RegisterSpecList sources, IntList cases) argument
102 withNewRegisters(RegisterSpec result, RegisterSpecList sources) argument
H A DThrowingCstInsn.java38 * @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,
42 ThrowingCstInsn(Rop opcode, SourcePosition position, RegisterSpecList sources, TypeList catches, Constant cst) argument
100 withNewRegisters(RegisterSpec result, RegisterSpecList sources) argument
H A DThrowingInsn.java59 * @param sources {@code non-null;} specs for all the sources
63 RegisterSpecList sources,
65 super(opcode, position, null, sources);
114 RegisterSpecList sources) {
117 sources,
62 ThrowingInsn(Rop opcode, SourcePosition position, RegisterSpecList sources, TypeList catches) argument
113 withNewRegisters(RegisterSpec result, RegisterSpecList sources) argument
H A DDexTranslationAdvice.java38 * 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) { argument
116 int sz = sources.size();
120 total += sources.get(i).getCategory();
102 requiresSourcesInOrder(Rop opcode, RegisterSpecList sources) argument
/external/chromium_org/third_party/mesa/src/src/gallium/targets/graw-gdi/
H A DSConscript19 sources = [
34 source = sources,
/external/chromium_org/third_party/mesa/src/src/gallium/targets/graw-xlib/
H A DSConscript22 sources = [
37 source = sources,
/external/chromium_org/third_party/mesa/src/src/gallium/winsys/i915/drm/
H A DMakefile7 include Makefile.sources
/external/chromium_org/third_party/mesa/src/src/gallium/winsys/radeon/drm/
H A DMakefile8 include Makefile.sources
/external/chromium_org/tools/gn/
H A Daction_values.cc21 // Copy and foreach applies the outputs to the sources.
23 target->settings(), outputs_, target->sources(), result);
H A Dfunction_process_file_template_unittest.cc14 Value sources(NULL, Value::LIST);
15 sources.list_value().push_back(Value(NULL, "//src/foo.txt"));
16 args.push_back(sources);
37 Value sources(NULL, Value::LIST);
38 sources.list_value().push_back(Value(NULL, "//src/one.txt"));
39 sources.list_value().push_back(Value(NULL, "//src/two.txt"));
40 args.push_back(sources);
/external/lldb/test/api/multithreaded/
H A DTestMultithreaded.py57 def build_and_test(self, sources, test_name, args = None):
58 """ Build LLDB test from sources, and run expecting 0 exit code """
59 self.buildDriver(sources, test_name)
71 def build_program(self, sources, program):
72 return self.buildDriver(sources, program)
/external/mesa3d/src/gallium/targets/graw-gdi/
H A DSConscript19 sources = [
34 source = sources,
/external/mesa3d/src/gallium/targets/graw-xlib/
H A DSConscript22 sources = [
37 source = sources,
/external/mesa3d/src/gallium/winsys/i915/drm/
H A DMakefile7 include Makefile.sources
/external/mesa3d/src/gallium/winsys/radeon/drm/
H A DMakefile8 include Makefile.sources
/external/mesa3d/src/mesa/drivers/dri/common/
H A DAndroid.mk32 include $(LOCAL_PATH)/Makefile.sources
/external/chromium_org/chrome/browser/ui/webui/ntp/
H A Dsuggestions_combiner_unittest.cc29 SourceInfo sources[3]; member in struct:__anon5517::TestDescription
52 // Two sources, equal weight, more than 8 items.
57 // Two sources, equal weight, exactly 8 items.
62 // Two sources, equal weight, exactly 8 items but source A has more.
67 // Two sources, equal weight, exactly 8 items but source B has more.
72 // Two sources, equal weight, exactly 8 items but source A has none.
77 // Two sources, equal weight, exactly 8 items but source B has none.
82 // Two sources, equal weight, less than 8 items.
87 // Two sources, equal weight, less than 8 items but source A has more.
92 // Two sources, equa
[all...]
/external/chromium_org/chrome/third_party/chromevox/third_party/closure-library/closure/bin/build/
H A Ddepstree.py18 Offers a queryable tree of dependencies of a given set of sources. The tree
29 def __init__(self, sources):
30 """Initializes the tree with a set of sources.
33 sources: A set of JavaScript sources.
36 MultipleProvideError: A namespace is provided by muplitple sources.
40 self._sources = sources
44 for source in sources:
53 for source in sources:
91 Follows the dependency tree down and builds a list of sources i
[all...]
/external/chromium_org/ppapi/
H A Dgenerate_ppapi_include_tests.py11 - Verifies that all sources in ppapi.gyp really do exist
36 GYP_SOURCES_KEY = 'sources'
43 sources = set([])
45 # Get a list of sources in the target that are not ignored, and 'normalize'
50 sources |= set(source_list)
51 return sources
122 sources = target[GYP_SOURCES_KEY]
123 sources.sort()
124 return sources
/external/chromium_org/v8/tools/
H A Djs2c.py295 return Vector<const byte>(sources, %(total_length)i);
309 static const byte sources[] = { %s };
319 static const char* raw_sources = reinterpret_cast<const char*>(sources);
339 """Build the chain of filter functions to be applied to the sources.
386 sources: List of Javascript-ish source files. A file named macros.py
401 # Sort 'debugger' sources first.
422 def BuildMetadata(sources, source_bytes, native_type):
426 sources: A Sources instance with the prepared sources.
428 (The concatenation of all sources; migh
[all...]

Completed in 1468 milliseconds

1234567891011>>