HomeSort by relevance Sort by last modified time
    Searched refs:sources (Results 101 - 125 of 753) sorted by null

1 2 3 45 6 7 8 91011>>

  /external/owasp/sanitizer/tools/
stage_to_maven_central.sh 75 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/
makefile 0 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/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 177 ShaderProgram (const glw::Functions& gl, const ProgramSources& sources);
178 ShaderProgram (const RenderContext& renderCtx, const ProgramSources& sources);
192 void init (const glw::Functions& gl, const ProgramSources& sources);
289 std::vector<std::string> sources[SHADERTYPE_LAST]; member in struct:glu::ProgramSources
301 ProgramSources& operator<< (const ShaderSource& shaderSource) { sources[shaderSource.shaderType].push_back(shaderSource.source); return *this; }
319 ProgramSources sources; local
320 sources.sources[SHADERTYPE_VERTEX].push_back(vertexSrc);
321 sources.sources[SHADERTYPE_FRAGMENT].push_back(fragmentSrc)
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/site-packages/setoolsgui/networkx/algorithms/centrality/tests/
test_betweenness_centrality_subset.py 13 sources=[0],
26 sources=[0],
38 sources=[0],
50 sources=[0],
65 sources=[0],
82 sources=[0],
100 sources=[0],
136 sources=[0],
155 sources=[0],
170 sources=[0]
    [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...]
  /dalvik/dx/src/com/android/dx/cf/code/
RopperMachine.java 300 // The sources have to be retrieved before super.run() gets called.
301 RegisterSpecList sources = getSources(opcode, stackPointer); local
302 int sourceCount = sources.size();
348 RegisterSpec src = sources.get(i);
388 insn = new ThrowingCstInsn(rop, pos, sources, catches,
473 sources = RegisterSpecList.make(objectReg);
490 rop = Rops.ropFor(ropOpcode, destType, sources, cst);
533 TypeBearer firstType = sources.get(0).getTypeBearer();
534 TypeBearer lastType = sources.get(1).getTypeBearer();
537 advice.hasConstantOperation(rop, sources.get(0)
674 RegisterSpecList sources; local
    [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
PhiTypeResolver.java 129 RegisterSpecList sources = insn.getSources(); local
135 int szSources = sources.size();
137 RegisterSpec rs = sources.get(i);
158 RegisterSpec rs = sources.get(i);
179 sb.append(sources.get(i).toString());
  /external/dexmaker/src/dx/java/com/android/dx/ssa/
DeadCodeRemover.java 102 RegisterSpecList sources = insnS.getSources(); local
104 int sz = sources.size();
107 RegisterSpec source = sources.get(i);
143 RegisterSpecList sources = insn.getSources(); local
144 int sourcesSize = sources.size();
146 // Delete this instruction completely if it has sources
153 RegisterSpec source = sources.get(j);
157 // Remove this instruction result from the sources of any phis
178 * are only used as sources in operations with no side effect or null
  /external/mesa3d/src/gallium/targets/egl-static/
SConscript 42 sources = [
49 sources.append('#src/egl/main/egl.def')
122 source = sources,
  /external/v8/tools/
js2c.py 295 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.
368 class Sources:
386 sources: List of Javascript-ish source files. A file named macros.py
390 An instance of Sources.
401 # Sort 'debugger' sources first.
405 result = Sources()
422 def BuildMetadata(sources, source_bytes, native_type)
    [all...]
  /bionic/libc/kernel/tools/
update_all.py 47 sources = [] variable
56 sources.append( "%s/%s" % (root,file) )
68 for path in sources:
  /ndk/tests/build/check-armeabi-v7a-prebuilts/
build.sh 254 GABIXX_LIBS=$NDK/sources/cxx-stl/gabi++/libs/$ABI
258 STLPORT_LIBS=$NDK/sources/cxx-stl/stlport/libs/$ABI
264 GNUSTL_LIBS=$NDK/sources/cxx-stl/gnu-libstdc++/$VERSION/libs/$ABI
  /external/mesa3d/src/gallium/winsys/svga/drm/
Makefile 7 include Makefile.sources
  /hardware/qcom/bt/msm8960/libbt-vendor/
vnd_buildcfg.mk 17 generated_sources := $(local-generated-sources-dir)
  /external/libdrm/freedreno/
Android.mk 5 include $(LOCAL_PATH)/Makefile.sources
  /external/libdrm/nouveau/
Android.mk 5 include $(LOCAL_PATH)/Makefile.sources
  /external/libdrm/radeon/
Android.mk 5 include $(LOCAL_PATH)/Makefile.sources
  /frameworks/base/tools/split-select/
Android.mk 27 sources := \ macro
79 LOCAL_SRC_FILES := $(sources)
  /frameworks/native/libs/binder/
Android.mk 15 # we have the common sources, plus some device-specific stuff
16 sources := \ macro
46 LOCAL_SRC_FILES := $(sources)
58 LOCAL_SRC_FILES := $(sources)
  /hardware/broadcom/libbt/
vnd_buildcfg.mk 1 generated_sources := $(local-generated-sources-dir)
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/site-packages/setoolsgui/networkx/algorithms/centrality/
betweenness_subset.py 24 def betweenness_centrality_subset(G,sources,targets,
33 where `S` is the set of sources, `T` is the set of targets,
45 sources: list of nodes
46 Nodes to use as sources for shortest paths in betweenness
81 betweenness_centrality_subset(G,sources=G.nodes(),targets=G.nodes()).
95 for s in sources:
106 def edge_betweenness_centrality_subset(G,sources,targets,
115 where `S` is the set of sources, `T` is the set of targets,
125 sources: list of nodes
126 Nodes to use as sources for shortest paths in betweennes
    [all...]
  /external/guava/guava/src/com/google/common/io/
ByteSource.java 87 * This method is a temporary method provided for easing migration from suppliers to sources and
154 * <p>For some sources, such as a file, this method may use a more efficient implementation. Note
351 * the source will contain the concatenated data from the streams of the underlying sources.
356 * @param sources the sources to concatenate
360 public static ByteSource concat(Iterable<? extends ByteSource> sources) {
361 return new ConcatenatedByteSource(sources);
366 * the source will contain the concatenated data from the streams of the underlying sources.
373 * iterator eagerly fetches data for each source when iterated (rather than producing sources
377 * @param sources the sources to concatenat
591 private final Iterable<? extends ByteSource> sources; field in class:ByteSource.ConcatenatedByteSource
    [all...]

Completed in 420 milliseconds

1 2 3 45 6 7 8 91011>>