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

1 23 4 5

  /cts/tools/signature-tools/src/signature/converter/doclet/
DocletToSigConverter.java 106 SigApi sources = new SigApi(name, visibility); local
107 sources.setPackages(packages);
108 return sources;
  /dalvik/dx/src/com/android/dx/ssa/
SsaMethod.java 466 * Adds specified insn to the uses list for all of its sources.
516 * @param oldSources {@code null-ok;} list of sources that were
527 RegisterSpecList sources = insn.getSources(); local
528 int szNew = sources.size();
531 int reg = sources.get(i).getReg();
538 * {@code oldSources} (rather than the sources currently
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/bison/src/
ielr.c 103 bitset sources = bitset_create (ngotos, BITSET_FIXED); local
141 if (i != source && !bitset_test (sources, source))
143 bitset_set (sources, source);
159 BITSET_FOR_EACH (biter_source, sources, source, 0)
164 bitset_zero (sources);
166 bitset_free (sources);
    [all...]
  /external/chromium/chrome/browser/history/
expire_history_backend_unittest.cc 903 VisitSourceMap sources; local
    [all...]
  /external/dexmaker/src/dx/java/com/android/dx/ssa/
SsaMethod.java 466 * Adds specified insn to the uses list for all of its sources.
516 * @param oldSources {@code null-ok;} list of sources that were
527 RegisterSpecList sources = insn.getSources(); local
528 int szNew = sources.size();
531 int reg = sources.get(i).getReg();
538 * {@code oldSources} (rather than the sources currently
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/main/java/com/google/dexmaker/
Code.java 516 RegisterSpecList sources = RegisterSpecList.make(a.spec(), b.spec()); local
519 addInstruction(new PlainInsn(rop, sourcePosition, target.spec(), sources));
521 addInstruction(new ThrowingInsn(rop, sourcePosition, sources, catches));
    [all...]
  /external/freetype/src/base/
ftdbgmem.c 79 * We don't need a resizable array for the memory sources, because
129 FT_MemSource sources[FT_MEM_SOURCE_BUCKETS]; member in struct:FT_MemTableRec_
397 /* remove all sources */
403 for ( source = table->sources[i]; source != NULL; source = next )
409 table->sources[i] = NULL;
466 pnode = &table->sources[hash % FT_MEM_SOURCE_BUCKETS];
930 FT_MemSource* bucket = table->sources;
932 FT_MemSource* sources; local
947 sources = (FT_MemSource*)ft_mem_table_alloc(
948 table, sizeof ( *sources ) * count )
    [all...]
  /external/webkit/Source/WebCore/inspector/front-end/
SourceFile.js 160 var sources = []; variable
163 sources.push(source);
164 if (sources.length < scripts.length)
169 this._concatenateScriptsContent(scripts, sources);
175 _concatenateScriptsContent: function(scripts, sources)
209 appendChunk(sources[i], scripts[i]);
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.6/sysroot/usr/include/sound/
soc-dapm.h 282 struct list_head sources; member in struct:snd_soc_dapm_widget
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.7-4.6/sysroot/usr/include/sound/
soc-dapm.h 282 struct list_head sources; member in struct:snd_soc_dapm_widget
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/manifest/
ManifestInfo.java 749 List<IPath> sources = BaseProjectHelper.getSourceClasspaths(javaProject); local
752 for (IPath path : sources) {
  /dalvik/dx/src/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/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/openfst/src/include/fst/extensions/pdt/
expand.h 758 slist<StateId> sources; local
762 sources.push_front(set_iter.Element());
764 for (typename slist<StateId>::const_iterator sources_iter = sources.begin();
765 sources_iter != sources.end();
    [all...]
  /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...]
  /dalvik/dx/src/com/android/dx/cf/code/
Ropper.java 1122 RegisterSpecList sources; local
    [all...]
  /frameworks/opt/telephony/src/java/com/android/internal/telephony/gsm/
GsmMmiCode.java 1194 String sources[] = {"{0}", "{1}", "{2}"}; local
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/lint/
EclipseLintClient.java 782 List<File> sources = null; local
797 sources = new ArrayList<File>(entries.length);
813 sources.add(workspacePathToFile(entry.getPath()));
827 // the library sources. Lint on the other hand wants to process
    [all...]
  /cts/tests/tests/text/src/android/text/cts/
TextUtilsTest.java 1621 String sources[] = new String[] { "string" }; local
    [all...]
  /external/icu4c/test/intltest/
transtst.cpp 3541 int32_t sources = Transliterator::countAvailableSources(); local
    [all...]

Completed in 1824 milliseconds

1 23 4 5