Searched defs:search (Results 1 - 25 of 36) sorted by relevance

12

/openjdk7/jdk/src/share/classes/java/util/
H A DStack.java34 * for whether the stack is <tt>empty</tt>, and a method to <tt>search</tt>
130 public synchronized int search(Object o) { method in class:Stack
/openjdk7/jdk/src/share/classes/com/sun/jndi/toolkit/dir/
H A DDirSearch.java37 public static NamingEnumeration search(DirContext ctx, method in class:DirSearch
51 public static NamingEnumeration search(DirContext ctx, method in class:DirSearch
63 public static NamingEnumeration search(DirContext ctx, method in class:DirSearch
68 return search(ctx, strfilter, cons);
/openjdk7/langtools/src/share/classes/com/sun/tools/doclets/internal/toolkit/util/
H A DMethodFinder.java44 public MethodDoc search(ClassDoc cd, MethodDoc method) { method in class:MethodFinder
57 return search(icd, method);
H A DDocFinder.java45 * The method to search documentation from.
49 * The taglet to search for documentation on behalf of. Null if we want
50 * to search for overall documentation.
66 * True if we only want to search for the first sentence.
174 * inherit, search for documentation to inherit from implemented methods.
176 * @param input the input object used to perform the search.
180 public static Output search(Input input) { method in class:DocFinder
203 output = search(inheritedSearchInput);
216 output = search(inheritedSearchInput);
/openjdk7/jaxp/src/com/sun/org/apache/xerces/internal/util/
H A DSymbolHash.java85 Entry entry = search(key, bucket);
107 Entry entry = search(key, bucket);
179 protected Entry search(Object key, int bucket) { method in class:SymbolHash
180 // search for identical key
/openjdk7/jaxp/src/com/sun/org/apache/xml/internal/utils/
H A DIntStack.java190 public int search(int o) method in class:IntStack
H A DObjectStack.java193 public int search(Object o) method in class:ObjectStack
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/ui/
H A DFindInCodeCachePanel.java96 private void search() { method in class:FindInCodeCachePanel.Visitor
106 // make sure we don't start up multiple search threads in parallel
144 panel.add(new JLabel("Address to search for:"));
154 iterator.search();
/openjdk7/jdk/src/share/classes/javax/naming/directory/
H A DDirContext.java85 * In the <tt>getAttributes()</tt> and <tt>search()</tt> methods,
123 * In the <tt>getAttributes()</tt> and <tt>search()</tt> methods,
624 // -------------------- search operations
629 * The search is performed using the default
656 * substring comparison) use the version of the <code>search</code>
675 * the name of the context to search
677 * the attributes to search for. If empty or null,
693 * @see #search(Name, String, Object[], SearchControls)
696 search(Name name, method in interface:DirContext
704 * See {@link #search(Nam
716 search(String name, method in interface:DirContext
741 search(Name name, Attributes matchingAttributes) method in interface:DirContext
757 search(String name, Attributes matchingAttributes) method in interface:DirContext
857 search(Name name, method in interface:DirContext
886 search(String name, method in interface:DirContext
992 search(Name name, method in interface:DirContext
1034 search(String name, method in interface:DirContext
[all...]
H A DInitialDirContext.java223 // -------------------- search operations
226 search(String name, Attributes matchingAttributes) method in class:InitialDirContext
229 return getURLOrDefaultInitDirCtx(name).search(name, matchingAttributes);
233 search(Name name, Attributes matchingAttributes) method in class:InitialDirContext
236 return getURLOrDefaultInitDirCtx(name).search(name, matchingAttributes);
240 search(String name, method in class:InitialDirContext
245 return getURLOrDefaultInitDirCtx(name).search(name,
251 search(Name name, method in class:InitialDirContext
256 return getURLOrDefaultInitDirCtx(name).search(name,
262 search(Strin method in class:InitialDirContext
271 search(Name name, method in class:InitialDirContext
280 search(String name, method in class:InitialDirContext
291 search(Name name, method in class:InitialDirContext
[all...]
/openjdk7/jdk/src/share/classes/com/sun/jmx/mbeanserver/
H A DClassLoaderRepositorySupport.java130 * List of valid search
132 private final Map<String,List<ClassLoader>> search = field in class:ClassLoaderRepositorySupport
238 // Check if we have such a current search
240 List<ClassLoader> excluded = search.get(className);
255 search.put(className, excluded);
269 // Retrieve the search.
271 List<ClassLoader> excluded = search.get(className);
/openjdk7/hotspot/src/cpu/sparc/vm/
H A DvtableStubs_sparc.cpp135 Label search; local
/openjdk7/jaxp/src/com/sun/org/apache/bcel/internal/util/
H A DInstructionFinder.java67 * InstructionFinder is a tool to search for given instructions patterns,
74 * Regexp</a> package to search for regular expressions.
81 for(Iterator i = f.search(pat, constraint); i.hasNext(); ) {
103 * @param il instruction list to search for given patterns
192 * Search for the given pattern in the instruction list. You can search for any valid
204 search("BranchInstruction NOP ((IfInstruction|GOTO)+ ISTORE Instruction)*");
209 * the finder and call search() again, because the matches are cached.
211 * @param pattern the instruction pattern to search for, where case is ignored
212 * @param from where to start the search in the instruction list
218 public final Iterator search(Strin method in class:InstructionFinder
266 public final Iterator search(String pattern) { method in class:InstructionFinder
278 public final Iterator search(String pattern, InstructionHandle from) { method in class:InstructionFinder
290 public final Iterator search(String pattern, CodeConstraint constraint) { method in class:InstructionFinder
[all...]
/openjdk7/jdk/src/share/classes/javax/naming/spi/
H A DContinuationDirContext.java207 public NamingEnumeration search(Name name, method in class:ContinuationDirContext
212 return res.getDirContext().search(res.getName(), matchingAttributes,
216 public NamingEnumeration search(String name, method in class:ContinuationDirContext
221 return res.getDirContext().search(res.getString(),
226 public NamingEnumeration search(Name name, method in class:ContinuationDirContext
230 return res.getDirContext().search(res.getName(), matchingAttributes);
232 public NamingEnumeration search(String name, method in class:ContinuationDirContext
236 return res.getDirContext().search(res.getString(),
240 public NamingEnumeration search(Name name, method in class:ContinuationDirContext
245 return res.getDirContext().search(re
248 public NamingEnumeration search(String name, method in class:ContinuationDirContext
256 public NamingEnumeration search(Name name, method in class:ContinuationDirContext
266 public NamingEnumeration search(String name, method in class:ContinuationDirContext
[all...]
/openjdk7/jdk/src/share/classes/com/sun/jndi/toolkit/url/
H A DGenericURLDirContext.java292 public NamingEnumeration<SearchResult> search(String name, method in class:GenericURLDirContext
298 return ctx.search(res.getRemainingName(), matchingAttributes);
304 public NamingEnumeration<SearchResult> search(Name name, method in class:GenericURLDirContext
308 return search(name.get(0), matchingAttributes);
312 return ctx.search(name.getSuffix(1), matchingAttributes);
319 public NamingEnumeration<SearchResult> search(String name, method in class:GenericURLDirContext
326 return ctx.search(res.getRemainingName(),
333 public NamingEnumeration<SearchResult> search(Name name, method in class:GenericURLDirContext
338 return search(name.get(0), matchingAttributes,
343 return ctx.search(nam
351 public NamingEnumeration<SearchResult> search(String name, method in class:GenericURLDirContext
364 public NamingEnumeration<SearchResult> search(Name name, method in class:GenericURLDirContext
380 public NamingEnumeration<SearchResult> search(String name, method in class:GenericURLDirContext
395 public NamingEnumeration<SearchResult> search(Name name, method in class:GenericURLDirContext
[all...]
/openjdk7/jdk/src/share/classes/com/sun/media/sound/
H A DAlawCodec.java335 private short search(short val, short table[], short size) { method in class:AlawCodec.AlawCodecStream
397 seg = search(sample, seg_end, (short) 8);
H A DUlawCodec.java319 private short search(short val, short table[], short size) { method in class:UlawCodec.UlawCodecStream
376 seg = search(sample, seg_end, (short) 8);
/openjdk7/jdk/src/share/demo/jvmti/hprof/
H A Dhprof_loader.c50 * a simple linear search will be performed for now.
52 * table hash table search once we know JNI can be called safely.
55 * each search for a loader happens, NULL weak global references will
164 search(JNIEnv *env, jobject loader) function
187 index = search(env, loader);
200 HPROF_ASSERT(search(env,loader)==index);
/openjdk7/jdk/src/share/native/sun/font/layout/
H A DOpenTypeUtilities.cpp153 le_int32 OpenTypeUtilities::search(le_uint32 value, const le_uint32 array[], le_int32 count) function in class:OpenTypeUtilities
175 le_int32 OpenTypeUtilities::search(le_uint16 value, const le_uint16 array[], le_int32 count) function in class:OpenTypeUtilities
/openjdk7/jdk/src/share/classes/java/util/regex/
H A DMatcher.java148 * next search starts).
582 // If next search starts before region, start it at region
586 // If next search starts beyond region then it fails
592 return search(nextSearchIndex);
618 return search(start);
1145 * <p>Returns true if the end of input was hit by the search engine in
1149 * would have changed the result of the last search.
1178 * Initiates a search to find a Pattern within the given bounds.
1184 * of the start of the search which anchors will set to. The from param
1185 * is the "soft" boundary of the start of the search, meanin
1190 boolean search(int from) { method in class:Matcher
[all...]
/openjdk7/jdk/src/share/classes/com/sun/jndi/toolkit/ctx/
H A DPartialCompositeDirContext.java280 search(String name, Attributes matchingAttributes) method in class:PartialCompositeDirContext
283 return search(name, matchingAttributes, null);
287 search(Name name, Attributes matchingAttributes) method in class:PartialCompositeDirContext
290 return search(name, matchingAttributes, null);
294 search(String name, method in class:PartialCompositeDirContext
299 return search(new CompositeName(name),
304 search(Name name, method in class:PartialCompositeDirContext
327 answer = cctx.search(e.getRemainingName(), matchingAttributes,
334 search(String name, method in class:PartialCompositeDirContext
339 return search(ne
343 search(Name name, method in class:PartialCompositeDirContext
370 search(String name, method in class:PartialCompositeDirContext
380 search(Name name, method in class:PartialCompositeDirContext
[all...]
/openjdk7/jdk/src/share/classes/com/sun/jndi/url/ldap/
H A DldapURLContext.java86 * Query components are permitted only for search operations and only
449 // divert the search operation when the LDAP URL has query components
450 public NamingEnumeration search(String name, method in class:ldapURLContext
457 return super.search(name, matchingAttributes);
461 // divert the search operation when name has a single component
462 public NamingEnumeration search(Name name, method in class:ldapURLContext
466 return search(name.get(0), matchingAttributes);
470 return super.search(name, matchingAttributes);
474 // divert the search operation when the LDAP URL has query components
475 public NamingEnumeration search(Strin method in class:ldapURLContext
488 public NamingEnumeration search(Name name, method in class:ldapURLContext
503 public NamingEnumeration search(String name, method in class:ldapURLContext
516 public NamingEnumeration search(Name name, method in class:ldapURLContext
531 public NamingEnumeration search(String name, method in class:ldapURLContext
545 public NamingEnumeration search(Name name, method in class:ldapURLContext
[all...]
/openjdk7/hotspot/src/share/tools/LogCompilation/src/com/sun/hotspot/tools/compiler/
H A DLogParser.java209 String search(Attributes attr, String name) { method in class:LogParser
210 return search(attr, name, null);
213 String search(Attributes attr, String name, String defaultValue) { method in class:LogParser
268 Phase p = new Phase(search(atts, "name"),
269 Double.parseDouble(search(atts, "stamp")),
270 Integer.parseInt(search(atts, "nodes", "0")),
271 Integer.parseInt(search(atts, "live")));
275 if (! p.getId().equals(search(atts, "name"))) {
279 p.setEnd(Double.parseDouble(search(atts, "stamp")));
280 p.setEndNodes(Integer.parseInt(search(att
[all...]
/openjdk7/jdk/src/share/classes/javax/swing/text/
H A DGapContent.java56 * with a binary search. This increases the cost of adding a
85 search = new MarkData(0);
239 search.index = index;
240 int sortIndex = findSortIndex(search);
325 private transient MarkData search; field in class:GapContent
505 * some search index.
508 search.index = Math.max(searchIndex, 1);
509 int index = findSortIndex(search);
515 if (d.index != search.index) {
693 search
[all...]
/openjdk7/jdk/src/share/classes/com/sun/jndi/ldap/
H A DLdapReferralContext.java280 ne = refCtx.search(overrideName(name), "(objectclass=*)", cons);
289 // context to the new search results, so that referral processing
339 be = refCtx.search(overrideName(name), "(objectclass=*)", cons);
348 // context to the new search results, so that referral processing
605 public NamingEnumeration search(String name, method in class:LdapReferralContext
608 return search(toName(name), SearchFilter.format(matchingAttributes),
612 public NamingEnumeration search(Name name, method in class:LdapReferralContext
615 return search(name, SearchFilter.format(matchingAttributes),
619 public NamingEnumeration search(String name, method in class:LdapReferralContext
626 return search(toNam
630 public NamingEnumeration search(Name name, method in class:LdapReferralContext
640 public NamingEnumeration search(String name, method in class:LdapReferralContext
647 public NamingEnumeration search(Name name, method in class:LdapReferralContext
697 public NamingEnumeration search(String name, method in class:LdapReferralContext
705 public NamingEnumeration search(Name name, method in class:LdapReferralContext
[all...]

Completed in 96 milliseconds

12