Searched refs:notFound (Results 1 – 8 of 8) sorted by relevance
91 TreeMap<String, String> notFound = new TreeMap<String, String>(); field in Package175 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()
405 Set<String> notFound = new TreeSet<String>(dtdAttributes); in checkNodeData() local406 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()
246 for notFound in notFounds:247 print("Couldn't find device matching serial '%s'" % notFound)
288 notFound(); // return a not found error in run()484 private void notFound() { in notFound() method in Support_HttpServer.ServerThread
309 bool notFound = oneAssign.TraverseDecl(CurImplD); in hasIvarAssignedAPlusOneObject() local310 if (!notFound) in hasIvarAssignedAPlusOneObject()
308 bool notFound = oneAssign.TraverseDecl(CurImplD); in hasIvarAssignedAPlusOneObject() local309 if (!notFound) in hasIvarAssignedAPlusOneObject()
611 Set<String> notFound = new TreeSet<>(real); in checkPrivateUse() local612 notFound.removeAll(foundItems.get(element)); in checkPrivateUse()613 for (Iterator<String> it2 = notFound.iterator(); it2.hasNext();) { in checkPrivateUse()
97 @Test public void notFound() { in notFound() method in WebSocketCallTest