HomeSort by relevance Sort by last modified time
    Searched defs:sources (Results 51 - 75 of 1071) sorted by null

1 23 4 5 6 7 8 91011>>

  /prebuilts/jdk/jdk8/darwin-x86/sample/nio/multicast/
Reader.java 64 String[] sources = s.split(","); local
65 for (int i=0; i<sources.length; i++) {
66 list.add(InetAddress.getByName(sources[i]));
  /prebuilts/jdk/jdk8/linux-x86/sample/nio/multicast/
Reader.java 64 String[] sources = s.split(","); local
65 for (int i=0; i<sources.length; i++) {
66 list.add(InetAddress.getByName(sources[i]));
  /prebuilts/ndk/r16/sources/third_party/shaderc/third_party/glslang/glslang/MachineIndependent/
Scan.h 56 sources(reinterpret_cast<const unsigned char* const *>(s)), // up to this point, common usage is "char*", but now we need positive 8-bit characters
108 // N.B. Sources can have a length of 0.
120 return sources[sourceToRead][charToRead];
140 if (sources[currentSource][chIndex] == '\n') {
251 const unsigned char* const *sources; // array of strings; must be converted to positive values on use, to avoid aliasing with -1 as EndOfInput member in class:glslang::TInputScanner
  /prebuilts/ndk/r16/sources/third_party/shaderc/third_party/spirv-tools/source/
cfa.h 296 auto sources = TraversalRoots(ordered_blocks, succ_func, pred_func); local
314 (*augmented_successors_map)[pseudo_entry_block] = sources;
315 for (auto block : sources) {
  /external/turbine/javatests/com/google/turbine/lower/
IntegrationTestSupport.java 443 Map<String, String> sources,
456 for (Map.Entry<String, String> entry : sources.entrySet()) {
522 final Map<String, String> sources; field in class:IntegrationTestSupport.TestInput
525 public TestInput(Map<String, String> sources, Map<String, String> classes) {
526 this.sources = sources;
531 Map<String, String> sources = new LinkedHashMap<>(); local
539 sources.put(sourceName, Joiner.on('\n').join(lines) + "\n");
552 sources.put(sourceName, Joiner.on('\n').join(lines) + "\n");
562 sources.put(sourceName, Joiner.on('\n').join(lines) + "\n")
    [all...]
  /dalvik/dexgen/src/com/android/dexgen/rop/code/
Insn.java 29 * list of actual sources and result registers/values, and additional
42 /** {@code non-null;} specs for all the sources of this instruction */
43 private final RegisterSpecList sources; field in class:Insn
51 * @param sources {@code non-null;} specs for all the sources
54 RegisterSpecList sources) {
63 if (sources == null) {
64 throw new NullPointerException("sources == null");
70 this.sources = sources;
    [all...]
  /dalvik/dx/src/com/android/dx/rop/code/
Insn.java 27 * list of actual sources and result registers/values, and additional
40 /** {@code non-null;} specs for all the sources of this instruction */
41 private final RegisterSpecList sources; field in class:Insn
49 * @param sources {@code non-null;} specs for all the sources
52 RegisterSpecList sources) {
61 if (sources == null) {
62 throw new NullPointerException("sources == null");
68 this.sources = sources;
    [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);
139 RegisterSpecList sources = insn.getSources(); local
140 int sourcesSize = sources.size();
142 // Delete this instruction completely if it has sources
149 RegisterSpec source = sources.get(j);
153 // Remove this instruction result from the sources of any phis
174 * are only used as sources in operations with no side effect or null
  /device/generic/goldfish-opengl/shared/OpenglCodecCommon/
GLSharedGroup.h 117 std::vector<std::string> sources; member in struct:ShaderData
  /external/boringssl/src/tool/
digest.cc 362 std::vector<Source> sources; local
379 sources.push_back(Source(Source::STDIN));
432 sources.push_back(Source(*it));
435 if (sources.empty()) {
436 sources.push_back(Source(Source::STDIN));
442 for (auto &source : sources) {
446 for (auto &source : sources) {
  /external/deqp/external/openglcts/modules/gl/
gl4cShaderAtomicCounterOpsTests.cpp 208 glu::ProgramSources sources; local
213 sources.sources[i].push_back(m_shaders[i]);
216 m_program = new glu::ShaderProgram(context.getRenderContext(), sources);
224 sourcesCompute.sources[glu::SHADERTYPE_COMPUTE].push_back(m_shaders[glu::SHADERTYPE_COMPUTE]);
328 glu::ProgramSources sources; local
329 sources.sources[glu::SHADERTYPE_VERTEX].push_back(vs);
330 sources.sources[glu::SHADERTYPE_FRAGMENT].push_back(fs)
    [all...]
gl4cShaderBallotTests.cpp 271 glu::ProgramSources sources; local
272 sources.sources[glu::SHADERTYPE_VERTEX].push_back(vs);
273 sources.sources[glu::SHADERTYPE_FRAGMENT].push_back(fs);
274 glu::ShaderProgram renderShader(context.getRenderContext(), sources);
341 sourcesRender.sources[i].push_back(shader);
356 sourcesCompute.sources[glu::SHADERTYPE_COMPUTE].push_back(shaderCompute);
gl4cShaderViewportLayerArrayTests.cpp 199 glu::ProgramSources sources; local
200 sources.sources[glu::SHADERTYPE_VERTEX].push_back(m_vs);
203 sources.sources[glu::SHADERTYPE_TESSELLATION_CONTROL].push_back(m_tcs);
204 sources.sources[glu::SHADERTYPE_TESSELLATION_EVALUATION].push_back(m_tes);
208 sources.sources[glu::SHADERTYPE_GEOMETRY].push_back(m_gs);
210 sources.sources[glu::SHADERTYPE_FRAGMENT].push_back(m_fs)
    [all...]
  /external/deqp/framework/opengl/
gluShaderLibrary.hpp 126 glu::ProgramSources sources; member in struct:glu::sl::ProgramSpecification
128 deUint32 activeStages; // Has an effect only if sources.separable == true, must be 0 otherwise
  /external/deqp/modules/gles3/functional/
es3fShaderFragDataTests.cpp 117 glu::ProgramSources sources; local
121 sources << glu::VertexSource(
134 sources << glu::FragmentSource(string(
143 return sources;
  /external/deqp/modules/gles31/functional/
es31fNegativeShaderDirectiveTests.cpp 47 void verifyProgram(NegativeTestContext& ctx, glu::ProgramSources sources, ExpectResult expect)
52 const glu::ShaderProgram program (ctx.getRenderContext(), sources);
441 glu::ProgramSources sources; local
442 sources << glu::VertexSource(simpleVtxFrag)
446 verifyProgram(ctx, sources, EXPECT_RESULT_FAIL);
es31fUniformLocationTests.cpp 225 const glu::ProgramSources sources = genShaderSources(uniformList); local
226 const glu::ShaderProgram program (m_renderCtx, sources);
    [all...]
  /external/deqp/modules/gles31/stress/
es31sTessellationGeometryInteractionTests.cpp 138 glu::ProgramSources sources; local
141 sources << glu::VertexSource(getVertexSource())
166 sources << glu::TessellationControlSource(getTessellationControlSource(tessGenLevel))
271 sources << glu::GeometrySource(getGeometryShaderSource(numPrimitivesPerInvocation, geometryShaderInvocations));
282 m_program = new glu::ShaderProgram(m_context.getRenderContext(), sources);
  /external/guava/guava/src/com/google/common/io/
ByteSource.java 139 * <p>For some sources, such as a file, this method may use a more efficient implementation. Note
336 * the source will contain the concatenated data from the streams of the underlying sources.
341 * @param sources the sources to concatenate
345 public static ByteSource concat(Iterable<? extends ByteSource> sources) {
346 return new ConcatenatedByteSource(sources);
351 * the source will contain the concatenated data from the streams of the underlying sources.
358 * iterator eagerly fetches data for each source when iterated (rather than producing sources
362 * @param sources the sources to concatenat
576 private final Iterable<? extends ByteSource> sources; field in class:ByteSource.ConcatenatedByteSource
    [all...]
  /external/mesa3d/src/mesa/drivers/dri/i965/
brw_vec4_builder.h 330 * Select \p src0 if the comparison of both sources with the given
612 const unsigned sources = (inst->src[1].file == BAD_FILE ? 1 : 2); local
614 inst->mlen = sources;
  /external/turbine/java/com/google/turbine/options/
TurbineOptions.java 33 private final ImmutableList<String> sources; field in class:TurbineOptions
51 ImmutableList<String> sources,
67 this.sources = checkNotNull(sources, "sources must not be null");
85 public ImmutableList<String> sources() { method in class:TurbineOptions
86 return sources;
173 private final ImmutableList.Builder<String> sources = ImmutableList.builder(); field in class:TurbineOptions.Builder
194 sources.build(),
224 public Builder addSources(Iterable<String> sources) {
    [all...]
  /external/turbine/javatests/com/google/turbine/deps/
AbstractTransitiveTest.java 53 protected abstract Path runTurbine(ImmutableList<Path> sources, ImmutableList<Path> classpath)
63 private final ImmutableList.Builder<Path> sources = ImmutableList.builder(); field in class:AbstractTransitiveTest.SourceBuilder
73 sources.add(path);
78 return sources.build();
150 List<String> sources = local
166 .addSources(sources)
  /frameworks/av/services/audiopolicy/common/managerdefinitions/include/
Serializer.h 143 static const char sources[]; /**< sources: all source that can be involved in this route. */ member in struct:android::RouteTraits::Attributes
  /frameworks/base/media/mca/filterfw/native/core/
gl_frame.cpp 206 std::vector<const GLFrame*> sources; local
207 sources.push_back(frame);
208 GetIdentity()->Process(sources, this);
377 std::vector<const GLFrame*> sources; local
378 sources.push_back(this);
385 GetIdentity()->Process(sources, &target);
  /packages/experimental/LoaderApp/src/com/android/loaderapp/model/
Sources.java 51 public class Sources extends BroadcastReceiver implements OnAccountsUpdateListener {
52 private static final String TAG = "Sources";
63 private static SoftReference<Sources> sInstance = null;
66 * Requests the singleton instance of {@link Sources} with data bound from
70 public static synchronized Sources getInstance(Context context) {
71 Sources sources = sInstance == null ? null : sInstance.get(); local
72 if (sources == null) {
73 sources = new Sources(context)
    [all...]

Completed in 901 milliseconds

1 23 4 5 6 7 8 91011>>