HomeSort by relevance Sort by last modified time
    Searched refs:search (Results 501 - 525 of 1487) sorted by null

<<21222324252627282930>>

  /ndk/tests/build/topological-sort/jni/
Android.mk 26 # find an object file that contains foo2(), because the search starts
  /packages/apps/Settings/src/com/android/settings/bluetooth/
BluetoothDevicePreference.java 38 import com.android.settings.search.Index;
39 import com.android.settings.search.SearchIndexableRaw;
  /packages/apps/Settings/src/com/android/settings/notification/
OtherSoundSettings.java 39 import com.android.settings.search.BaseSearchIndexProvider;
40 import com.android.settings.search.Indexable;
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
base64.py 212 mo = re.search('(?P<pad>[=]*)$', s)
275 if re.search('[^0-9A-F]', s):
re.py 79 search Search a string for the presence of a pattern.
109 __all__ = [ "match", "search", "sub", "subn", "split", "findall",
139 def search(pattern, string, flags=0): function
142 return _compile(pattern, flags).search(string)
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/
base64.py 212 mo = re.search('(?P<pad>[=]*)$', s)
275 if re.search('[^0-9A-F]', s):
re.py 79 search Search a string for the presence of a pattern.
109 __all__ = [ "match", "search", "sub", "subn", "split", "findall",
139 def search(pattern, string, flags=0): function
142 return _compile(pattern, flags).search(string)
  /external/chromium_org/third_party/markdown/
blockprocessors.py 293 return bool(self.RE.search(block))
297 m = self.RE.search(block)
449 return bool(self.RE.search(block))
453 m = self.RE.search(block)
504 m = self.SEARCH_RE.search(block)
  /external/chromium_org/tools/metrics/actions/
extract_actions.py 173 match = action_re.search(line)
329 match = flag_name_re.search(line)
427 match = action_re.search(line)
430 elif malformed_action_re.search(line):
434 elif computed_action_re.search(line):
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
org.eclipse.pde.api.tools_1.0.202.v20100820_r361.jar 
  /external/libsepol/tests/policies/test-cond/
refpolicy-base.conf 159 search
    [all...]
  /build/tools/droiddoc/templates-sdk-dyn/assets/css/
default.css 1504 Header, Login, Nav-X, Search
1542 .search {
1547 .search .bottom, .search .left, .search .right {
1551 .search .bottom {
1557 .search .left, .search .right {
1561 .search .left { top: 19px; left: 0 }
1562 .search .right { top: 19px; right: 0
    [all...]
  /build/tools/atree/
files.cpp 331 locate(FileRecord* rec, const vector<string>& search)
343 for (vector<string>::const_iterator it=search.begin();
344 it!=search.end(); it++) {
  /build/tools/
warn.py     [all...]
  /external/chromium_org/chrome/common/extensions/docs/examples/apps/hello-php/lib/lightopenid/
openid.php 267 # There are no relevant information in headers, so we search the body.
490 # so we search for another prefix
558 # We search for both AX and SREG attributes, with AX taking precedence.
  /external/chromium_org/native_client_sdk/src/resources/
common.js 268 * @param {string} s The string to search.
269 * @param {string} prefix The prefix to search for in |s|.
272 // indexOf would search the entire string, lastIndexOf(p, 0) only checks at
427 if (window.location.search.length > 1) {
428 var pairs = window.location.search.substr(1).split('&');
454 // If the config value is included in the search vars, use that.
  /external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/common/checkout/scm/
git.py 189 match = re.search("^\s*git-svn-id:.*@(?P<svn_revision>\d+)\ ", git_log, re.MULTILINE)
196 match = re.search("^Date:\s*(\d{4})-(\d{2})-(\d{2}) (\d{2}):(\d{2}):(\d{2}) ([+-])(\d{2})(\d{2})$", git_log, re.MULTILINE)
302 match = re.search("^\s*(?P<branch_name>\S+)\s+merges with remote master$", origin_info, re.MULTILINE)
  /external/smack/src/org/xbill/DNS/
ResolverConfig.java 10 * A class that tries to locate name servers and the search path to
15 * <LI>The properties 'dns.server' and 'dns.search' (comma delimited lists)
22 * <LI>"localhost" is used as the nameserver, and the search path is empty.
82 addSearch(String search, List list) {
85 System.out.println("adding search " + search);
87 name = Name.fromString(search, Name.root);
128 * Looks in the system properties to find servers and a search path.
130 * The search path is defined by dns.search=domain1,domain2..
    [all...]
  /external/stlport/stlport/stl/
_algobase.c 227 _ForwardIter1 search(_ForwardIter1 __first1, _ForwardIter1 __last1, function
362 // Search [first2, last2) as a subsequence in [first1, last1), and return
378 _ForwardIter1 __new_result = _STLP_STD::search(__first1, __last1, __first2, __last2, __comp);
415 _RevIter1 __rresult = _STLP_STD::search(_RevIter1(__last1), __rlast1,
  /ndk/sources/cxx-stl/stlport/stlport/stl/
_algobase.c 227 _ForwardIter1 search(_ForwardIter1 __first1, _ForwardIter1 __last1, function
362 // Search [first2, last2) as a subsequence in [first1, last1), and return
378 _ForwardIter1 __new_result = _STLP_STD::search(__first1, __last1, __first2, __last2, __comp);
415 _RevIter1 __rresult = _STLP_STD::search(_RevIter1(__last1), __rlast1,
  /packages/apps/Settings/src/com/android/settings/
DeviceInfoSettings.java 43 import com.android.settings.search.BaseSearchIndexProvider;
44 import com.android.settings.search.Index;
45 import com.android.settings.search.Indexable;
412 * For Search.
  /prebuilts/ndk/5/sources/cxx-stl/stlport/stlport/stl/
_algobase.c 227 _ForwardIter1 search(_ForwardIter1 __first1, _ForwardIter1 __last1, function
362 // Search [first2, last2) as a subsequence in [first1, last1), and return
378 _ForwardIter1 __new_result = _STLP_STD::search(__first1, __last1, __first2, __last2, __comp);
415 _RevIter1 __rresult = _STLP_STD::search(_RevIter1(__last1), __rlast1,
  /prebuilts/ndk/6/sources/cxx-stl/stlport/stlport/stl/
_algobase.c 227 _ForwardIter1 search(_ForwardIter1 __first1, _ForwardIter1 __last1, function
362 // Search [first2, last2) as a subsequence in [first1, last1), and return
378 _ForwardIter1 __new_result = _STLP_STD::search(__first1, __last1, __first2, __last2, __comp);
415 _RevIter1 __rresult = _STLP_STD::search(_RevIter1(__last1), __rlast1,
  /prebuilts/ndk/7/sources/cxx-stl/stlport/stlport/stl/
_algobase.c 227 _ForwardIter1 search(_ForwardIter1 __first1, _ForwardIter1 __last1, function
362 // Search [first2, last2) as a subsequence in [first1, last1), and return
378 _ForwardIter1 __new_result = _STLP_STD::search(__first1, __last1, __first2, __last2, __comp);
415 _RevIter1 __rresult = _STLP_STD::search(_RevIter1(__last1), __rlast1,
  /prebuilts/ndk/8/sources/cxx-stl/stlport/stlport/stl/
_algobase.c 227 _ForwardIter1 search(_ForwardIter1 __first1, _ForwardIter1 __last1, function
362 // Search [first2, last2) as a subsequence in [first1, last1), and return
378 _ForwardIter1 __new_result = _STLP_STD::search(__first1, __last1, __first2, __last2, __comp);
415 _RevIter1 __rresult = _STLP_STD::search(_RevIter1(__last1), __rlast1,

Completed in 1789 milliseconds

<<21222324252627282930>>