/system/sepolicy/ |
priv_app.te | 42 allow priv_app mnt_media_rw_file:dir search; 82 allow priv_app sysfs_zram:dir search;
|
te_macros | 181 allow servicemanager $1:dir search; 282 # Note: devpts:dir search and ptmx_device:chr_file rw_file_perms 338 allow keystore $1:dir search; 350 allow drmserver $1:dir search;
|
untrusted_app.te | 64 allow untrusted_app mnt_media_rw_file:dir search; 105 allow untrusted_app sysfs_hwrandom:dir search; 202 neverallow untrusted_app anr_data_file:dir ~search;
|
/toolchain/binutils/binutils-2.25/intl/ |
dcigettext.c | 215 /* This is the type used for the search tree where known translations 219 /* Domain in which to search. */ 239 /* Root of the search tree with known translations. We can use this 242 # include <search.h> 424 CATEGORY locale and, if PLURAL is nonzero, search over string 448 struct known_translation_t *search; local 486 search = (struct known_translation_t *) 488 memcpy (search->msgid, msgid1, msgid_len); 489 search->domainname = (char *) domainname; 490 search->category = category [all...] |
/toolchain/binutils/binutils-2.25/ld/ |
ldemul.c | 112 ldemul_open_dynamic_archive (const char *arch, search_dirs_type *search, 116 return (*ld_emulation->open_dynamic_archive) (arch, search, entry);
|
/external/autotest/client/site_tests/logging_UserCrash/ |
logging_UserCrash.py | 106 """Search for frame entries in the given stack dump text. 132 return re.search(regexp, stack) is not None 139 match = re.search(r'Crash reason:\s+(.*)', stack) 147 match = re.search(r'Crash address:\s+(.*)', stack) 213 match = re.search(r'pid=(\d+)', output) 316 version_match = re.search(r'CHROMEOS_RELEASE_VERSION=(.*)', lsb_release)
|
/external/autotest/site_utils/ |
generate_test_report | 134 match = re.search(r'^(.+){%s}=(.+)$' % keyword, line) 233 @param status_raw: multi-line text to search. 235 @param is_end: if True, search for 'END' otherwise 'START'. 331 failure = re.search(r'%s' % failure_tags, status_raw) 332 warning = re.search(r'%s' % warning_tag, status_raw) and not failure 333 good = (re.search(r'GOOD.+completed successfully', status_raw) and 341 match = re.search(r'^\t+(%s|%s)\t(.+)' % (failure_tags,
|
/external/chromium-trace/catapult/third_party/Paste/paste/ |
wsgiwrappers.py | 267 charset_match = _CHARSET_RE.search(self.headers.get('Content-Type', '')) 374 charset_match = _CHARSET_RE.search(self.headers.get('Content-Type', '')) 478 match = _CHARSET_RE.search(header) 492 match = _CHARSET_RE.search(header) 504 match = _CHARSET_RE.search(header)
|
/system/extras/simpleperf/runtest/ |
runtest.py | 348 assert re.search(r'^Children\s+Self\s+Command.+Symbol$', title_line) 350 assert re.search(r'^Overhead\s+Command.+Symbol$', title_line) 367 m = re.search(r'^([\d\.]+)%\s+([\d\.]+)%\s+(\S+).*\s+(\S+)$', line) 375 m = re.search(r'^([\d\.]+)%\s+(\S+).*\s+(\S+)$', line) 406 m = re.search(r'^[\d\.]+%[-\s]+(.+)$', line)
|
/toolchain/binutils/binutils-2.25/libiberty/ |
pex-win32.c | 440 /* Returns the full path to PROGRAM. If SEARCH is true, look for 444 find_executable (const char *program, BOOL search) 457 search = FALSE; 459 if (search) 569 BOOL search, 619 full_executable = find_executable (executable, search);
|
/build/tools/droiddoc/templates-sdk/assets/js/ |
docs.js | 13 var GOOGLE_DATA; // combined data for google service apis, used for search suggest 35 // load json file for JD doc search suggestions 37 // load json file for Android API search suggestions 57 // setup keyboard listener for search shortcut 78 // set up the search close button 79 $('#search-close').on('click touchend', function() { 83 $("#search-container").removeClass('active'); 90 //Set up search 92 $("#search-container").addClass('active'); 94 $("#search-container").on('mouseover touchend', function(e) [all...] |
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/ |
org.eclipse.pde.api.tools_1.0.202.v20100820_r361.jar | |
/external/selinux/libsepol/tests/policies/test-cond/ |
refpolicy-base.conf | 159 search [all...] |
/external/chromium-trace/catapult/third_party/Paste/paste/util/ |
template.py | 455 if not statement_re.search(item) and item not in single_statements: 468 if ((not prev or trail_whitespace_re.search(prev)) 469 and (not next or lead_whitespace_re.search(next))): 471 m = trail_whitespace_re.search(prev) 476 m = lead_whitespace_re.search(next) 638 match = in_re.search(first) 677 if not var_re.search(var):
|
/hardware/bsp/intel/peripheral/libupm/doxy/node/ |
xml2js.js | 180 return ((path.extname(fn) == '.xml') && (path.basename(fn).search(/^group/) != -1)); 266 return ((path.extname(fn) == '.i') && (path.basename(fn).search(/^js/) != -1)); 280 return (line.search(/^%array_class/) != -1); 306 return (line.search(/^%typemap/) != -1); 324 return (line.search(/^%pointer_functions/) != -1); 433 // search for usage of a type 738 if (type_c.search(pattern) == 0) { 815 return (type.search(/\w+\s*(\*|&)$/) != -1); [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...] |
/development/scripts/ |
symbol.py | 344 toolchain_match = re.search("\/(aarch64|arm|mips|x86)\/", toolchain) 366 abi_match = abi_line.search(line) 370 trace_match = trace_line.search(line)
|
/external/autotest/server/ |
site_utils.py | 182 ldaps = re.search(r"document.write\('(.*)'\)", url_content) 249 build_exceptions = re.search('\[(.*)\]', lab_status['message']) 424 embedded_str = re.search(r'x86-\w+-(.*)', _board)
|
/external/chromium-trace/catapult/third_party/gsutil/third_party/boto/boto/cloudsearch2/ |
search.py | 63 """Call Cloudsearch to get the next page of search results 65 :rtype: :class:`boto.cloudsearch2.search.SearchResults` 66 :return: the following page of search results 104 """Transform search parameters from instance properties to a dictionary 107 :return: search parameters 150 Transform search parameters from instance properties to a dictionary 154 :return: search parameters 241 def search(self, q=None, parser=None, fq=None, rank=None, return_fields=None, member in class:SearchConnection 247 Each search query should use at least the q or bq argument to specify 248 the search parameter. The other options are used to specify th [all...] |
/external/chromium-trace/catapult/third_party/webtest/webtest/ |
lint.py | 445 assert header_re.search(str_name), "Bad header name: %r" % name 454 assert not bad_header_value_re.search(str_value), ( 456 % (str_value, bad_header_value_re.search(str_value).group(0)))
|
/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 | 41 import com.android.settings.search.BaseSearchIndexProvider; 42 import com.android.settings.search.Index; 43 import com.android.settings.search.Indexable; 397 * For Search.
|
/prebuilts/gdb/darwin-x86/lib/python2.7/ |
Cookie.py | 355 Omatch = _OctalPatt.search(str, i) 356 Qmatch = _QuotePatt.search(str, i) 647 match = patt.search(str, i)
|
/prebuilts/gdb/darwin-x86/lib/python2.7/email/ |
header.py | 76 if not ecre.search(header): 82 if not ecre.search(line): 329 # Binary search for split point 415 if _embeded_header.search(value):
|