HomeSort by relevance Sort by last modified time
    Searched refs:sources (Results 26 - 50 of 160) sorted by null

12 3 4 5 6 7

  /dalvik/dx/src/com/android/dx/cf/code/
RopperMachine.java 287 // The sources have to be retrieved before super.run() gets called.
288 RegisterSpecList sources = getSources(opcode, stackPointer); local
289 int sourceCount = sources.size();
335 RegisterSpec src = sources.get(i);
375 insn = new ThrowingCstInsn(rop, pos, sources, catches,
460 sources = RegisterSpecList.make(objectReg);
477 rop = Rops.ropFor(ropOpcode, destType, sources, cst);
520 TypeBearer lastType = sources.get(1).getTypeBearer();
524 sources.get(0), sources.get(1)))
640 RegisterSpecList sources; local
    [all...]
  /packages/apps/QuickSearchBox/src/com/android/quicksearchbox/
MultiSourceCorpus.java 30 * Base class for corpora backed by multiple sources.
38 // calculated values based on properties of sources:
46 Executor executor, Source... sources) {
51 for (Source source : sources) {
83 * Gets the sources to query for suggestions for the given input.
87 * @return The sources to query.
90 List<Source> sources = new ArrayList<Source>(); local
93 sources.add(candidate);
96 return sources;
139 List<Source> sources = getSourcesToQuery(query, onlyCorpus) local
    [all...]
  /frameworks/base/libs/binder/
Android.mk 15 # we have the common sources, plus some device-specific stuff
16 sources := \ macro
39 LOCAL_SRC_FILES := $(sources)
45 LOCAL_SRC_FILES := $(sources)
  /cts/tools/signature-tools/src/signature/converter/
Main.java 35 Set<String> sources = new HashSet<String>(); local
41 sources.add(args[at]);
75 Visibility.PROTECTED, sources, packages));
  /cts/tools/signature-tools/test/signature/converter/dex/
DexTestConverter.java 38 Set<JavaSource> sources = new HashSet<JavaSource>(); local
40 sources.add(new JavaSource(unit.getName(), unit.getSource()));
42 DexFile dexFile = toDexUtil.getAllFrom(sources);
  /dalvik/dx/src/com/android/dx/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...]
  /development/tools/findunused/
findunusedresources 43 sources=$app/src
46 sources="$sources $app/tests"
50 sources="$sources $app/samples"
61 find $resources $sources $app/AndroidManifest.xml -type f -print |xargs cat | tr -d '\n ' > /tmp/everything$$
  /system/extras/tests/bionic/libc/
Android.mk 63 sources := \ macro
84 $(call host-test, $(sources))
85 $(call device-test, $(sources))
96 sources := common/test_dlopen_null.c \ macro
100 $(call host-test, $(sources))
103 $(call device-test, $(sources))
106 sources := \ macro
110 $(call host-test, $(sources))
111 $(call device-test, $(sources))
115 sources := macro
127 sources := \\ macro
207 sources := \\ macro
    [all...]
  /dalvik/dx/src/com/android/dx/ssa/
PhiInsn.java 47 private RegisterSpecList sources; field in class:PhiInsn
81 * Updates the TypeBearers of all the sources (phi operands) to be
98 sources = null;
132 // Un-cache sources, in case someone has already called getSources().
133 sources = null;
178 * Gets sources. Constructed lazily from phi operand data structures and
181 * @return {@code non-null;} sources list
184 if (sources != null) {
185 return sources;
194 sources = new RegisterSpecList(szSources)
    [all...]
PhiTypeResolver.java 130 RegisterSpecList sources = insn.getSources(); local
136 int szSources = sources.size();
138 RegisterSpec rs = sources.get(i);
159 RegisterSpec rs = sources.get(i);
180 sb.append(sources.get(i).toString());
SCCP.java 156 RegisterSpecList sources = insn.getSources(); local
159 int sourceSize = sources.size();
163 int sourceReg = sources.get(i).getReg();
230 RegisterSpecList sources = insn.getSources(); local
231 int regA = sources.get(0).getReg();
241 if (sources.size() == 1) {
244 } else { /* sources.size() == 2 */
245 int regB = sources.get(1).getReg();
462 * Update the sources RegisterSpec's of all non-move uses.
471 RegisterSpecList sources = insn.getSources() local
    [all...]
  /external/webkit/JavaScriptCore/
wscript 35 sources = []
41 sources += ['jit/ExecutableAllocatorWin.cpp', 'runtime/MarkStackWin.cpp']
47 # build the derived sources
82 source = sources,
  /sdk/sdkmanager/libs/sdkuilib/tests/com/android/sdkuilib/internal/repository/
UpdaterLogicTest.java 68 RepoSource[] sources = null; local
72 ArchiveInfo fai = mul.findPlatformDependency(a2, out, selected, remote, sources, locals);
81 ArchiveInfo ai2 = mul.findPlatformDependency(a2, out, selected, remote, sources, locals);
104 RepoSource[] sources = null; local
108 ArchiveInfo fai = mul.findToolsDependency(p2, out, selected, remote, sources, locals);
117 ArchiveInfo ai2 = mul.findToolsDependency(p2, out, selected, remote, sources, locals);
  /bionic/libc/kernel/tools/
update_all.py 44 sources = [] variable
49 sources.append( "%s/%s" % (root,file) )
60 for path in sources:
  /external/webkit/WebKitTools/Scripts/
report-include-statistics 37 my %sources;
51 $sources{$file} = $File::Find::name if $file !~ /\.h/;
86 for my $file (keys %sources) {
  /external/qemu/distrib/libpng-1.2.19/
Makefile 14 include $(LIBPNG_DIR)/sources.make
  /development/pdk/doxygen_config/
overrideconfig.conf 9 INPUT = sources \
  /external/webkit/WebKitTools/CodeCoverage/
run-generate-coverage-data 47 sources = []
55 sources.append( os.path.join(root, file) )
57 return sources
189 def analyze_coverage(sources,data,dirs,runid,base):
191 sources actual source files relative to src_dir e.g kdelibs/kdecore/klibloader.cpp
199 result = cov.analyze_coverage(gcov, sources, runid, data, base)
214 print "Collection Sources and preparing data tree"
219 # Build a number of sources from the candidates. This is a Set for the poor
232 sources = files.keys() variable
234 print "Found %d candidates" % (len(sources))
    [all...]
  /cts/tools/dex-tools/test/dex/reader/util/
JavaSourceToDexUtil.java 51 public dex.structure.DexFile getAllFrom(Set<JavaSource> sources) throws IOException{
52 return getFrom(sources, null);
62 public dex.structure.DexFile getFrom(Set<JavaSource> sources,
64 Set<MemoryByteCode> byteCodeInMemory = compileToByteCode(sources);
  /ndk/build/core/
setup-imports.mk 35 $(call import-add-path-optional,$(NDK_ROOT)/sources)
36 $(call import-add-path-optional,$(NDK_ROOT)/../development/ndk/sources)
  /system/extras/tests/bionic/libstdc++/
Android.mk 58 sources := \ macro
71 $(call host-test, $(sources))
80 sources += test_cstdint.cpp
82 $(call device-test, $(sources))
  /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/WebCore/bindings/v8/
ScriptController.cpp 208 void ScriptController::evaluateInIsolatedWorld(unsigned worldID, const Vector<ScriptSourceCode>& sources)
210 m_proxy->evaluateInIsolatedWorld(worldID, sources, 0);
213 void ScriptController::evaluateInIsolatedWorld(unsigned worldID, const Vector<ScriptSourceCode>& sources, int extensionGroup)
215 m_proxy->evaluateInIsolatedWorld(worldID, sources, extensionGroup);
374 Vector<ScriptSourceCode> sources; local
375 sources.append(source);
377 evaluateInIsolatedWorld(0, sources);
  /packages/apps/Contacts/src/com/android/contacts/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/
FirstFitLocalCombiningAllocator.java 443 * Handles all insns that want a register range for their sources.
665 * @param insn {@code non-null;} insn whos sources to process
670 RegisterSpecList sources = insn.getSources(); local
671 int szSources = sources.size();
675 RegisterSpec source = sources.get(i);
704 if (-1 != sources.indexOfRegister(similarReg)) {
717 * instruction's sources. First, try to center the range around
718 * sources that have already been mapped to rop registers. If that fails,
721 * @param insn {@code non-null;} the insn whose sources need to
726 RegisterSpecList sources = insn.getSources() local
865 RegisterSpecList sources = insn.getSources(); local
    [all...]

Completed in 306 milliseconds

12 3 4 5 6 7