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

1 23 4 5 6 7 8 91011>>

  /frameworks/base/core/java/com/android/internal/inputmethod/
LocaleUtils.java 186 * @param sources Source items to be filtered.
195 @NonNull List<T> sources,
202 final int sourceSize = sources.size();
204 final Locale locale = extractor.get(sources.get(i));
223 dest.add(sources.get(entry.mIndex));
  /frameworks/base/media/java/android/media/
AudioRecordingConfiguration.java 59 // matches the sources that return false in MediaRecorder.isSystemOnlyAudioSource(source)
75 // documented return values match the sources that return false
126 final AudioPortConfig[] sources = patch.sources(); local
127 if ((sources != null) && (sources.length > 0)) {
128 // not supporting multiple sources, so just look at the first source
129 final int devId = sources[0].port().id();
  /frameworks/base/tools/aapt2/
Android.mk 24 sources := \ macro
74 sources += Format.proto
145 protoIncludes := $(call generated-sources-dir-for,STATIC_LIBRARIES,libaapt2,HOST)
165 LOCAL_SRC_FILES := $(sources)
  /frameworks/compile/libbcc/tools/bcc/
Main.cpp 190 std::vector<bcc::Source*> sources; local
198 sources.push_back(source);
216 sources, sourcesAndSlots, fusedKernelNames,
  /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);
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
SCCP.java 166 RegisterSpecList sources = insn.getSources(); local
169 int sourceSize = sources.size();
173 int sourceReg = sources.get(i).getReg();
242 RegisterSpecList sources = insn.getSources(); local
252 RegisterSpec specA = sources.get(0);
259 if (sources.size() == 2) {
260 RegisterSpec specB = sources.get(1);
269 if (cA != null && sources.size() == 1) {
368 RegisterSpecList sources = insn.getSources(); local
369 int regA = sources.get(0).getReg()
638 RegisterSpecList sources = insn.getSources(); local
    [all...]
  /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/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
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...]
  /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);
407 glu::ProgramSources sources; local
408 sources << glu::VertexSource(simpleVtxFrag)
412 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...]
es31fTessellationGeometryInteractionTests.cpp 259 glu::ProgramSources sources; local
261 sources << glu::VertexSource(getVertexSource())
267 sources << glu::GeometrySource(getGeometrySource());
270 const glu::ShaderProgram program (m_context.getRenderContext(), sources);
560 glu::ProgramSources sources; local
562 sources << glu::VertexSource(getVertexSource())
567 sources << glu::TessellationControlSource(getTessellationControlSource())
571 const glu::ShaderProgram program (m_context.getRenderContext(), 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/dexmaker/src/dx/java/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...]
  /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
SCCP.java 167 RegisterSpecList sources = insn.getSources(); local
170 int sourceSize = sources.size();
174 int sourceReg = sources.get(i).getReg();
243 RegisterSpecList sources = insn.getSources(); local
253 RegisterSpec specA = sources.get(0);
260 if (sources.size() == 2) {
261 RegisterSpec specB = sources.get(1);
270 if (cA != null && sources.size() == 1) {
369 RegisterSpecList sources = insn.getSources(); local
370 int regA = sources.get(0).getReg()
639 RegisterSpecList sources = insn.getSources(); local
    [all...]
  /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...]
  /frameworks/av/services/audiopolicy/common/managerdefinitions/include/
Serializer.h 141 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...]
  /dalvik/dx/src/com/android/dx/ssa/back/
SsaToRop.java 197 RegisterSpecList sources = insn.getSources(); local
199 int sz = sources.size();
202 RegisterSpec source = sources.get(i);
  /external/dexmaker/src/dx/java/com/android/dx/ssa/back/
SsaToRop.java 198 RegisterSpecList sources = insn.getSources(); local
200 int sz = sources.size();
203 RegisterSpec source = sources.get(i);

Completed in 1110 milliseconds

1 23 4 5 6 7 8 91011>>