HomeSort by relevance Sort by last modified time
    Searched refs:missing (Results 1 - 25 of 1303) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/clang/test/Modules/Inputs/
incomplete_mod_missing.h 1 extern int *missing;
  /external/chromium/third_party/libevent/
autogen.sh 11 automake --add-missing --copy
  /external/chromium_org/third_party/libevent/
autogen.sh 11 automake --add-missing --copy
  /ndk/tests/device/issue42891-boost-1_52/jni/boost/boost/iterator/detail/
config_undef.hpp 24 # error missing or nested #include config_def
  /external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/thirdparty/unittest2/
util.py 34 missing = []
41 missing.append(e)
60 missing.extend(expected[i:])
63 return missing, unexpected
72 missing = []
79 missing.append(item)
96 return missing, unexpected
99 return missing, actual
  /external/libpng/
autogen.sh 19 automake --force-missing --foreign -a -c
  /external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/thirdparty/coverage/
annotate.py 63 missing = analysis.missing
77 while j < len(missing) and missing[j] < lineno:
80 covered = j >= len(missing) or missing[j] > lineno
85 if i >= len(statements) and j >= len(missing):
87 elif i >= len(statements) or j >= len(missing):
89 elif statements[i] == missing[j]:
results.py 32 # Identify missing statements.
35 self.missing = sorted(set(self.statements) - set(exec1))
45 [len(v) for k,v in mba.items() if k not in self.missing]
55 n_missing=len(self.missing),
61 """The missing line numbers, formatted nicely.
66 return format_lines(self.statements, self.missing)
88 missing = [
93 return sorted(missing)
96 """Returns a sorted list of the executed arcs missing from the code."""
125 missing = self.arcs_missing(
    [all...]
  /bionic/libc/tools/
check-symbols.py 51 missing = expected_symbols - actual_symbols
52 if len(missing) > 0:
53 sys.stderr.write('%d missing %s in %s for %s:\n' % (len(missing), functions_or_variables, library, arch))
54 for miss in sorted(missing):
57 return len(missing) == 0
  /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...]
  /external/skia/tools/
verify_images_for_gm_results.py 145 missing = []
148 print 'Missing: %s, referenced by: \n %s' % (url, '\n '.join(urls[url]))
149 missing.append(url)
150 return missing
155 missing = VerifyURLs(urls)
156 if missing:
157 print 'Found %d Missing files.' % len(missing)
  /external/e2fsprogs/util/
gcc-wall-cleanup 19 /warning: missing initializer/d
  /prebuilts/python/darwin-x86/2.7.5/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/python/linux-x86/2.7.5/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/python/darwin-x86/2.7.5/lib/python2.7/email/
message.py 183 some other encoding is used, or the header is missing, or if the
290 Return None if the header is missing instead of raising an exception.
309 Does not raise an exception if the header is missing.
323 missing = object()
324 return self.get(name, missing) is not missing
360 is missing.
447 missing = object()
448 value = self.get('content-type', missing)
449 if value is missing
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/email/
message.py 183 some other encoding is used, or the header is missing, or if the
290 Return None if the header is missing instead of raising an exception.
309 Does not raise an exception if the header is missing.
323 missing = object()
324 return self.get(name, missing) is not missing
360 is missing.
447 missing = object()
448 value = self.get('content-type', missing)
449 if value is missing
    [all...]
  /external/clang/test/Sema/
invalid-struct-init.c 6 expected-warning {{type specifier missing, defaults to 'int'}}
  /external/chromium_org/net/quic/
quic_fec_group.cc 75 // We can revive if we're missing exactly 1 packet.
80 // We are finished if we are not missing any packets.
92 QuicPacketSequenceNumber missing = kNoSequenceNumber; local
95 // Is this packet missing?
97 missing = i;
101 DCHECK_NE(kNoSequenceNumber, missing);
111 header->packet_sequence_number = missing;
114 received_packets_.insert(missing);
  /external/ipsec-tools/
Android.mk 58 $(LOCAL_PATH)/src/racoon/missing \
67 LOCAL_CFLAGS += -Wno-sign-compare -Wno-missing-field-initializers
83 LOCAL_CFLAGS += -Wno-sign-compare -Wno-missing-field-initializers
  /bionic/libc/kernel/tools/
find_headers.py 106 missing = [] variable
109 missing.append(arch)
110 if len(missing) > 0:
112 for a in missing:
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/distutils/command/
check.py 88 Warns if any are missing.
92 missing = []
95 missing.append(attr)
97 if missing:
98 self.warn("missing required meta-data: %s" % ', '.join(missing))
101 self.warn("missing meta-data: if 'author' supplied, " +
105 self.warn("missing meta-data: if 'maintainer' supplied, " +
108 self.warn("missing meta-data: either (author and author_email) " +
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/distutils/command/
check.py 88 Warns if any are missing.
92 missing = []
95 missing.append(attr)
97 if missing:
98 self.warn("missing required meta-data: %s" % ', '.join(missing))
101 self.warn("missing meta-data: if 'author' supplied, " +
105 self.warn("missing meta-data: if 'maintainer' supplied, " +
108 self.warn("missing meta-data: either (author and author_email) " +
  /external/chromium_org/tools/gyp/test/lib/
TestCommon.py 184 missing = []
189 missing.append(f)
190 return existing, missing
229 existing, missing = separate_files(files)
231 if missing:
232 print "Missing files: `%s'" % string.join(missing, "', `")
235 self.fail_test(missing + unwritable)
263 missing = []
266 missing.append(line
    [all...]
  /development/host/windows/prebuilt/usb/
Android.mk 18 @adb kill-server || echo "adb appears to be missing"

Completed in 3964 milliseconds

1 2 3 4 5 6 7 8 91011>>