HomeSort by relevance Sort by last modified time
    Searched refs:sources (Results 126 - 150 of 1669) sorted by null

1 2 3 4 56 7 8 91011>>

  /prebuilts/go/darwin-x86/src/net/
nss_test.go 46 sources: map[string][]nssSource{
55 sources: map[string][]nssSource{
64 sources: map[string][]nssSource{
73 sources: map[string][]nssSource{
82 sources: map[string][]nssSource{
91 sources: map[string][]nssSource{
119 sources: map[string][]nssSource{
  /prebuilts/go/linux-x86/src/net/
nss_test.go 46 sources: map[string][]nssSource{
55 sources: map[string][]nssSource{
64 sources: map[string][]nssSource{
73 sources: map[string][]nssSource{
82 sources: map[string][]nssSource{
91 sources: map[string][]nssSource{
119 sources: map[string][]nssSource{
  /dalvik/dx/src/com/android/dx/cf/code/
RopperMachine.java 302 // The sources have to be retrieved before super.run() gets called.
303 RegisterSpecList sources = getSources(opcode, stackPointer); local
304 int sourceCount = sources.size();
350 RegisterSpec src = sources.get(i);
390 insn = new ThrowingCstInsn(rop, pos, sources, catches,
475 sources = RegisterSpecList.make(objectReg);
492 rop = Rops.ropFor(ropOpcode, destType, sources, cst);
540 TypeBearer firstType = sources.get(0).getTypeBearer();
541 TypeBearer lastType = sources.get(1).getTypeBearer();
544 advice.hasConstantOperation(rop, sources.get(0)
684 RegisterSpecList sources; local
    [all...]
  /external/mesa3d/src/mesa/
Android.gen.mk 30 intermediates := $(call local-generated-sources-dir)
33 # This is the list of auto-generated files: sources and headers
34 sources := \ macro
44 LOCAL_SRC_FILES := $(filter-out $(sources), $(LOCAL_SRC_FILES))
50 sources += x86/matypes.h
55 sources += main/git_sha1.h
57 sources := $(addprefix $(intermediates)/, $(sources)) macro
59 LOCAL_GENERATED_SOURCES += $(sources)
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/distutils/command/
build_clib.py 171 sources = build_info.get('sources')
172 if sources is None or not isinstance(sources, (list, tuple)):
175 "'sources' must be present and must be "
178 filenames.extend(sources)
183 sources = build_info.get('sources')
184 if sources is None or not isinstance(sources, (list, tuple)):
    [all...]
  /external/python/cpython2/Lib/distutils/command/
build_clib.py 171 sources = build_info.get('sources')
172 if sources is None or not isinstance(sources, (list, tuple)):
175 "'sources' must be present and must be "
178 filenames.extend(sources)
183 sources = build_info.get('sources')
184 if sources is None or not isinstance(sources, (list, tuple))
    [all...]
  /prebuilts/gdb/darwin-x86/lib/python2.7/distutils/command/
build_clib.py 171 sources = build_info.get('sources')
172 if sources is None or not isinstance(sources, (list, tuple)):
175 "'sources' must be present and must be "
178 filenames.extend(sources)
183 sources = build_info.get('sources')
184 if sources is None or not isinstance(sources, (list, tuple))
    [all...]
  /prebuilts/gdb/linux-x86/lib/python2.7/distutils/command/
build_clib.py 171 sources = build_info.get('sources')
172 if sources is None or not isinstance(sources, (list, tuple)):
175 "'sources' must be present and must be "
178 filenames.extend(sources)
183 sources = build_info.get('sources')
184 if sources is None or not isinstance(sources, (list, tuple))
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/distutils/command/
build_clib.py 171 sources = build_info.get('sources')
172 if sources is None or not isinstance(sources, (list, tuple)):
175 "'sources' must be present and must be "
178 filenames.extend(sources)
183 sources = build_info.get('sources')
184 if sources is None or not isinstance(sources, (list, tuple))
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/distutils/command/
build_clib.py 171 sources = build_info.get('sources')
172 if sources is None or not isinstance(sources, (list, tuple)):
175 "'sources' must be present and must be "
178 filenames.extend(sources)
183 sources = build_info.get('sources')
184 if sources is None or not isinstance(sources, (list, tuple))
    [all...]
  /external/deqp/framework/opengl/
gluShaderProgram.cpp 309 ShaderProgram::ShaderProgram (const RenderContext& renderCtx, const ProgramSources& sources)
312 init(renderCtx.getFunctions(), sources);
315 ShaderProgram::ShaderProgram (const glw::Functions& gl, const ProgramSources& sources)
318 init(gl, sources);
321 void ShaderProgram::init (const glw::Functions& gl, const ProgramSources& sources)
329 for (int shaderNdx = 0; shaderNdx < (int)sources.sources[shaderType].size(); ++shaderNdx)
331 const char* source = sources.sources[shaderType][shaderNdx].c_str();
332 const int length = (int)sources.sources[shaderType][shaderNdx].size()
    [all...]
gluShaderProgram.hpp 186 ShaderProgram (const glw::Functions& gl, const ProgramSources& sources);
187 ShaderProgram (const RenderContext& renderCtx, const ProgramSources& sources);
201 void init (const glw::Functions& gl, const ProgramSources& sources);
215 tcu::TestLog& operator<< (tcu::TestLog& log, const ProgramSources& sources);
301 std::vector<std::string> sources[SHADERTYPE_LAST]; member in struct:glu::ProgramSources
313 ProgramSources& operator<< (const ShaderSource& shaderSource) { sources[shaderSource.shaderType].push_back(shaderSource.source); return *this; }
331 ProgramSources sources; local
332 sources.sources[SHADERTYPE_VERTEX].push_back(vertexSrc);
333 sources.sources[SHADERTYPE_FRAGMENT].push_back(fragmentSrc)
    [all...]
  /dalvik/dx/src/com/android/dx/ssa/
DeadCodeRemover.java 95 RegisterSpecList sources = insnS.getSources(); local
97 int sz = sources.size();
100 RegisterSpec source = sources.get(i);
136 RegisterSpecList sources = insn.getSources(); local
137 int sourcesSize = sources.size();
139 // Delete this instruction completely if it has sources
146 RegisterSpec source = sources.get(j);
150 // Remove this instruction result from the sources of any phis
171 * are only used as sources in operations with no side effect or null
  /external/libmojo/
build_mojom_templates.mk 13 $(call generated-sources-dir-for,SHARED_LIBRARIES,libmojo,,)/templates
16 sources := $(MOJOM_TEMPLATE_SOURCES) macro
19 $(gen) : $(sources) $(MOJOM_TEMPLATE_TOOLS)
  /external/gemmlowp/meta/generators/
neon_emitter.py 531 def EmitVStoreA(self, store_no, store_type, sources, destination):
533 '{%s}' % ', '.join(_ExpandQuads(sources)), destination)
538 sources,
542 sources = _ExpandQuads(sources)
543 if len(sources) * 64 < bits_to_store:
544 raise ArgumentError('To few sources: %d to store %d bits.' %
545 (len(sources), bits_to_store))
549 self.EmitVStoreA(1, 32, sources[:4],
552 sources = sources[4:
    [all...]
  /external/mesa3d/src/mesa/drivers/dri/common/
Android.mk 32 include $(LOCAL_PATH)/Makefile.sources
37 intermediates := $(call local-generated-sources-dir)
103 include $(LOCAL_PATH)/Makefile.sources
  /dalvik/dx/src/com/android/dx/rop/code/
InvokePolymorphicInsn.java 60 * @param sources {@code non-null;} specs for all the sources
65 public InvokePolymorphicInsn(Rop opcode, SourcePosition position, RegisterSpecList sources, TypeList catches,
67 super(opcode, position, null, sources);
118 public Insn withNewRegisters(RegisterSpec result, RegisterSpecList sources) {
120 sources, catches, getCallSiteMethod());
  /external/mesa3d/src/gallium/targets/libgl-xlib/
SConscript 39 sources = [
70 source = sources,
  /external/mesa3d/src/mesa/drivers/dri/i965/
brw_fs_lower_pack.cpp 44 for (unsigned i = 0; i < inst->sources; i++)
  /hardware/qcom/bt/msm8960/libbt-vendor/
vnd_buildcfg.mk 17 generated_sources := $(local-generated-sources-dir)
  /frameworks/av/services/audioflinger/
PatchPanel.cpp 159 // limit number of sources to 1 for now or 2 sources for special cross hw module case.
160 // only the audio policy manager can request a patch creation with 2 sources.
185 if ((removedPatch->mAudioPatch.sources[0].type == AUDIO_PORT_TYPE_DEVICE) &&
186 ((patch->sources[0].type != AUDIO_PORT_TYPE_DEVICE) ||
187 (removedPatch->mAudioPatch.sources[0].ext.device.hw_module !=
188 patch->sources[0].ext.device.hw_module))) {
189 hwModule = removedPatch->mAudioPatch.sources[0].ext.device.hw_module;
220 switch (patch->sources[0].type) {
222 audio_module_handle_t srcModule = patch->sources[0].ext.device.hw_module
    [all...]
  /device/linaro/bootloader/edk2/EdkCompatibilityPkg/Foundation/Library/Smm/SmmScriptLib/
SmmScriptLib.inf 19 [sources.common]
  /device/linaro/bootloader/edk2/QuarkPlatformPkg/Platform/Dxe/SaveMemoryConfig/
SaveMemoryConfig.inf 24 [sources]
  /device/linaro/bootloader/edk2/Vlv2DeviceRefCodePkg/AcpiTablesPCAT/
AcpiTables.inf 31 [sources.common]
  /external/jsoncpp/devtools/
tarball.py 7 def make_tarball(tarball_path, sources, base_dir, prefix_dir=''):
10 sources: list of sources to include in the tarball, relative to the current directory
34 for source in sources:

Completed in 413 milliseconds

1 2 3 4 56 7 8 91011>>