/libcore/luni/src/main/java/java/util/ |
Stack.java | 106 public synchronized int search(Object o) { method in class:Stack
|
/libcore/luni/src/main/java/org/apache/xml/utils/ |
IntStack.java | 188 public int search(int o) method in class:IntStack
|
/dalvik/tools/ |
deadcode.py | 25 result = headerPattern.search(buffer, start) 58 result = methodPattern.search(section, start)
|
/development/testrunner/ |
android_build.py | 66 host_os = re.search("HOST_OS=(\w+)", config).group(1) 67 host_arch = re.search("HOST_ARCH=(\w+)", config).group(1)
|
/external/chromium/net/base/ |
data_url.cc | 36 std::search(after_colon, comma, kBase64Tag, 50 it = std::search(semi_colon + 1, comma, kCharsetTag,
|
/external/gtest/test/ |
gtest_help_test.py | 99 self.assert_(HELP_REGEX.search(output), output) 123 self.assert_(not HELP_REGEX.search(output), output)
|
/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/WebCore/html/ |
HTMLAreaElement.idl | 39 readonly attribute DOMString search;
|
/external/bluetooth/bluez/src/ |
glib-helper.c | 251 sdp_list_t *search, *attrids; local 273 search = sdp_list_append(NULL, &ctxt->uuid); 276 search, SDP_ATTR_REQ_RANGE, attrids) < 0) { 278 sdp_list_free(search, NULL); 284 sdp_list_free(search, NULL); 373 const struct search_context *ctxt = data, *search = user_data; local 375 return (bacmp(&ctxt->dst, &search->dst) && 376 bacmp(&ctxt->src, &search->src)); 381 struct search_context search, *ctxt; local 384 memset(&search, 0, sizeof(search)) [all...] |
/external/clearsilver/scripts/ |
document.py | 101 m = CParser.RE_C_comment.search (line) 108 m = CParser.RE_C_typedef.search(line) 127 m = CParser.RE_C_func_com.search(line) 133 m = CParser.RE_C_desc_com.search(line) 138 m = CParser.RE_C_args_com.search(line) 143 m = CParser.RE_C_retr_com.search(line) 148 m = CParser.RE_C_out_com.search(line) 153 m = CParser.RE_C_other_com.search(line) 159 m = CParser.RE_C_com_cont.search(line)
|
/external/webkit/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/webkit/WebCore/rendering/ |
RenderThemeChromiumMac.mm | [all...] |
RenderThemeMac.mm | [all...] |
/external/elfutils/libelf/ |
nlist.c | 163 struct hashentry search; local 166 /* Search for a matching entry in the hash table. */ 167 search.str = nl->n_name; 168 found = nlist_fshash_find (table, nl->n_name, 0, &search); 190 /* 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) 262 if re.search(r"\?", line):
|
/external/webkit/WebKitTools/Scripts/webkitpy/ |
scm_unittest.py | 202 self.assertTrue(re.search('test3', r3_patch)) 203 self.assertFalse(re.search('test4', r3_patch)) 204 self.assertTrue(re.search('test2', r3_patch)) 205 self.assertTrue(re.search('test2', self.scm.diff_for_revision(2))) 456 self.assertTrue(re.search('fourth commit', self.scm.last_svn_commit_log())) 457 self.assertTrue(re.search('second commit', self.scm.svn_commit_log(2))) 572 self.assertTrue(re.search(r'\nliteral 0\n', patch)) 573 self.assertTrue(re.search(r'\nliteral 256\n', patch)) 586 self.assertTrue(re.search(r'\nliteral 0\n', patch_from_local_commit)) 587 self.assertTrue(re.search(r'\nliteral 256\n', patch_from_local_commit) [all...] |
/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)
|
/external/chromium/third_party/icu/source/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/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/webkit/WebCore/page/ |
Location.idl | 56 attribute [CustomSetter] DOMString search;
|
/external/webkit/WebKitTools/wx/build/ |
wxpresets.py | 54 majorVersion = re.search("#define\swxMAJOR_VERSION\s+(\d+)", versionText).group(1) 55 minorVersion = re.search("#define\swxMINOR_VERSION\s+(\d+)", versionText).group(1)
|
/external/zlib/contrib/minizip/ |
make_vms.com | 1 $ if f$search("ioapi.h_orig") .eqs. "" then copy ioapi.h ioapi.h_orig
|
/build/tools/droiddoc/templates-sdk/ |
customization.cs | 5 <?cs # The default search box that goes in the header ?><?cs 7 <div id="search" > 9 <form accept-charset="utf-8" class="gsc-search-box" 11 <table class="gsc-search-box" cellpadding="0" cellspacing="0"><tbody> 15 title="search developer docs" name="q" 16 value="search developer docs" 26 <td class="gsc-search-button"> 27 <input type="submit" value="Search" title="search" id="search-button" class="gsc-search-button" / [all...] |