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

12 3 4 5 6 7 8 91011>>

  /toolchain/binutils/binutils-2.25/ld/testsuite/ld-elf/
ehdr_start-weak.d 2 #ld: -e _start -T ehdr_start-missing.t
  /external/libxml2/python/
setup.py 22 def missing(file): function
68 if not missing(dir + "/libxml2/libxml/tree.h"):
78 if not missing(dir + "/iconv.h"):
99 if missing("libxml2-py.c") or missing("libxml2.py"):
125 if missing("libxslt-py.c") or missing("libxslt.py"):
126 if missing("xsltgenerator.py") or missing("libxslt-api.xml"):
155 if not missing(dir + "/libxslt/xsltconfig.h")
    [all...]
setup.py.in 22 def missing(file): function
68 if not missing(dir + "/libxml2/libxml/tree.h"):
78 if not missing(dir + "/iconv.h"):
99 if missing("libxml2-py.c") or missing("libxml2.py"):
125 if missing("libxslt-py.c") or missing("libxslt.py"):
126 if missing("xsltgenerator.py") or missing("libxslt-api.xml"):
155 if not missing(dir + "/libxslt/xsltconfig.h")
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/distutils/
dep_util.py 51 def newer_group(sources, target, missing='error'):
57 'missing' controls what we do when a source file is missing; the
59 if it is "ignore", we silently drop any missing source files; if it is
60 "newer", any missing source files make us assume that 'target' is
62 carry out commands that wouldn't work because inputs are missing, but
78 if missing == 'error': # blow up when we stat() the file
80 elif missing == 'ignore': # missing source dropped from
82 elif missing == 'newer': # missing source means target is
    [all...]
  /prebuilts/gdb/darwin-x86/lib/python2.7/distutils/
dep_util.py 52 def newer_group(sources, target, missing='error'):
58 'missing' controls what we do when a source file is missing; the
60 if it is "ignore", we silently drop any missing source files; if it is
61 "newer", any missing source files make us assume that 'target' is
63 carry out commands that wouldn't work because inputs are missing, but
79 if missing == 'error': # blow up when we stat() the file
81 elif missing == 'ignore': # missing source dropped from
83 elif missing == 'newer': # missing source means target i
    [all...]
  /prebuilts/gdb/linux-x86/lib/python2.7/distutils/
dep_util.py 52 def newer_group(sources, target, missing='error'):
58 'missing' controls what we do when a source file is missing; the
60 if it is "ignore", we silently drop any missing source files; if it is
61 "newer", any missing source files make us assume that 'target' is
63 carry out commands that wouldn't work because inputs are missing, but
79 if missing == 'error': # blow up when we stat() the file
81 elif missing == 'ignore': # missing source dropped from
83 elif missing == 'newer': # missing source means target i
    [all...]
  /prebuilts/go/darwin-x86/test/fixedbugs/
bug013.go 15 bug13.go:4: missing '
18 bug13.go:5: missing '
issue3705.go 9 func init() // ERROR "missing function body|cannot declare init"
  /prebuilts/go/linux-x86/test/fixedbugs/
bug013.go 15 bug13.go:4: missing '
18 bug13.go:5: missing '
issue3705.go 9 func init() // ERROR "missing function body|cannot declare init"
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/distutils/
dep_util.py 52 def newer_group(sources, target, missing='error'):
58 'missing' controls what we do when a source file is missing; the
60 if it is "ignore", we silently drop any missing source files; if it is
61 "newer", any missing source files make us assume that 'target' is
63 carry out commands that wouldn't work because inputs are missing, but
79 if missing == 'error': # blow up when we stat() the file
81 elif missing == 'ignore': # missing source dropped from
83 elif missing == 'newer': # missing source means target i
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/distutils/
dep_util.py 52 def newer_group(sources, target, missing='error'):
58 'missing' controls what we do when a source file is missing; the
60 if it is "ignore", we silently drop any missing source files; if it is
61 "newer", any missing source files make us assume that 'target' is
63 carry out commands that wouldn't work because inputs are missing, but
79 if missing == 'error': # blow up when we stat() the file
81 elif missing == 'ignore': # missing source dropped from
83 elif missing == 'newer': # missing source means target i
    [all...]
  /system/core/trusty/storage/tests/
Android.mk 21 LOCAL_CFLAGS += -g -Wall -Werror -std=gnu++11 -Wno-missing-field-initializers
  /bionic/libc/tools/
check-symbols.py 68 missing = expected_symbols - actual_symbols
69 if len(missing) > 0:
70 sys.stderr.write('%d missing %s in %s for %s:\n' % (len(missing), functions_or_variables, library, arch))
71 for miss in sorted(missing):
80 return len(missing) == 0
  /external/llvm/test/MC/AsmParser/
macro-qualifier-diagnostics.s 5 # CHECK: error: missing parameter qualifier for 'parameter' in macro 'missing_qualifier'
11 # CHECK: error: missing parameter qualifier for 'parameter' in macro 'non_identifier_qualifier'
33 # CHECK: error: missing value for required parameter 'parameter' in macro 'missing_required_parameter'
42 # CHECK: error: missing value for required parameter 'second' in macro 'missing_second_required_argument'
51 # CHECK: error: missing value for required parameter 'second' in macro 'second_third_required'
55 # CHECK: error: missing value for required parameter 'third' in macro 'second_third_required'
61 # CHECK: error: missing value for required parameter 'second' in macro 'second_third_required'
  /prebuilts/go/darwin-x86/test/interface/
explicit.go 46 i = t // ERROR "incompatible|missing M method"
50 i2 = i // ERROR "incompatible|missing N method"
53 i2 = I2(i) // ERROR "invalid|missing N method"
78 var m1 M = ii // ERROR "incompatible|missing"
81 var m3 = M(ii) // ERROR "invalid|missing"
100 var b1 B1 = &T2{} // ERROR "incompatible|missing _ method"
101 var b2 B2 = &T2{} // ERROR "incompatible|missing _ method"
  /prebuilts/go/linux-x86/test/interface/
explicit.go 46 i = t // ERROR "incompatible|missing M method"
50 i2 = i // ERROR "incompatible|missing N method"
53 i2 = I2(i) // ERROR "invalid|missing N method"
78 var m1 M = ii // ERROR "incompatible|missing"
81 var m3 = M(ii) // ERROR "invalid|missing"
100 var b1 B1 = &T2{} // ERROR "incompatible|missing _ method"
101 var b2 B2 = &T2{} // ERROR "incompatible|missing _ method"
  /external/autotest/client/site_tests/security_SysVIPC/
security_SysVIPC.py 79 missing = self.expected_shm.difference(observed_shm)
81 if missing:
83 logging.error(missing)
91 missing = self.expected_sem.difference(observed_sem)
93 if missing:
95 logging.error(missing)
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/unittest/
util.py 30 missing = []
37 missing.append(e)
56 missing.extend(expected[i:])
59 return missing, unexpected
69 missing = []
76 missing.append(item)
93 return missing, unexpected
96 return missing, actual
  /prebuilts/gdb/darwin-x86/lib/python2.7/unittest/
util.py 30 missing = []
37 missing.append(e)
56 missing.extend(expected[i:])
59 return missing, unexpected
69 missing = []
76 missing.append(item)
93 return missing, unexpected
96 return missing, actual
  /prebuilts/gdb/linux-x86/lib/python2.7/unittest/
util.py 30 missing = []
37 missing.append(e)
56 missing.extend(expected[i:])
59 return missing, unexpected
69 missing = []
76 missing.append(item)
93 return missing, unexpected
96 return missing, actual
  /prebuilts/go/darwin-x86/test/syntax/
semi1.go 10 if x; y // ERROR "missing .*{.* after if clause|undefined"
semi2.go 10 switch x; y // ERROR "missing .*{.* after switch clause|undefined"
semi3.go 10 for x; y; z // ERROR "missing .*{.* after for clause|undefined"
  /prebuilts/go/linux-x86/test/syntax/
semi1.go 10 if x; y // ERROR "missing .*{.* after if clause|undefined"

Completed in 655 milliseconds

12 3 4 5 6 7 8 91011>>