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

1 2 3 45 6 7 8 91011>>

  /prebuilts/tools/common/m2/repository/org/jetbrains/kotlin/kotlin-gradle-plugin-core/0.13.1513/
kotlin-gradle-plugin-core-0.13.1513.jar 
  /prebuilts/tools/common/m2/repository/org/jetbrains/kotlin/kotlin-gradle-plugin-core/0.13.1514/
kotlin-gradle-plugin-core-0.13.1514.jar 
  /prebuilts/tools/common/m2/repository/org/jetbrains/kotlin/kotlin-gradle-plugin-core/1.0.0/
kotlin-gradle-plugin-core-1.0.0.jar 
  /prebuilts/tools/common/m2/repository/org/jetbrains/kotlin/kotlin-gradle-plugin-core/1.0.0-beta-4584/
kotlin-gradle-plugin-core-1.0.0-beta-4584.jar 
  /prebuilts/tools/common/m2/repository/org/jetbrains/kotlin/kotlin-gradle-plugin-core/1.0.0-rc-1036/
kotlin-gradle-plugin-core-1.0.0-rc-1036.jar 
  /dalvik/dx/src/com/android/dx/ssa/
EscapeAnalysis.java 349 * Handles phi uses of new objects. Will merge together the sources of a phi
425 RegisterSpecList sources = use.getSources(); local
426 if (sources.get(0).getReg() == def.getReg()) {
427 int setIndex = findSetIndex(sources.get(1));
436 int setIndex = findSetIndex(sources.get(0));
568 RegisterSpecList sources; local
576 sources = use.getSources();
577 indexReg = ((CstLiteralBits) sources.get(1).getTypeBearer());
586 insertExceptionThrow(next, sources.get(1), deletedInsns);
593 sources = use.getSources()
    [all...]
SsaBasicBlock.java 614 RegisterSpecList sources = RegisterSpecList.make(source); local
617 SourcePosition.NO_INFO, result, sources), this);
637 RegisterSpecList sources = RegisterSpecList.make(source); local
640 SourcePosition.NO_INFO, result, sources), this);
701 // Record all registers used as sources in this block.
869 * phi removal so that results don't overwrite sources that are used.
    [all...]
  /dalvik/dx/src/com/android/dx/ssa/back/
FirstFitLocalCombiningAllocator.java 522 * Handles all insns that want a register range for their sources.
796 * @param insn {@code non-null;} insn whos sources to process
801 RegisterSpecList sources = insn.getSources(); local
802 int szSources = sources.size();
806 RegisterSpec source = sources.get(i);
835 if (-1 != sources.indexOfRegister(similarReg)) {
848 * instruction's sources. First, try to center the range around
849 * sources that have already been mapped to rop registers. If that fails,
852 * @param insn {@code non-null;} the insn whose sources need to
857 RegisterSpecList sources = insn.getSources() local
1030 RegisterSpecList sources = insn.getSources(); local
1134 RegisterSpecList sources = insn.getSources(); local
    [all...]
  /external/deqp/modules/egl/
teglImageFormatTests.cpp 92 glu::ProgramSources sources; local
94 sources << glu::VertexSource(vertexSource) << glu::FragmentSource(fragmentSource);
96 return sources;
    [all...]
  /external/deqp/modules/gles2/functional/
es2fShaderApiTests.cpp 90 void setShaderSources (glu::Shader& shader, const ShaderSources& sources)
92 std::vector<const char*> cStrings (sources.strings.size(), 0);
94 for (size_t ndx = 0; ndx < sources.strings.size(); ndx++)
95 cStrings[ndx] = sources.strings[ndx].c_str();
97 if (sources.lengths.size() > 0)
98 shader.setSources((int)cStrings.size(), &cStrings[0], &sources.lengths[0]);
664 void insertRandomNullTermStrings (ShaderSources& sources)
667 std::vector<int> indices (sources.strings.size(), 0);
669 DE_ASSERT(sources.lengths.size() > 0);
670 DE_ASSERT(sources.lengths.size() == sources.strings.size())
729 ShaderSources sources; local
    [all...]
  /external/deqp/modules/gles2/performance/
es2pShaderOptimizationTests.cpp 117 glu::ProgramSources sources; member in struct:deqp::gles2::Performance::__anon10231::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::__anon10516::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/dexmaker/src/dx/java/com/android/dx/ssa/
EscapeAnalysis.java 350 * Handles phi uses of new objects. Will merge together the sources of a phi
426 RegisterSpecList sources = use.getSources(); local
427 if (sources.get(0).getReg() == def.getReg()) {
428 int setIndex = findSetIndex(sources.get(1));
437 int setIndex = findSetIndex(sources.get(0));
569 RegisterSpecList sources; local
577 sources = use.getSources();
578 indexReg = ((CstLiteralBits) sources.get(1).getTypeBearer());
587 insertExceptionThrow(next, sources.get(1), deletedInsns);
594 sources = use.getSources()
    [all...]
SsaBasicBlock.java 615 RegisterSpecList sources = RegisterSpecList.make(source); local
618 SourcePosition.NO_INFO, result, sources), this);
638 RegisterSpecList sources = RegisterSpecList.make(source); local
641 SourcePosition.NO_INFO, result, sources), this);
702 // Record all registers used as sources in this block.
870 * phi removal so that results don't overwrite sources that are used.
    [all...]
  /external/dexmaker/src/dx/java/com/android/dx/ssa/back/
FirstFitLocalCombiningAllocator.java 443 * Handles all insns that want a register range for their sources.
717 * @param insn {@code non-null;} insn whos sources to process
722 RegisterSpecList sources = insn.getSources(); local
723 int szSources = sources.size();
727 RegisterSpec source = sources.get(i);
756 if (-1 != sources.indexOfRegister(similarReg)) {
769 * instruction's sources. First, try to center the range around
770 * sources that have already been mapped to rop registers. If that fails,
773 * @param insn {@code non-null;} the insn whose sources need to
778 RegisterSpecList sources = insn.getSources() local
917 RegisterSpecList sources = insn.getSources(); local
1021 RegisterSpecList sources = insn.getSources(); local
    [all...]
  /external/okhttp/okhttp/src/main/java/com/squareup/okhttp/internal/
DiskLruCache.java 769 private final Source[] sources; field in class:Snapshot
772 private Snapshot(String key, long sequenceNumber, Source[] sources, long[] lengths) {
775 this.sources = sources;
794 return sources[index];
803 for (Source in : sources) {
    [all...]
  /external/tlsdate/src/
tlsdate.h 66 /* Sync sources in order of "reliability" */
132 struct source *sources; member in struct:opts
  /frameworks/base/packages/SystemUI/src/com/android/systemui/egg/
MLand.java 258 int sources = dev.getSources(); local
261 return (((sources & InputDevice.SOURCE_GAMEPAD) == InputDevice.SOURCE_GAMEPAD)
262 || ((sources & InputDevice.SOURCE_JOYSTICK) == InputDevice.SOURCE_JOYSTICK));
    [all...]
  /libcore/ojluni/src/main/java/java/util/jar/
JarVerifier.java 550 List sources = new ArrayList(); local
553 sources.add(mapSignersToCodeSource(url, (CodeSigner[]) signers.get(i)));
556 sources.add(mapSignersToCodeSource(url, null));
558 return (CodeSource[]) sources.toArray(new CodeSource[sources.size()]);
577 CodeSource[] sources = mapSignersToCodeSources(cs.getLocation(), getJarCodeSigners(), true); local
579 for (int i = 0; i < sources.length; i++) {
580 sourceList.add(sources[i]);
  /packages/apps/TvSettings/Settings/src/com/android/tv/settings/accessories/
BluetoothDevicePairer.java 172 int sources = device.getSources(); local
176 if ((sources & InputDevice.SOURCE_DPAD) == InputDevice.SOURCE_DPAD) {
180 if ((sources & InputDevice.SOURCE_GAMEPAD) == InputDevice.SOURCE_GAMEPAD) {
184 if ((sources & InputDevice.SOURCE_KEYBOARD) == InputDevice.SOURCE_KEYBOARD) {
  /packages/experimental/LoaderApp/src/com/android/loaderapp/fragments/
ContactFragment.java 24 import com.android.loaderapp.model.Sources;
334 final Sources sources = Sources.getInstance(context); local
349 ContactsSource contactsSource = sources.getInflatedSource(accountType,
367 final DataKind kind = sources.getKindOrFallback(accountType, mimeType,
411 final DataKind imKind = sources.getKindOrFallback(accountType,
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/gle2/
IncludeFinder.java 423 List<ResourceFile> sources = layout.getSourceFileList(); local
424 for (ResourceFile source : sources) {
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/manifest/
ManifestInfo.java 889 List<IPath> sources = BaseProjectHelper.getSourceClasspaths(javaProject); local
    [all...]
  /prebuilts/tools/common/offline-m2/com/android/tools/sdklib/25.2.0-alpha4/
sdklib-25.2.0-alpha4.jar 
  /prebuilts/tools/common/offline-m2/com/android/tools/sdklib/25.2.0-beta1/
sdklib-25.2.0-beta1.jar 

Completed in 3371 milliseconds

1 2 3 45 6 7 8 91011>>