/dalvik/dx/src/com/android/dx/ssa/ |
PhiInsn.java | 51 private RegisterSpecList sources; field in class:PhiInsn 86 * Updates the TypeBearers of all the sources (phi operands) to be 103 sources = null; 137 // Un-cache sources, in case someone has already called getSources(). 138 sources = null; 156 // Un-cache sources, in case someone has already called getSources(). 157 sources = null; 202 * Gets sources. Constructed lazily from phi operand data structures and 205 * @return {@code non-null;} sources list 209 if (sources != null) [all...] |
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
|
/development/tools/findunused/ |
findunusedresources | 44 sources=$app/src 47 sources="$sources $app/tests" 51 sources="$sources $app/samples" 62 find $resources $sources $app/AndroidManifest.xml -type f -print |xargs cat | tr -d '\n ' > /tmp/everything$$
|
/external/chromium_org/chrome/browser/invalidation/ |
invalidation_controller_android.cc | 33 std::vector<int> sources; local 37 sources.push_back(id->source()); 44 base::android::ToJavaIntArray(env, sources).obj(),
|
/external/chromium_org/chrome/test/chromedriver/ |
test_util.cc | 50 base::ScopedCFTypeRef<CFArrayRef> sources( 52 if (CFArrayGetCount(sources) != 1) 55 sources, 0);
|
/external/chromium_org/courgette/ |
encoded_program_unittest.cc | 41 courgette::SourceStreamSet sources; local 42 bool can_get_source_streams = sources.Init(buffer, length); 46 bool can_read = encoded2->ReadFrom(&sources);
|
/external/dexmaker/src/dx/java/com/android/dx/ssa/ |
LiteralOpUpgrader.java | 98 RegisterSpecList sources = insn.getSources(); 103 if (sources.size() != 2 ) { 112 if (isConstIntZeroOrKnownNull(sources.get(0))) { 113 replacePlainInsn(insn, sources.withoutFirst(), 115 } else if (isConstIntZeroOrKnownNull(sources.get(1))) { 116 replacePlainInsn(insn, sources.withoutLast(), 120 opcode, sources.get(0), sources.get(1))) { 124 opcode, sources.get(1), sources.get(0))) [all...] |
PhiInsn.java | 47 private RegisterSpecList sources; field in class:PhiInsn 82 * Updates the TypeBearers of all the sources (phi operands) to be 99 sources = null; 133 // Un-cache sources, in case someone has already called getSources(). 134 sources = null; 152 // Un-cache sources, in case someone has already called getSources(). 153 sources = null; 198 * Gets sources. Constructed lazily from phi operand data structures and 201 * @return {@code non-null;} sources list 205 if (sources != null) [all...] |
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
|
/external/owasp/sanitizer/tools/ |
stage_to_maven_central.sh | 75 requireFile "$JAR_NO_EXT"-sources.jar 85 -Dfiles="$JAR_NO_EXT"-sources.jar,"$JAR_NO_EXT"-javadoc.jar \ 87 -Dclassifiers=sources,javadoc \
|
/external/pdfium/core/src/fxcodec/libjpeg/ |
makefile | 0 sources = fpdfapi_jcapimin.c fpdfapi_jcapistd.c fpdfapi_jccoefct.c fpdfapi_jccolor.c fpdfapi_jcdctmgr.c fpdfapi_jchuff.c fpdfapi_jcinit.c fpdfapi_jcmainct.c fpdfapi_jcmarker.c fpdfapi_jcmaster.c \ 6 armsources=$(sources) 7 armsourcesc=$(sources) 1 sources = fpdfapi_jcapimin.c fpdfapi_jcapistd.c fpdfapi_jccoefct.c fpdfapi_jccolor.c fpdfapi_jcdctmgr.c fpdfapi_jchuff.c fpdfapi_jcinit.c fpdfapi_jcmainct.c fpdfapi_jcmarker.c fpdfapi_jcmaster.c \\ macro
|
/ndk/tests/build/check-armeabi-v7a-prebuilts/ |
build.sh | 224 GABIXX_LIBS=$NDK/sources/cxx-stl/gabi++/libs/$ABI 228 STLPORT_LIBS=$NDK/sources/cxx-stl/stlport/libs/$ABI 234 GNUSTL_LIBS=$NDK/sources/cxx-stl/gnu-libstdc++/$VERSION/libs/$ABI
|
/external/chromium_org/chrome/browser/resources/chromeos/chromevox/tools/ |
jsbundler.py | 75 '''An ordered list of sources without duplicates.''' 81 def Add(self, sources): 86 sources: A SourceWithPath or an iterable of such objects. 88 if isinstance(sources, SourceWithPaths): 89 sources = [sources] 90 for source in sources: 148 '''Reads all source specified on the command line, including sources 152 def EnsureSourceLoaded(in_path, sources): 153 if in_path not in sources [all...] |
/external/chromium_org/tools/gyp/pylib/gyp/generator/ |
analyzer.py | 56 def __AddSources(sources, base_path, base_path_components, result): 57 """Extracts valid sources from |sources| and adds them to |result|. Each 61 Such sources are ignored as it is assumed dependencies on them are expressed 64 for source in sources: 91 if 'sources' in target_dict: 92 __AddSources(target_dict['sources'], base_path, base_path_components, 108 sources: set of source files defined by this target. This includes inputs to 112 self.sources = [] 133 target.sources.extend(__ExtractSources(relative_target_name [all...] |
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/distutils/command/ |
build_clib.py | 171 sources = build_info.get('sources') 172 if sources is None or not isinstance(sources, (list, tuple)): 175 "'sources' must be present and must be " 178 filenames.extend(sources) 183 sources = build_info.get('sources') 184 if sources is None or not isinstance(sources, (list, tuple)) [all...] |
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/distutils/command/ |
build_clib.py | 171 sources = build_info.get('sources') 172 if sources is None or not isinstance(sources, (list, tuple)): 175 "'sources' must be present and must be " 178 filenames.extend(sources) 183 sources = build_info.get('sources') 184 if sources is None or not isinstance(sources, (list, tuple)) [all...] |
/dalvik/dx/src/com/android/dx/cf/code/ |
RopperMachine.java | 300 // The sources have to be retrieved before super.run() gets called. 301 RegisterSpecList sources = getSources(opcode, stackPointer); local 302 int sourceCount = sources.size(); 348 RegisterSpec src = sources.get(i); 388 insn = new ThrowingCstInsn(rop, pos, sources, catches, 473 sources = RegisterSpecList.make(objectReg); 490 rop = Rops.ropFor(ropOpcode, destType, sources, cst); 533 TypeBearer firstType = sources.get(0).getTypeBearer(); 534 TypeBearer lastType = sources.get(1).getTypeBearer(); 537 advice.hasConstantOperation(rop, sources.get(0) 674 RegisterSpecList sources; local [all...] |
/external/chromium_org/third_party/mesa/src/src/gallium/targets/egl-static/ |
SConscript | 42 sources = [ 49 sources.append('#src/egl/main/egl.def') 122 source = sources,
|
/external/mesa3d/src/gallium/targets/egl-static/ |
SConscript | 42 sources = [ 49 sources.append('#src/egl/main/egl.def') 122 source = sources,
|
/system/extras/tests/bionic/libc/ |
Android.mk | 63 sources := \ macro 85 $(call host-test, $(sources)) 86 $(call device-test, $(sources)) 115 sources := common/test_dlopen_null.c \ macro 119 $(call host-test, $(sources)) 122 $(call device-test, $(sources)) 127 sources := \ macro 136 $(call device-test, $(sources)) 140 sources := \ macro 144 $(call device-test, $(sources)) 213 sources := \\ macro [all...] |
/external/chromium_org/third_party/WebKit/Tools/Scripts/ |
report-include-statistics | 37 my %sources; 51 $sources{$file} = $File::Find::name if $file !~ /\.h/; 86 for my $file (keys %sources) {
|
/external/chromium_org/chrome/browser/media/ |
desktop_media_list_ash.cc | 93 // Iterate through the old sources to find the removed sources. 101 // Iterate through the new sources to find the added sources. 119 // Find the moved/changed sources. 149 std::vector<DesktopMediaListAsh::SourceDescription>* sources, 166 sources->push_back(window_source); 173 std::vector<DesktopMediaListAsh::SourceDescription>* sources) { 185 sources->insert(sources->begin(), screen_source) [all...] |
/external/chromium_org/content/browser/webui/ |
url_data_manager.cc | 71 URLDataSources sources; local 76 data_sources_->swap(sources); 78 for (size_t i = 0; i < sources.size(); ++i) 79 delete sources[i];
|
/external/chromium_org/third_party/mesa/src/src/gallium/winsys/svga/drm/ |
Makefile | 7 include Makefile.sources
|
/external/chromium_org/tools/gn/ |
copy_target_generator.cc | 33 if (target_->sources().empty()) { 34 *err_ = Err(function_call_, "Empty sources for copy command.", 35 "You have to specify at least one file to copy in the \"sources\"."); 42 "multiple sources to copy, use source expansion\n(see \"gn help "
|