Searched defs:sources (Results 1 - 25 of 114) sorted by relevance

12345

/external/pdfium/core/src/fxcodec/libjpeg/
H A Dmakefile0 sources = fpdfapi_jcapimin.c fpdfapi_jcapistd.c fpdfapi_jccoefct.c fpdfapi_jccolor.c fpdfapi_jcdctmgr.c fpdfapi_jchuff.c fpdfapi_jcinit.c fpdfapi_jcmainct.c fpdfapi_jcmarker.c fpdfapi_jcmaster.c \
6 armsources=$(sources)
7 armsourcesc=$(sources)
1 sources = fpdfapi_jcapimin.c fpdfapi_jcapistd.c fpdfapi_jccoefct.c fpdfapi_jccolor.c fpdfapi_jcdctmgr.c fpdfapi_jchuff.c fpdfapi_jcinit.c fpdfapi_jcmainct.c fpdfapi_jcmarker.c fpdfapi_jcmaster.c \\ macro
/external/chromium_org/v8/test/cctest/compiler/
H A Dtest-linkage.cc55 const char* sources[] = {"(function() { })", "(function(a) { })", local
61 *v8::Handle<v8::Function>::Cast(CompileRun(sources[i])));
/external/dexmaker/src/dx/java/com/android/dx/ssa/
H A DRegisterMapper.java45 * @param sources old register list
48 public final RegisterSpecList map(RegisterSpecList sources) { argument
49 int sz = sources.size();
53 newSources.set(i, map(sources.get(i)));
58 // Return the old sources if nothing has changed.
59 return newSources.equals(sources) ? sources : newSources;
/external/e2fsprogs/contrib/python-uuid/
H A Dsetup.py5 sources = ['uuid.c'], variable
/external/chromium_org/chrome/browser/invalidation/
H A Dinvalidation_controller_android.cc33 std::vector<int> sources; local
37 sources.push_back(id->source());
44 base::android::ToJavaIntArray(env, sources).obj(),
/external/chromium_org/third_party/yasm/source/patched-yasm/tools/python-yasm/
H A Dsetup.py51 sources = []
59 sources.append(fn)
61 return sources
63 def RunSetup(incldir, cppflags, sources):
72 sources=sources,
83 sources = ParseSources(opts["sources"], opts["srcdir"].strip()) variable
84 sources.append('yasm_python.c')
87 RunSetup(incldir, cppflags, sources)
[all...]
/external/chromium_org/tools/gn/
H A Dsubstitution_writer_unittest.cc23 std::vector<SourceFile> sources; local
24 SubstitutionWriter::GetListAsSourceFiles(list, &sources);
25 ASSERT_EQ(2u, sources.size());
26 EXPECT_EQ("//foo/bar/a.cc", sources[0].value());
27 EXPECT_EQ("//foo/bar/b.cc", sources[1].value());
H A Dninja_action_target_writer.cc43 // automatically if we supply a count of sources (so it can optimize based on
58 // and the data as inputs. It does not depend on the sources.
93 // steps so that they don't stomp on each other. When there are no sources,
107 if (!target_->sources().empty())
167 const Target::FileList& sources = target_->sources(); local
168 for (size_t i = 0; i < sources.size(); i++) {
170 WriteOutputFilesForBuildLine(sources[i], output_files);
173 path_output_.WriteFile(out_, sources[i]);
189 settings_, sources[
[all...]
H A Dninja_target_writer.cc152 // For an action (where we run a script only once) the sources are the same
165 (!list_sources_as_input_deps || target_->sources().empty()) &&
170 // potentially few sources that depend on these) it's better to just write
171 // all hard deps on each sources line than have this intermediate stamp. We
201 const Target::FileList& sources = target_->sources(); local
202 for (size_t i = 0; i < sources.size(); i++) {
204 path_output_.WriteFile(out_, sources[i]);
/external/dexmaker/src/dx/java/com/android/dx/rop/code/
H A DConservativeTranslationAdvice.java44 RegisterSpecList sources) {
43 requiresSourcesInOrder(Rop opcode, RegisterSpecList sources) argument
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 DTranslationAdvice.java31 * The instruction associated must have exactly two sources.
43 * Returns true if the translation target requires the sources of the
47 * @param sources {@code non-null;} source list
48 * @return {@code true} iff the target requires the sources to be
51 public boolean requiresSourcesInOrder(Rop opcode, 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
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 DPlainInsn.java38 * @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();
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
40 PlainInsn(Rop opcode, SourcePosition position, RegisterSpec result, RegisterSpecList sources) argument
149 withNewRegisters(RegisterSpec result, RegisterSpecList sources) argument
[all...]
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
/external/chromium_org/courgette/
H A Dencoded_program_unittest.cc41 courgette::SourceStreamSet sources; local
42 bool can_get_source_streams = sources.Init(buffer, length);
46 bool can_read = encoded2->ReadFrom(&sources);
H A Dencode_decode_unittest.cc50 courgette::SourceStreamSet sources; local
51 bool can_get_source_streams = sources.Init(buffer, length);
55 const courgette::Status read_status = ReadEncodedProgram(&sources, &encoded2);
/external/chromium_org/third_party/WebKit/Source/bindings/core/v8/
H A DScriptPreprocessor.cpp57 Vector<ScriptSourceCode> sources; local
58 sources.append(preprocessorSourceCode);
60 frame->script().executeScriptInIsolatedWorld(ScriptPreprocessorIsolatedWorldId, sources, DOMWrapperWorld::mainWorldExtensionGroup, &scriptResults);
/external/gtest/test/
H A DAndroid.mk76 sources := \ macro
99 $(call host-test, $(sources))
100 $(call target-test, $(sources))
/external/linux-tools-perf/perf-3.12.0/tools/perf/util/
H A Dsetup.py30 ext_sources = [f.strip() for f in file('util/python-ext-sources')
34 sources = ext_sources, variable
/external/chromium_org/chrome/browser/history/
H A Dvisit_database_unittest.cc371 VisitSourceMap sources; local
372 GetVisitsSource(matches, &sources);
373 EXPECT_EQ(0U, sources.size());
377 GetVisitsSource(matches, &sources);
378 ASSERT_EQ(1U, sources.size());
379 EXPECT_EQ(SOURCE_SYNCED, sources[matches[0].visit_id]);
383 GetVisitsSource(matches, &sources);
384 ASSERT_EQ(1U, sources.size());
385 EXPECT_EQ(SOURCE_EXTENSION, sources[matches[0].visit_id]);
/external/chromium_org/content/browser/webui/
H A Durl_data_manager.cc71 URLDataSources sources; local
76 data_sources_->swap(sources);
78 for (size_t i = 0; i < sources.size(); ++i)
79 delete sources[i];
/external/chromium_org/native_client_sdk/src/build_tools/
H A Dmake_simple.py103 SOURCES = %(sources)s
200 sources = target_info.get('sources', []) variable
202 sources = [s for s in sources if os.path.splitext(s)[1] in exts] variable
203 objects = [os.path.splitext(src)[0] for src in sources]
245 'sources': MakeList(sources),
/external/chromium_org/third_party/WebKit/Source/web/tests/
H A DActivityLoggerTest.cpp81 Vector<ScriptSourceCode> sources; local
82 sources.append(ScriptSourceCode(script));
84 m_scriptController->executeScriptInIsolatedWorld(isolatedWorldId, sources, extensionGroup, 0);

Completed in 4025 milliseconds

12345