HomeSort by relevance Sort by last modified time
    Searched refs:sources (Results 351 - 375 of 489) sorted by null

<<11121314151617181920

  /external/chromium_org/courgette/
courgette_tool.cc 292 courgette::SourceStreamSet sources; local
293 if (!sources.Init(buffer.c_str(), buffer.length()))
297 const courgette::Status read_status = ReadEncodedProgram(&sources, &encoded);
  /external/deqp/modules/gles3/functional/
es3fLifetimeTests.cpp 118 ProgramSources sources;
119 sources << VertexSource(s_vertexShaderSrc)
123 return sources;
  /external/dexmaker/src/dx/java/com/android/dx/ssa/
SsaMethod.java 466 * Adds specified insn to the uses list for all of its sources.
516 * @param oldSources {@code null-ok;} list of sources that were
527 RegisterSpecList sources = insn.getSources(); local
528 int szNew = sources.size();
531 int reg = sources.get(i).getReg();
538 * {@code oldSources} (rather than the sources currently
  /build/core/
java.mk 130 ## .rs files: RenderScript sources to .java files and .bc files
131 ## .fs files: Filterscript sources to .java files and .bc files
276 # Provide a way to skip sources included in multiple projects.
336 # via deps on the target that generates the sources.
  /external/chromium_org/third_party/mesa/src/src/gallium/docs/
make.bat 108 echo.Testing of doctests in the sources finished, look at the ^
  /external/chromium_org/third_party/protobuf/src/google/protobuf/
descriptor_database.cc 457 const vector<DescriptorDatabase*>& sources)
458 : sources_(sources) {}
478 // sources defines a file with the same name (which presumably doesn't
502 // sources defines a file with the same name (which presumably doesn't
  /external/chromium_org/url/
url_canon_internal.cc 314 const URLComponentSource<char>& repl_source = repl.sources();
348 const URLComponentSource<base::char16>& repl_source = repl.sources();
  /external/mesa3d/src/gallium/docs/
make.bat 108 echo.Testing of doctests in the sources finished, look at the ^
  /external/mesa3d/src/mesa/
Android.mk 34 include $(LOCAL_PATH)/sources.mak
  /external/owasp/sanitizer/
Makefile 196 echo Bundling sources and docs
201 jar cf out/staging/lib/owasp-java-html-sanitizer-sources.jar -C out/staging/src/main org
  /external/chromium_org/content/renderer/media/
user_media_client_impl.h 116 blink::WebVector<blink::WebSourceInfo>& sources);
153 // Triggers |callback| when all sources used in this request have either
172 // Sources used in this request.
183 // Creates a WebKit representation of stream sources based on
204 // underlying media sources and tracks have been created and started.
  /external/chromium_org/third_party/WebKit/Source/devtools/front_end/bindings/
CompilerScriptMapping.js 151 var sourceURLs = sourceMap.sources();
  /external/chromium_org/third_party/WebKit/public/web/
WebFrame.h 275 int worldID, const WebScriptSource* sources, unsigned numSources,
  /external/chromium_org/third_party/closure_compiler/
checker.py 225 parser.add_argument("sources", nargs=argparse.ONE_OR_MORE,
235 for source in opts.sources:
  /external/chromium_org/third_party/cython/src/pyximport/
pyxbuild.py 37 ext = Extension(name=modname, sources=[filename])
  /external/chromium_org/third_party/mesa/src/src/mesa/main/
errors.c 505 _mesa_GetDebugMessageLogARB(GLuint count, GLsizei logSize, GLenum* sources,
522 GLsizei written = _mesa_get_msg(ctx, sources, types, ids, severities,
538 if (sources)
539 sources++;
  /external/chromium_org/tools/gyp/pylib/gyp/
msvs_emulation.py 484 """Returns the .def file from sources, if any. Otherwise returns None."""
487 def_files = [s for s in spec.get('sources', []) if s.endswith('.def')]
    [all...]
  /external/deqp/modules/gles2/performance/
es2pShaderOptimizationTests.cpp 117 glu::ProgramSources sources; member in struct:deqp::gles2::Performance::__anon24577::ProgramData
121 ProgramData (const glu::ProgramSources& sources_, const vector<gls::AttribSpec>& attributes_ = vector<gls::AttribSpec>()) : sources(sources_), attributes(attributes_) {}
122 ProgramData (const glu::ProgramSources& sources_, const gls::AttribSpec& attribute) : sources(sources_), attributes(1, attribute) {}
233 program(optimized) = SharedPtr<const ShaderProgram>(new ShaderProgram(renderCtx, programData(optimized).sources));
    [all...]
  /external/deqp/modules/gles3/performance/
es3pShaderOptimizationTests.cpp 117 glu::ProgramSources sources; member in struct:deqp::gles3::Performance::__anon24862::ProgramData
121 ProgramData (const glu::ProgramSources& sources_, const vector<gls::AttribSpec>& attributes_ = vector<gls::AttribSpec>()) : sources(sources_), attributes(attributes_) {}
122 ProgramData (const glu::ProgramSources& sources_, const gls::AttribSpec& attribute) : sources(sources_), attributes(1, attribute) {}
236 program(optimized) = SharedPtr<const ShaderProgram>(new ShaderProgram(renderCtx, programData(optimized).sources));
    [all...]
  /external/mesa3d/src/mesa/main/
errors.c 505 _mesa_GetDebugMessageLogARB(GLuint count, GLsizei logSize, GLenum* sources,
522 GLsizei written = _mesa_get_msg(ctx, sources, types, ids, severities,
538 if (sources)
539 sources++;
  /external/chromium_org/third_party/WebKit/Source/web/
WebLocalFrameImpl.cpp 715 Vector<ScriptSourceCode> sources;
718 sources.append(ScriptSourceCode(sourcesIn[i].code, sourcesIn[i].url, position));
722 frame()->script().executeScriptInIsolatedWorld(worldID, sources, extensionGroup, 0);
798 Vector<ScriptSourceCode> sources;
802 sources.append(ScriptSourceCode(sourcesIn[i].code, sourcesIn[i].url, position));
807 frame()->script().executeScriptInIsolatedWorld(worldID, sources, extensionGroup, &scriptResults);
814 frame()->script().executeScriptInIsolatedWorld(worldID, sources, extensionGroup, 0);
    [all...]
  /external/deqp/modules/gles31/functional/
es31fSeparateShaderTests.cpp 603 const ProgramSources& sources)
604 : m_shaderProgram (renderCtx, sources) {}
1086 ProgramSources sources;
1089 sources << VertexSource(*vtxSource);
1091 sources << FragmentSource(*frgSource);
1092 sources << ProgramSeparable(separable);
1095 sources));
    [all...]
es31fProgramInterfaceDefinitionUtil.cpp 1143 glu::ProgramSources sources; local
    [all...]
  /cts/tests/tests/text/src/android/text/cts/
TextUtilsTest.java 1621 String sources[] = new String[] { "string" }; local
    [all...]
  /external/chromium_org/tools/gyp/pylib/gyp/generator/
make.py 664 raise GypError('Duplicate basenames in sources section, see list above')
741 # Some of the generation below can add extra output, sources, or
791 # Sources.
792 all_sources = spec.get('sources', []) + extra_sources
804 sources = filter(Compilable, all_sources)
805 if sources:
807 extensions = set([os.path.splitext(s)[1] for s in sources])
    [all...]

Completed in 653 milliseconds

<<11121314151617181920