/dalvik/dexgen/src/com/android/dexgen/rop/code/ |
FillArrayDataInsn.java | 47 * @param sources {@code non-null;} specs for all the sources 52 RegisterSpecList sources, 55 super(opcode, position, null, sources); 111 RegisterSpecList sources) { 114 sources, initValues, arrayType);
|
PlainCstInsn.java | 36 * @param sources {@code non-null;} specs for all the sources 40 RegisterSpec result, RegisterSpecList sources, 42 super(opcode, position, result, sources, cst); 79 RegisterSpecList sources) { 83 sources,
|
SwitchInsn.java | 38 * @param sources {@code non-null;} specs for all the sources 42 RegisterSpecList sources, IntList cases) { 43 super(opcode, position, result, sources); 103 RegisterSpecList sources) { 107 sources,
|
ThrowingCstInsn.java | 37 * @param sources {@code non-null;} specs for all the sources 42 RegisterSpecList sources, 44 super(opcode, position, null, sources, cst); 96 RegisterSpecList sources) { 99 sources,
|
ThrowingInsn.java | 59 * @param sources {@code non-null;} specs for all the sources 63 RegisterSpecList sources, 65 super(opcode, position, null, sources); 114 RegisterSpecList sources) { 117 sources,
|
/dalvik/dx/src/com/android/dx/rop/code/ |
ConservativeTranslationAdvice.java | 46 RegisterSpecList sources) {
|
FillArrayDataInsn.java | 46 * @param sources {@code non-null;} specs for all the sources 51 RegisterSpecList sources, 54 super(opcode, position, null, sources); 110 RegisterSpecList sources) { 113 sources, initValues, arrayType);
|
PlainCstInsn.java | 36 * @param sources {@code non-null;} specs for all the sources 40 RegisterSpec result, RegisterSpecList sources, 42 super(opcode, position, result, sources, cst); 79 RegisterSpecList sources) { 83 sources,
|
SwitchInsn.java | 38 * @param sources {@code non-null;} specs for all the sources 42 RegisterSpecList sources, IntList cases) { 43 super(opcode, position, result, sources); 103 RegisterSpecList sources) { 107 sources,
|
ThrowingInsn.java | 59 * @param sources {@code non-null;} specs for all the sources 63 RegisterSpecList sources, 65 super(opcode, position, null, sources); 114 RegisterSpecList sources) { 117 sources,
|
DexTranslationAdvice.java | 38 * instruction that requires its sources to be in order and contiguous. 105 RegisterSpecList sources) { 108 && totalRopWidth(sources) >= MIN_INVOKE_IN_ORDER; 114 * @param sources {@code non-null;} list of SSA registers 117 private int totalRopWidth(RegisterSpecList sources) { 118 int sz = sources.size(); 122 total += sources.get(i).getCategory();
|
/external/Reactive-Extensions/RxCpp/Rx/v2/examples/doxygen/ |
contains.cpp | 18 using namespace rxcpp::sources;
|
/external/Reactive-Extensions/RxCpp/Rx/v2/src/rxcpp/sources/ |
rx-empty.hpp | 32 namespace sources { namespace in namespace:rxcpp
|
rx-never.hpp | 25 namespace sources { namespace in namespace:rxcpp
|
/external/Reactive-Extensions/RxCpp/Rx/v2/test/ |
test.h | 13 namespace rxs=rxcpp::sources;
|
/external/boringssl/ |
crypto-sources.mk | 2 LOCAL_ADDITIONAL_DEPENDENCIES += $(LOCAL_PATH)/sources.mk 3 include $(LOCAL_PATH)/sources.mk
|
/external/mesa3d/src/gallium/drivers/freedreno/ |
Android.gen.mk | 27 intermediates := $(call local-generated-sources-dir)
|
/external/mesa3d/src/gallium/targets/graw-gdi/ |
SConscript | 20 sources = [ 35 source = sources,
|
/external/mesa3d/src/gallium/targets/graw-xlib/ |
SConscript | 25 sources = [ 40 source = sources,
|
/external/mesa3d/src/gbm/ |
Android.mk | 25 include $(LOCAL_PATH)/Makefile.sources
|
/external/python/setuptools/setuptools/ |
extension.py | 35 def __init__(self, name, sources, *args, **kw): 39 _Extension.__init__(self, name, sources, *args, **kw) 43 Replace sources with .pyx extensions to sources with the target 45 pre-converted sources but to prefer the .pyx sources. 53 self.sources = list(map(sub, self.sources))
|
/external/python/cpython3/Lib/distutils/tests/ |
test_build_py.py | 20 sources = self.mkdtemp() 21 f = open(os.path.join(sources, "__init__.py"), "w") 26 f = open(os.path.join(sources, "README.txt"), "w") 35 "package_dir": {"pkg": sources}}) 37 dist.script_name = os.path.join(sources, "setup.py") 43 dist.package_dir = {"pkg": sources} 70 sources = self.mkdtemp() 71 open(os.path.join(sources, "__init__.py"), "w").close() 73 testdir = os.path.join(sources, "doc") 77 os.chdir(sources) [all...] |
/external/v8/ |
genmakefiles.py | 24 def _writeBP(filename, module_name, sources): 25 if not sources: 26 raise ValueError('No sources for ' + filename) 38 ''').substitute({'module_name': module_name, 'srcs' : _bpList(sorted(sources))})) 44 sources = getSourcesFunc(None) 45 if not sources: 47 sources.add('src/setup-isolate-full.cc') 48 # sources.add('src/builtins/setup-builtins-internal.cc') 49 # sources.add('src/interpreter/setup-interpreter-internal.cc') 50 arm_src = list(getSourcesFunc('arm') - sources) [all...] |
/external/ltp/android/tools/ |
make_parser.py | 87 sources = self.GetRelativePathForExtensions(unparsed, ['o']) 102 assert len(sources) > 0 105 self.result.append("ar['%s'] = %s" % (target, sources)) 115 sources = self.GetRelativePathForExtensions(unparsed, ['c', 'o']) 128 assert len(sources) > 0 131 self.result.append("cc_compile['%s'] = %s" % (target, sources)) 134 if sources[0].endswith('.o'): 135 self.result.append("cc_link['%s'] = %s" % (target, sources)) 138 (target, sources))
|
/external/guice/core/test/com/google/inject/internal/ |
WeakKeySetUtils.java | 57 WeakKeySet set, Key<?> key, int expectedSources, Object... sources) { 60 for (Object source : sources) { 68 Set<Object> sources = set.getSources(key); local 70 if (!sources.contains(source)) { 75 Set<Object> sources = set.getSources(key); local 77 assertFalse(sources.contains(source));
|