HomeSort by relevance Sort by last modified time
    Searched refs:search (Results 276 - 300 of 593) sorted by null

<<11121314151617181920>>

  /external/chromium/chrome/common/extensions/docs/build/
directory.py 161 base_sample_path: The directory under which to search for samples.
175 base_path: Base path in which to start the search.
355 placeholder_match = placeholder_pattern.search(message)
403 To make the implementation of the JavaScript-based search very direct, a
  /external/zlib/src/
make_vms.com 18 $! subdir path, update module search in makefile.in
74 $ If F$Search ("Sys$System:MMS.EXE") .nes. "" Then Make = "MMS"
132 $ if f$search(fname) .eqs. ""
171 $ if f$search("''th'") .nes. "" then delete 'th';*
177 $ if (f$search( "example.obj;*") .nes. "") then delete example.obj;*
178 $ if (f$search( "minigzip.obj;*") .nes. "") then delete minigzip.obj;*
263 $ If F$Search(P1) .Eqs. "" Then Goto Makeit
276 $ AFile = F$Search(File)
383 $ its_decc = (f$search("SYS$SYSTEM:DECC$COMPILER.EXE") .nes. "")
384 $ its_vaxc = .not. its_decc .and. (F$Search("SYS$System:VAXC.Exe") .nes. ""
    [all...]
  /packages/apps/Music/src/com/android/music/
QueryBrowserActivity.java 100 // this is something we got from the search bar
332 Uri search = Uri.parse("content://media/external/audio/search/fancy/" + local
337 async.startQuery(0, null, search, ccols, null, null, null);
339 ret = MusicUtils.query(this, search, ccols, null, null, null);
  /external/chromium/chrome/browser/resources/bookmark_manager/js/
main.js 41 searchTreeItem.label = localStrings.getString('search');
162 // In case we got a search hash update the text input and the bmm.treeLookup
199 * Navigates to the search results for the search text.
200 * @para {string} searchText The text to search for.
204 // Only update search item if we have a search term. We never want the
205 // search item to be for an empty search.
382 // If we are over the list and the list is showing recent or search resul
    [all...]
  /external/chromium/chrome/browser/resources/file_manager/js/
util.js 53 if (key.search(/_ERR$/) != -1 && FileError[key] == code)
  /external/chromium/chrome/common/extensions/docs/examples/api/history/showHistory/
typedUrls.js 32 // Search history to find up to ten links that a user has typed in,
44 chrome.history.search({
  /external/chromium/net/http/
http_cache_transaction.cc 82 const HeaderNameAndValue* search) {
83 for (; search->name; ++search) {
85 if (!headers.GetHeader(search->name, &header_value))
88 if (!search->value)
93 if (LowerCaseEqualsASCII(v.value_begin(), v.value_end(), search->value))
1368 const HeaderNameAndValue* search; member in struct:net::__anon5048
    [all...]
  /external/libsepol/tests/policies/test-deps/
base-notmetreq.conf 164 search
  /external/libsepol/tests/policies/test-expander/
alias-base.conf 165 search
role-base.conf 165 search
user-base.conf 165 search
  /external/libsepol/tests/policies/test-hooks/
cmp_policy.conf 165 search
small-base.conf 165 search
  /external/v8/benchmarks/
splay.js 125 * search tree with the additional property that recently accessed
165 // Splay on the key to move the last node on the search path for
257 // node on the search path to the top of the tree.
286 * key, the last node on the search path is moved to the top of the
288 * "Self-adjusting Binary Search Trees" by Sleator and Tarjan
  /external/valgrind/main/cachegrind/
cg_diff.in 51 --mod-filename=<expr> a Perl search-and-replace expression that is applied
  /external/webkit/PerformanceTests/SunSpider/tests/v8-v4/
v8-splay.js 119 * search tree with the additional property that recently accessed
159 // Splay on the key to move the last node on the search path for
236 // node on the search path to the top of the tree.
265 * key, the last node on the search path is moved to the top of the
267 * "Self-adjusting Binary Search Trees" by Sleator and Tarjan
  /external/webkit/PerformanceTests/SunSpider/tests/v8-v5/
v8-splay.js 119 * search tree with the additional property that recently accessed
159 // Splay on the key to move the last node on the search path for
236 // node on the search path to the top of the tree.
265 * key, the last node on the search path is moved to the top of the
267 * "Self-adjusting Binary Search Trees" by Sleator and Tarjan
  /external/webkit/PerformanceTests/SunSpider/tests/v8-v6/
v8-splay.js 120 * search tree with the additional property that recently accessed
160 // Splay on the key to move the last node on the search path for
252 // node on the search path to the top of the tree.
281 * key, the last node on the search path is moved to the top of the
283 * "Self-adjusting Binary Search Trees" by Sleator and Tarjan
  /external/webkit/Source/WebCore/bindings/v8/custom/
V8LocationCustom.cpp 140 INC_STATS("DOM.Location.search._set");
145 String search = toWebCoreString(value); local
147 impl->setSearch(search, state->activeWindow(), state->firstWindow());
  /external/webkit/Source/WebCore/html/
InputType.cpp 97 map->add(InputTypeNames::search(), SearchInputType::create);
757 const AtomicString& search() function in namespace:WebCore::InputTypeNames
759 DEFINE_STATIC_LOCAL(AtomicString, name, ("search"));
  /external/webkit/Tools/Scripts/webkitpy/common/system/
autoinstall.py 75 target directory to the sys.path search path.
139 target directory to the sys.path search path.
156 text = ("# This file is required for Python to search this "
  /frameworks/base/core/java/android/provider/
Browser.java 129 * {@link SearchColumns#SEARCH}, and {@link SearchColumns#DATE}.
134 SearchColumns.SEARCH, // 1
529 * Add a search string to the searches database.
533 * @param search The string to add to the searches database.
535 public static final void addSearchUrl(ContentResolver cr, String search) {
538 values.put(Searches.SEARCH, search);
544 * Remove all searches from the search database.
639 * Column definitions for the search history table, available at {@link #SEARCHES_URI}.
649 * The user entered search term
    [all...]
  /packages/apps/Calendar/src/com/android/calendar/agenda/
AgendaFragment.java 95 // usedForSearch - indicates if this fragment is used in the search fragment
338 private void search(String query, Time time) { method in class:AgendaFragment
359 return EventType.GO_TO | EventType.EVENTS_CHANGED | ((mUsedForSearch)?EventType.SEARCH:0);
374 } else if (event.eventType == EventType.SEARCH) {
375 search(event.query, event.startTime); method
  /external/elfutils/src/
ldgeneric.c 970 struct scnhead search; local
1004 search.name = elf_strptr (fileinfo->elf, fileinfo->shstrndx, shdr->sh_name);
1005 search.type = shdr->sh_type;
1006 search.flags = shdr->sh_flags;
1007 search.entsize = shdr->sh_entsize;
1008 search.grp_signature = grpscn != NULL ? grpscn->symbols->name : NULL;
1009 search.kind = scn_normal;
1010 hval = elf_hash (search.name);
1013 queued = ld_section_tab_find (&ld_state.section_tab, hval, &search);
1521 struct symbol search; local
1920 struct symbol search = { .name = syms[cnt].as_name }; local
3362 struct id_list search; local
3633 struct symbol search = { .name = ld_state.entry }; local
5396 struct symbol search; local
    [all...]
  /external/antlr/antlr-3.4/runtime/Python/
ez_setup.py 208 match = re.search("\nmd5_data = {\n([^}]+)}", src)

Completed in 998 milliseconds

<<11121314151617181920>>