Home
last modified time | relevance | path

Searched refs:notFound (Results 1 – 8 of 8) sorted by relevance

/external/apache-commons-bcel/src/examples/
DPackage.java91 TreeMap<String, String> notFound = new TreeMap<String, String>(); field in Package
175 notFound.put(name, from); in go()
201 if (!notFound.isEmpty()) { in go()
202 System.err.println(notFound.size() + " classes could not be found"); in go()
204 while (!notFound.isEmpty()) { in go()
205 String name = notFound.firstKey(); in go()
206 System.err.println(name + " (" + notFound.remove(name) + ")"); in go()
/external/cldr/tools/cldr-unittest/src/org/unicode/cldr/unittest/
DTestDTDAttributes.java405 Set<String> notFound = new TreeSet<String>(dtdAttributes); in checkNodeData() local
406 notFound.removeAll(actualAttributes); in checkNodeData()
407 notFound.remove("draft"); in checkNodeData()
408 notFound.remove("references"); in checkNodeData()
409 notFound.remove("standard"); in checkNodeData()
410 notFound.remove("alt"); in checkNodeData()
411 notFound.remove("validSubLocales"); in checkNodeData()
412 if (notFound.size() != 0) { in checkNodeData()
414 + "\tnotFound:\t" + notFound + "\tfound:\t" in checkNodeData()
/external/deqp/scripts/android/
Dinstall_apk.py246 for notFound in notFounds:
247 print("Couldn't find device matching serial '%s'" % notFound)
/external/apache-harmony/support/src/test/java/tests/support/
DSupport_HttpServer.java288 notFound(); // return a not found error in run()
484 private void notFound() { in notFound() method in Support_HttpServer.ServerThread
/external/llvm-project/clang/lib/ARCMigrate/
DTransProperties.cpp309 bool notFound = oneAssign.TraverseDecl(CurImplD); in hasIvarAssignedAPlusOneObject() local
310 if (!notFound) in hasIvarAssignedAPlusOneObject()
/external/clang/lib/ARCMigrate/
DTransProperties.cpp308 bool notFound = oneAssign.TraverseDecl(CurImplD); in hasIvarAssignedAPlusOneObject() local
309 if (!notFound) in hasIvarAssignedAPlusOneObject()
/external/cldr/tools/java/org/unicode/cldr/test/
DTestMisc.java611 Set<String> notFound = new TreeSet<>(real); in checkPrivateUse() local
612 notFound.removeAll(foundItems.get(element)); in checkPrivateUse()
613 for (Iterator<String> it2 = notFound.iterator(); it2.hasNext();) { in checkPrivateUse()
/external/okhttp/okhttp-ws-tests/src/test/java/com/squareup/okhttp/ws/
DWebSocketCallTest.java97 @Test public void notFound() { in notFound() method in WebSocketCallTest