/external/clang/test/Modules/Inputs/ |
incomplete_mod_missing.h | 1 extern int *missing;
|
/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/lldb/test/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/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/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'
|
/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
|
/external/libpng/ |
autogen.sh | 8 # missing. They are instantiated with autoreconf --force --install. 77 config.sub configure depcomp install-sh ltmain.sh missing test-driver" 133 # Presence of one of these does not *invalidate* missing, but absence 146 # Either everything is missing or everything is there, the --maintainer option 170 missing= 173 test -f "$file" || missing=1 176 test -z "$missing" || {
|
/external/libpng/scripts/ |
checksym.awk | 24 missing = "error"# log an error on missing symbols 50 FILENAME==master && $1==";missing" && NF==2{ 51 # This allows the master file to control how missing symbols 55 missing = $2 130 # missing in export list too, so ok 137 # is an error too (see the setting of 'missing' at the start), 140 if (missing != "ignore") { 142 print "png.h:", missing ": missing symbols:", unexported "-" o- [all...] |
/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/chromium_org/media/cast/framer/ |
cast_message_builder.cc | 150 // Are we missing packets? 171 PacketIdSet missing; local 175 next_expected_frame_id, last_frame, &missing); 176 if (!missing.empty()) { 179 std::make_pair(next_expected_frame_id, missing)); 183 missing.insert(kRtcpCastAllPacketsLost); 184 cast_msg_.missing_frames_and_packets_[next_expected_frame_id] = missing;
|
/external/bluetooth/bluedroid/test/suite/ |
Android.mk | 39 LOCAL_CFLAGS += -std=c99 -Wall -Wno-unused-parameter -Wno-missing-field-initializers -Werror
|
/external/clang/test/Sema/ |
invalid-struct-init.c | 6 expected-warning {{type specifier missing, defaults to 'int'}}
|
/system/core/libion/tests/ |
Android.mk | 22 LOCAL_CFLAGS += -g -Wall -Werror -std=gnu++11 -Wno-missing-field-initializers
|
/system/core/libsync/tests/ |
Android.mk | 24 LOCAL_CFLAGS += -g -Wall -Werror -std=gnu++11 -Wno-missing-field-initializers -Wno-sign-compare
|
/device/generic/goldfish/opengl/system/gralloc/ |
Android.mk | 10 LOCAL_CFLAGS += -Wno-missing-field-initializers
|
/external/chromium_org/third_party/webrtc/modules/audio_coding/main/acm2/ |
nack.h | 32 // arrived is considered lost, and should be labeled as "missing" (the size of 35 // "late." A "late" packet with sequence number K is changed to "missing" any 87 // Get a list of "missing" packets which have expected time-to-play larger 103 bool missing) 106 is_missing(missing) {} 112 // A guess about the timestamp of the missing packet, it is used for 115 // missing packet. However, the risk of this is low, and in case of such 116 // errors, there will be a minor misestimation in time-to-play of missing 120 // True if the packet is considered missing. Otherwise indicates packet is 157 // update the list. That is; some packets will change from late to missing, [all...] |