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

1 2 3 4 5 6 7 8 91011>>

  /external/icu/android_icu4j/src/main/tests/android/icu/dev/test/util/
TestLocaleValidity.java 189 LinkedHashSet<String> missing = new LinkedHashSet(KeyTypeData.getBcp47Keys()); local
190 missing.removeAll(foundKeys);
191 if (!assertEquals("Missing keys", Collections.EMPTY_SET, missing)) {
192 // print out template for missing cases for adding
193 for (String key : missing) {
TestUtilities.java 138 String missing = ""; local
141 if (missing.length() != 0) missing += ", ";
142 missing += RelationName[i];
145 errln("Not all ContainmentRelations checked: " + missing);
  /external/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/util/
TestLocaleValidity.java 186 LinkedHashSet<String> missing = new LinkedHashSet(KeyTypeData.getBcp47Keys()); local
187 missing.removeAll(foundKeys);
188 if (!assertEquals("Missing keys", Collections.EMPTY_SET, missing)) {
189 // print out template for missing cases for adding
190 for (String key : missing) {
  /external/tensorflow/tensorflow/compiler/tf2xla/kernels/
reshape_op.cc 72 errors::InvalidArgument("Reshape cannot infer the missing input size "
75 const int64 missing = input_shape.num_elements() / product; variable
77 ctx, product * missing == input_shape.num_elements(),
82 shape.set_dim(unknown_index, missing);
  /external/tensorflow/tensorflow/core/kernels/
reshape_op.h 66 errors::InvalidArgument("Reshape cannot infer the missing input size "
69 const int64 missing = input.NumElements() / product; variable
71 context, product * missing == input.NumElements(),
76 shape.set_dim(unknown_index, missing);
reshape_util.cc 83 errors::InvalidArgument("reshape cannot infer the missing "
86 const int64 missing = dense_size / product; local
88 context, product * missing == dense_size,
93 output_shape.set_dim(unknown_index, missing);
mkl_reshape_op.cc 76 errors::InvalidArgument("Reshape cannot infer the missing input size "
79 const int64 missing = input.NumElements() / product; variable
81 context, product * missing == input.NumElements(),
86 shape.set_dim(unknown_index, missing);
201 errors::InvalidArgument("Reshape cannot infer the missing input size "
204 const int64 missing = nelems / product; variable
206 context, product * missing == nelems,
211 shape.set_dim(unknown_index, missing);
  /toolchain/binutils/binutils-2.27/bfd/
cpu-m68k.c 175 find the one with the smallest number of missing features. */
180 unsigned extra = 99, missing = 99; local
199 if (this_missing < missing)
201 missing = this_missing;
  /cts/tests/signature/src/android/signature/cts/
FailureType.java 30 static FailureType missing(JDiffClassDescription description) { method in class:FailureType
AbstractApiChecker.java 66 resultObserver.notifyFailure(FailureType.missing(classDescription),
  /external/jemalloc/test/unit/
ckh.c 30 const char *missing = "A string not in the hash table."; local
72 assert_true(ckh_search(&ckh, missing, NULL, NULL),
  /packages/apps/DocumentsUI/tests/common/com/android/documentsui/bots/
SidebarBot.java 108 List<String> missing = new ArrayList<>(); local
111 missing.add(label);
114 if (!missing.isEmpty()) {
116 "Expected roots " + Arrays.asList(labels) + ", but missing " + missing);
  /art/test/922-properties/src/art/
Test922.java 40 Set<String> missing = new TreeSet<String>(recommendedProperties); local
41 missing.removeAll(retained);
42 System.out.println("Missing recommended properties: " + missing);
  /external/guice/core/test/com/google/inject/
ErrorHandlingTest.java 72 @Inject @Named("missing")
73 static List<String> missing = null; field in class:ErrorHandlingTest
  /external/icu/icu4j/main/tests/translit/src/com/ibm/icu/dev/test/util/
TestUtilities.java 135 String missing = ""; local
138 if (missing.length() != 0) missing += ", ";
139 missing += RelationName[i];
142 errln("Not all ContainmentRelations checked: " + missing);
  /external/libxml2/python/
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...]
  /frameworks/layoutlib/create/src/com/android/tools/layoutlib/create/
DependencyFinder.java 71 * [1]: map { missing class FQCN => set of FQCN class that uses it. }
82 Map<String, Set<String>> missing = findMissingClasses(deps, zipClasses.keySet()); local
86 result.add(missing);
91 * Prints dependencies to the current logger, found stuff and missing stuff.
96 Map<String, Set<String>> missing = result.get(1); local
115 // Now print all missing dependences in the format:
116 // -Missing <FQCN>:
120 mLog.info("------ %d Entries missing from source JARs", missing.size());
123 for (Entry<String, Set<String>> entry : missing.entrySet())
139 Map<String, Set<String>> missing = result.get(1); local
242 Map<String, Set<String>> missing = new TreeMap<>(); local
    [all...]
  /bionic/libc/kernel/uapi/linux/
auto_fs4.h 54 struct autofs_packet_missing missing; member in union:autofs_packet_union
  /external/kernel-headers/original/uapi/linux/
auto_fs4.h 101 /* Indirect mount missing and expire requests. */
105 /* Direct mount missing and expire requests */
119 struct autofs_packet_missing missing; member in union:autofs_packet_union
  /external/libmojo/third_party/jinja2/
utils.py 31 # special singleton representing missing values for the runtime
32 missing = type('MissingType', (), {'__repr__': lambda x: 'missing'})() variable
  /external/webrtc/webrtc/modules/remote_bitrate_estimator/test/
packet_sender.cc 409 uint16_t missing = local
415 if (missing > 0) {
  /external/webrtc/webrtc/modules/rtp_rtcp/source/
receive_statistics_impl.cc 249 int32_t missing = 0; local
251 missing = (exp_since_last - rec_since_last);
257 static_cast<uint8_t>(255 * missing / exp_since_last);
263 cumulative_loss_ += missing;
  /packages/apps/TV/src/com/android/tv/search/
AutoValue_LocalSearchProvider_SearchResult.java 323 String missing = ""; local
325 missing += " channelId";
328 missing += " isLive";
331 missing += " videoWidth";
334 missing += " videoHeight";
337 missing += " duration";
340 missing += " progressPercentage";
342 if (!missing.isEmpty()) {
343 throw new IllegalStateException("Missing required properties:" + missing);
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/sysroot/usr/include/linux/
auto_fs4.h 106 /* Indirect mount missing and expire requests. */
110 /* Direct mount missing and expire requests */
124 struct autofs_packet_missing missing; member in union:autofs_packet_union
  /external/opencv/ml/src/
mlrtrees.cpp 361 CvMat sample, missing; local
378 missing = cvMat( 1, dims, CV_8UC1, missing_ptr );
382 sample.data.fl += dims, missing.data.ptr += dims )
391 CV_CALL(predicted_node = tree->predict(&sample, &missing, true));
460 missing = cvMat( 1, dims, CV_8UC1, missing_ptr );
462 sample.data.fl += dims, missing.data.ptr += dims )
469 predct_resp = tree->predict(&sample, &missing, true)->value;
535 float CvRTrees::predict( const CvMat* sample, const CvMat* missing ) const
551 CvDTreeNode* predicted_node = trees[k]->predict( sample, missing );
568 result += trees[k]->predict( sample, missing )->value
    [all...]

Completed in 930 milliseconds

1 2 3 4 5 6 7 8 91011>>