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

1 23 4 5 6 7 8 91011>>

  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/distutils/tests/
setuptools_extension.py 36 sources = []
37 for s in self.sources:
39 sources.append(s[:-3]+'c')
41 sources.append(s)
42 self.sources = sources
test_dep_util.py 34 sources = os.path.join(tmpdir, 'sources')
36 os.mkdir(sources)
38 one = os.path.join(sources, 'one')
39 two = os.path.join(sources, 'two')
51 sources = os.path.join(tmpdir, 'sources')
52 os.mkdir(sources)
53 one = os.path.join(sources, 'one')
54 two = os.path.join(sources, 'two'
    [all...]
test_build_py.py 21 sources = self.mkdtemp()
22 f = open(os.path.join(sources, "__init__.py"), "w")
27 f = open(os.path.join(sources, "README.txt"), "w")
36 "package_dir": {"pkg": sources}})
38 dist.script_name = os.path.join(sources, "setup.py")
44 dist.package_dir = {"pkg": sources}
73 sources = self.mkdtemp()
74 open(os.path.join(sources, "__init__.py"), "w").close()
76 testdir = os.path.join(sources, "doc")
80 os.chdir(sources)
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/distutils/tests/
setuptools_extension.py 36 sources = []
37 for s in self.sources:
39 sources.append(s[:-3]+'c')
41 sources.append(s)
42 self.sources = sources
test_dep_util.py 34 sources = os.path.join(tmpdir, 'sources')
36 os.mkdir(sources)
38 one = os.path.join(sources, 'one')
39 two = os.path.join(sources, 'two')
51 sources = os.path.join(tmpdir, 'sources')
52 os.mkdir(sources)
53 one = os.path.join(sources, 'one')
54 two = os.path.join(sources, 'two'
    [all...]
  /dalvik/dx/src/com/android/dx/rop/code/
PlainInsn.java 38 * @param sources {@code non-null;} specs for all the sources
41 RegisterSpec result, RegisterSpecList sources) {
42 super(opcode, position, result, sources);
100 RegisterSpecList sources = getSources(); local
101 int szSources = sources.size();
107 TypeBearer lastType = sources.get(szSources - 1).getTypeBearer();
111 TypeBearer firstType = sources.get(0).getTypeBearer();
114 RegisterSpecList newSources = sources.withoutFirst();
125 RegisterSpecList newSources = sources.withoutLast()
    [all...]
Rop.java 61 /** {@code non-null;} types of all the sources of this operation */
62 private final TypeList sources; field in class:Rop
86 * @param sources {@code non-null;} types of all the sources of this operation
94 public Rop(int opcode, Type result, TypeList sources,
101 if (sources == null) {
102 throw new NullPointerException("sources == null");
120 this.sources = sources;
134 * @param sources {@code non-null;} types of all the sources of this operatio
    [all...]
Insn.java 27 * list of actual sources and result registers/values, and additional
40 /** {@code non-null;} specs for all the sources of this instruction */
41 private final RegisterSpecList sources; field in class:Insn
49 * @param sources {@code non-null;} specs for all the sources
52 RegisterSpecList sources) {
61 if (sources == null) {
62 throw new NullPointerException("sources == null");
68 this.sources = sources;
    [all...]
CstInsn.java 35 * @param sources {@code non-null;} specs for all the sources
39 RegisterSpecList sources, Constant cst) {
40 super(opcode, position, result, sources);
  /external/dexmaker/src/dx/java/com/android/dx/rop/code/
PlainInsn.java 38 * @param sources {@code non-null;} specs for all the sources
41 RegisterSpec result, RegisterSpecList sources) {
42 super(opcode, position, result, sources);
100 RegisterSpecList sources = getSources(); local
101 int szSources = sources.size();
107 TypeBearer lastType = sources.get(szSources - 1).getTypeBearer();
111 TypeBearer firstType = sources.get(0).getTypeBearer();
114 RegisterSpecList newSources = sources.withoutFirst();
125 RegisterSpecList newSources = sources.withoutLast()
    [all...]
Rop.java 61 /** {@code non-null;} types of all the sources of this operation */
62 private final TypeList sources; field in class:Rop
86 * @param sources {@code non-null;} types of all the sources of this operation
94 public Rop(int opcode, Type result, TypeList sources,
101 if (sources == null) {
102 throw new NullPointerException("sources == null");
120 this.sources = sources;
134 * @param sources {@code non-null;} types of all the sources of this operatio
    [all...]
Insn.java 27 * list of actual sources and result registers/values, and additional
40 /** {@code non-null;} specs for all the sources of this instruction */
41 private final RegisterSpecList sources; field in class:Insn
49 * @param sources {@code non-null;} specs for all the sources
52 RegisterSpecList sources) {
61 if (sources == null) {
62 throw new NullPointerException("sources == null");
68 this.sources = sources;
    [all...]
CstInsn.java 35 * @param sources {@code non-null;} specs for all the sources
39 RegisterSpecList sources, Constant cst) {
40 super(opcode, position, result, sources);
  /external/chromium_org/native_client_sdk/src/build_tools/sdk_tools/
config.py 35 self.sources = []
60 logging.warn('Only whitelisted sources are allowed. Ignoring \"%s\".' % (
64 if source in self.sources:
67 self.sources.append(source)
70 if source not in self.sources:
73 self.sources.remove(source)
76 if not self.sources:
77 logging.info('No sources to remove.')
79 self.sources = []
  /dalvik/dexgen/src/com/android/dexgen/rop/code/
Rop.java 61 /** {@code non-null;} types of all the sources of this operation */
62 private final TypeList sources; field in class:Rop
86 * @param sources {@code non-null;} types of all the sources of this operation
94 public Rop(int opcode, Type result, TypeList sources,
101 if (sources == null) {
102 throw new NullPointerException("sources == null");
120 this.sources = sources;
134 * @param sources {@code non-null;} types of all the sources of this operatio
    [all...]
DexTranslationAdvice.java 38 * instruction that requires its sources to be in order and contiguous.
92 RegisterSpecList sources) {
95 && totalRopWidth(sources) >= MIN_INVOKE_IN_ORDER;
101 * @param sources {@code non-null;} list of SSA registers
104 private int totalRopWidth(RegisterSpecList sources) {
105 int sz = sources.size();
109 total += sources.get(i).getCategory();
CstInsn.java 35 * @param sources {@code non-null;} specs for all the sources
39 RegisterSpecList sources, Constant cst) {
40 super(opcode, position, result, sources);
  /ndk/build/tools/
dev-defaults.sh 16 # Location of the STLport sources, relative to the NDK root directory
17 STLPORT_SUBDIR=sources/cxx-stl/stlport
19 # Location of the GAbi++ sources, relative to the NDK root directory
20 GABIXX_SUBDIR=sources/cxx-stl/gabi++
24 GNUSTL_SUBDIR=sources/cxx-stl/gnu-libstdc++
28 LIBCXX_SUBDIR=sources/cxx-stl/llvm-libc++
31 LIBCXXABI_SUBDIR=sources/cxx-stl/llvm-libc++abi/libcxxabi
33 # Location of the libportable sources, relative to the NDK root directory
34 LIBPORTABLE_SUBDIR=sources/android/libportable
36 # Location of the gccunwind sources, relative to the NDK root director
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/distutils/
dep_util.py 33 def newer_pairwise(sources, targets):
35 than its corresponding target. Return a pair of lists (sources,
39 if len(sources) != len(targets):
40 raise ValueError, "'sources' and 'targets' must be same length"
42 # build a pair of lists (sources, targets) where source is newer
45 for source, target in zip(sources, targets):
52 def newer_group(sources, target, missing='error'):
54 listed in 'sources'.
57 than every file in 'sources', return false; otherwise return true.
77 for source in sources
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/distutils/
dep_util.py 33 def newer_pairwise(sources, targets):
35 than its corresponding target. Return a pair of lists (sources,
39 if len(sources) != len(targets):
40 raise ValueError, "'sources' and 'targets' must be same length"
42 # build a pair of lists (sources, targets) where source is newer
45 for source, target in zip(sources, targets):
52 def newer_group(sources, target, missing='error'):
54 listed in 'sources'.
57 than every file in 'sources', return false; otherwise return true.
77 for source in sources
    [all...]
  /external/chromium_org/build/android/
generate_emma_html.py 60 sources = []
64 sources.extend(json.load(sf))
65 sources = [os.path.join(constants.DIR_SOURCE_ROOT, s) for s in sources]
66 print 'Sources: %s' % sources
74 source_args = ['-sp', ','.join(sources)]
  /external/chromium_org/third_party/mesa/src/src/gallium/targets/libgl-xlib/
SConscript 34 sources = [
38 # The sources depend on the python-generated GL API files/headers.
39 env.Depends(sources, glapi_headers)
52 source = sources,
  /external/mesa3d/src/gallium/targets/libgl-xlib/
SConscript 34 sources = [
38 # The sources depend on the python-generated GL API files/headers.
39 env.Depends(sources, glapi_headers)
52 source = sources,
  /external/chromium_org/native_client_sdk/src/build_tools/sdk_tools/command/
sources.py 24 if config.sources:
25 print 'Installed sources:'
26 for s in config.sources:
29 print 'No external sources installed.'
  /ndk/tests/device/test-gabi++/jni/
Android.mk 3 include $(NDK_ROOT)/sources/cxx-stl/gabi++/tests/Android.mk
8 # /s/mydroid/ndk/sources/cxx-stl/gabi++/tests/catch_const_pointer_nullptr.cpp: In function 'void test5()':
9 # /s/mydroid/ndk/sources/cxx-stl/gabi++/tests/catch_const_pointer_nullptr.cpp:81:6: error: dominator of 3 should be 6, not 4
12 # /s/mydroid/ndk/sources/cxx-stl/gabi++/tests/catch_const_pointer_nullptr.cpp:81:6: internal compiler error: in verify_dominators, at dominance.c:1047

Completed in 308 milliseconds

1 23 4 5 6 7 8 91011>>