/external/protobuf/gtest/test/ |
gtest_help_test.py | 96 self.assert_(HELP_REGEX.search(output), output) 122 self.assert_(not HELP_REGEX.search(output), output)
|
/external/webkit/Source/WebCore/html/ |
HTMLAreaElement.idl | 40 readonly attribute DOMString search;
|
/external/webkit/Source/WebCore/css/ |
themeWin.css | 52 input[type="search"] { 81 input[type="search"]:disabled, 90 input[type="search"]::-webkit-search-cancel-button { 94 input[type="search"]::-webkit-search-results-decoration { 98 input[type="search"]::-webkit-search-results-button {
|
/external/webkit/Source/JavaScriptCore/tests/mozilla/ecma/String/ |
15.5.4.7-1.js | 32 so as to search all of the string. 170 function LastIndexOf( string, search, position ) { 172 search = String( search ); 184 result7 = search.length; 197 if ( string.charAt(k+j) != search.charAt(j) ){
|
15.5.4.7-2.js | 32 so as to search all of the string. 169 function LastIndexOf( string, search, position ) { 171 search = String( search ); 183 result7 = search.length; 196 if ( string.charAt(k+j) != search.charAt(j) ){
|
/external/elfutils/libcpu/ |
i386_parse.y | 39 #include <search.h> 337 struct suffix search = { .name = $5->name }; 338 if (tfind (&search, &suffixes, compare_suf) 370 struct known_bitfield search; 371 search.name = $1; 373 res = tfind (&search, &bitfields, bitfield_compare); 377 i386_lineno, search.name); 433 struct known_bitfield search; 434 search.name = $1; 436 res = tfind (&search, &bitfields, bitfield_compare) [all...] |
/external/elfutils/libelf/ |
nlist.c | 196 struct hashentry search; local 199 /* Search for a matching entry in the hash table. */ 200 search.str = nl->n_name; 201 found = nlist_fshash_find (table, nl->n_name, 0, &search); 223 /* Next search request. */
|
/external/v8/tools/ |
jsmin.py | 68 m: The match object returned by re.search. 97 m: The match object returned by re.search. 176 m: The match object returned by re.search. 207 m = re.search(r"\*/", line) 218 m = re.search(r"/\*", line) 264 if re.search(r"\?", line):
|
/external/chromium/third_party/libevent/ |
buffer.c | 429 u_char *search = buffer->buffer, *end = search + buffer->off; local 432 while (search < end && 433 (p = memchr(search, *what, end - search)) != NULL) { 438 search = p + 1;
|
/system/extras/tests/sdcard/ |
plot_sdcard.py | 51 res = re.search(('# StopWatch ([\w]+) total/cumulative ' 99 self.kernel = re.search('Linux version ([0-9.]+-[^ ]+)', line).group(1) 101 self.command_line = re.search('# Command: [/\w_]+ (.*)', line).group(1) 106 self.iterations = int(re.search('# Iterations: ([0-9]+)', line).group(1)) 108 self.fadvise = re.search('# Fadvise: ([\w]+)', line).group(1) 110 self.sched = re.search('# Sched features: ([\w]+)', line).group(1)
|
/development/samples/SearchableDictionary/src/com/example/android/searchabledict/ |
WordActivity.java | 74 SearchView searchView = (SearchView) menu.findItem(R.id.search).getActionView(); 85 case R.id.search:
|
/external/chromium/testing/gtest/test/ |
gtest_help_test.py | 113 self.assert_(HELP_REGEX.search(output), output) 137 self.assert_(not HELP_REGEX.search(output), output)
|
/external/chromium/third_party/libjingle/source/talk/base/ |
stringutils.cc | 109 void replace_substrs(const char *search, 115 while ((pos = s->find(search, pos, search_len)) != std::string::npos) {
|
/external/clang/tools/scan-build/ |
set-xcode-analyzer | 32 m = re.search('^(\s*ExecPath\s*=\s*")', line) 83 if (re.search("Xcode.app", xcode_path)):
|
/external/gtest/test/ |
gtest_help_test.py | 113 self.assert_(HELP_REGEX.search(output), output) 137 self.assert_(not HELP_REGEX.search(output), output)
|
/external/icu4c/i18n/ |
stsearch.cpp | 59 m_search_ = m_strsrch_->search; 94 m_search_ = m_strsrch_->search; 122 m_search_ = m_strsrch_->search; 157 m_search_ = m_strsrch_->search; 189 m_search_ = m_strsrch_->search; 227 m_search_ = m_strsrch_->search; 324 result->setMatchStart(m_strsrch_->search->matchedIndex); 325 result->setMatchLength(m_strsrch_->search->matchedLength); 365 // note search->matchedIndex will always be set to something
|
/external/markdown/markdown/extensions/ |
def_list.py | 32 return bool(self.RE.search(block)) 36 m = self.RE.search(block)
|
/external/webkit/Source/WebCore/page/ |
Location.idl | 59 attribute [CustomSetter] DOMString search;
|
/external/webkit/Source/WebCore/platform/graphics/android/context/ |
RTree.h | 71 // Does an overlap search 72 void search(WebCore::IntRect& clip, Vector<WebCore::RecordingData*>& list); 132 void search(int minx, int miny, int maxx, int maxy, Vector<WebCore::RecordingData*>& list);
|
/external/zlib/src/contrib/minizip/ |
make_vms.com | 1 $ if f$search("ioapi.h_orig") .eqs. "" then copy ioapi.h ioapi.h_orig
|
/frameworks/base/tests/DumpRenderTree2/assets/ |
run_layout_tests.py | 50 if re.search("^INSTRUMENTATION_STATUS_CODE: -1", stdoutdata, re.MULTILINE) != None: 53 if re.search("^OK \([0-9]+ tests?\)", stdoutdata, re.MULTILINE) == None:
|
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/gle2/ |
CustomViewFinder.java | 43 import org.eclipse.jdt.core.search.IJavaSearchConstants; 44 import org.eclipse.jdt.core.search.IJavaSearchScope; 45 import org.eclipse.jdt.core.search.SearchEngine; 46 import org.eclipse.jdt.core.search.SearchMatch; 47 import org.eclipse.jdt.core.search.SearchParticipant; 48 import org.eclipse.jdt.core.search.SearchPattern; 49 import org.eclipse.jdt.core.search.SearchRequestor; 129 // search is done. (There could be more than one since multiple requests could 130 // arrive for a slow search since the search is run in a different thread) [all...] |
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/manifest/ |
ManifestInfo.java | 31 import static org.eclipse.jdt.core.search.IJavaSearchConstants.REFERENCES; 64 import org.eclipse.jdt.core.search.IJavaSearchScope; 65 import org.eclipse.jdt.core.search.SearchEngine; 66 import org.eclipse.jdt.core.search.SearchMatch; 67 import org.eclipse.jdt.core.search.SearchParticipant; 68 import org.eclipse.jdt.core.search.SearchPattern; 69 import org.eclipse.jdt.core.search.SearchRequestor; 101 * The maximum number of milliseconds to search for an activity in the codebase when 524 // Search for which java classes call setContentView(R.layout.layoutname); 536 search(requestor, javaProject, pattern) method 678 search(requestor, javaProject, pattern); method 696 private static void search(SearchRequestor requestor, IJavaProject javaProject, method in class:ManifestInfo [all...] |
/build/tools/droiddoc/templates-sdk/assets/js/ |
docs.js | 33 // set search's onkeyup handler here so we can show suggestions 34 // even while search results are visible 37 // set up the search close button 38 $('.search .close').click(function() { 42 $("#search-container").removeClass('active'); 47 $('.search').click(function() { 80 //Set up search 82 $("#search-container").addClass('active'); 84 $("#search-container").mouseover(function() { 85 $("#search-container").addClass('active') [all...] |
/bionic/libc/upstream-netbsd/libc/stdlib/ |
tdelete.c | 4 * Tree search generalized from Knuth (6.2.2) Algorithm T just like 21 #include <search.h>
|