Searched refs:sources (Results 76 - 100 of 425) sorted by relevance

1234567891011>>

/external/chromium_org/build/
H A Dsymlink.py25 sources = args[:-1]
26 for s in sources:
/external/chromium_org/chrome/renderer/resources/extensions/
H A Ddesktop_capture_custom_bindings.js25 function(sources, target_tab, callback) {
34 [id, sources, target_tab, onRequestResult.bind(null, id)],
/external/chromium_org/extensions/renderer/
H A Duser_script_injector.cc163 std::vector<blink::WebScriptSource> sources; local
181 sources.push_back(blink::WebScriptSource(
188 sources.insert(sources.begin(), g_greasemonkey_api.Get().GetSource());
190 return sources;
197 std::vector<std::string> sources; local
202 sources.push_back(iter->GetContent().as_string());
204 return sources;
/external/chromium_org/third_party/WebKit/Source/devtools/front_end/
H A DsourcesPanel.css121 .panel.sources #sources-editor-container-tabbed-pane .tabbed-pane-header-contents {
126 .panel.sources .split-view button.scripts-debugger-show-hide-button.right-sidebar-show-hide-button.toggled-hide {
130 .panel.sources .split-view #scripts-debug-sidebar-resizer-widget.ns-resizer-widget {
139 .panel.sources .split-view.hbox #scripts-debug-sidebar-resizer-widget {
143 .panel.sources .scripts-debugger-show-hide-button {
147 .panel.sources button.status-bar-item.scripts-navigator-show-hide-button {
153 .panel.sources .navigator-tabbed-pane .tabbed-pane-header {
172 .panel.sources .sidebar-pane-stack {
185 .panel.sources
[all...]
/external/chromium_org/third_party/mesa/src/src/gallium/drivers/nouveau/
H A DMakefile14 include Makefile.sources
/external/chromium_org/third_party/mesa/src/src/gallium/drivers/radeonsi/
H A DMakefile12 include Makefile.sources
/external/chromium_org/third_party/mesa/src/src/gallium/drivers/svga/
H A DMakefile7 include Makefile.sources
/external/chromium_org/tools/gn/
H A Dcopy_target_generator.cc31 if (target_->sources().empty()) {
32 *err_ = Err(function_call_, "Empty sources for copy command.",
33 "You have to specify at least one file to copy in the \"sources\".");
40 "multiple sources to copy, use source expansion\n(see \"gn help "
H A Dninja_copy_target_writer_unittest.cc23 target.sources().push_back(SourceFile("//foo/input1.txt"));
24 target.sources().push_back(SourceFile("//foo/input2.txt"));
55 target.sources().push_back(SourceFile("//foo/input1.txt"));
/external/mesa3d/src/gallium/drivers/nouveau/
H A DMakefile14 include Makefile.sources
/external/mesa3d/src/gallium/drivers/radeonsi/
H A DMakefile12 include Makefile.sources
/external/mesa3d/src/gallium/drivers/svga/
H A DMakefile7 include Makefile.sources
/external/mesa3d/src/mesa/drivers/dri/i915/
H A DAndroid.mk33 include $(LOCAL_PATH)/Makefile.sources
/external/mesa3d/src/mesa/drivers/dri/i965/
H A DAndroid.mk33 include $(LOCAL_PATH)/Makefile.sources
/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/chrome/test/chromedriver/
H A Dtest_util.cc50 base::ScopedCFTypeRef<CFArrayRef> sources(
52 if (CFArrayGetCount(sources) != 1)
55 sources, 0);
/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);
/external/dexmaker/src/dx/java/com/android/dx/ssa/
H A DLiteralOpUpgrader.java98 RegisterSpecList sources = insn.getSources();
103 if (sources.size() != 2 ) {
112 if (isConstIntZeroOrKnownNull(sources.get(0))) {
113 replacePlainInsn(insn, sources.withoutFirst(),
115 } else if (isConstIntZeroOrKnownNull(sources.get(1))) {
116 replacePlainInsn(insn, sources.withoutLast(),
120 opcode, sources.get(0), sources.get(1))) {
124 opcode, sources.get(1), sources
[all...]
H A DPhiInsn.java47 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 !
[all...]
/external/owasp/sanitizer/tools/
H A Dstage_to_maven_central.sh75 requireFile "$JAR_NO_EXT"-sources.jar
85 -Dfiles="$JAR_NO_EXT"-sources.jar,"$JAR_NO_EXT"-javadoc.jar \
87 -Dclassifiers=sources,javadoc \
/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/tools/binary_size/
H A Dexplain_binary_size_delta.py154 self.sources = set()
180 section.sources.add(file_path)
209 print(' %d %s across %d sources' %
210 (len(section.symbols), description, len(section.sources)))
223 unchanged_sources = unchanged_sources - section.sources
224 new_sources = (new_symbols.sources -
226 removed_symbols.sources)
227 removed_sources = (removed_symbols.sources -
229 new_symbols.sources)
230 partially_changed_sources = (grown_symbols.sources |
[all...]
/external/chromium_org/third_party/WebKit/Source/devtools/front_end/sdk/
H A DContentProviders.js96 var sources = [];
104 sources.push(content);
105 if (sources.length == scripts.length)
106 callback(this._concatenateScriptsContent(scripts, sources));
158 _concatenateScriptsContent: function(scripts, sources)
177 content += sources[i];
/external/chromium_org/third_party/cython/src/Cython/Compiler/
H A DCmdLine.py78 sources = []
172 sources.append(pop_arg())
173 if options.use_listing_file and len(sources) > 1:
177 if len(sources) == 0 and not options.show_version:
179 if Options.embed and len(sources) > 1:
183 return options, sources
/external/chromium_org/third_party/mesa/src/src/gallium/targets/egl-static/
H A DSConscript42 sources = [
49 sources.append('#src/egl/main/egl.def')
122 source = sources,

Completed in 769 milliseconds

1234567891011>>