HomeSort by relevance Sort by last modified time
    Searched refs:search (Results 251 - 275 of 1678) sorted by null

<<11121314151617181920>>

  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/site-packages/setools/
mixins.py 66 return bool(self.tclass.search(str(obj.tclass)))
  /system/sepolicy/
platform_app.te 12 allow platform_app shell_data_file:dir search;
19 allow platform_app apk_private_data_file:dir search;
  /external/selinux/policycoreutils/sepolicy/sepolicy/
__init__.py 50 def search(types, info={}): function
63 dict_list = _policy.search(seinfo)
73 allows = search([ALLOW], {SOURCE: src, TARGET: dest, CLASS: tclass, PERMS: perm})
76 allows = search([ALLOW], {SOURCE: src, CLASS: tclass, PERMS: perm})
142 permlist = search([ALLOW], {'source': setype, 'permlist': ['open', 'write'], 'class': 'file'})
337 return filter(lambda x: x["transtype"] == setype, search([TRANSITION], {'class': 'process'}))
345 return search([TRANSITION], {'source': setype, 'class': 'process'})
353 return filter(lambda x: x['class'] != "process", search([TRANSITION], {'source': setype}))
361 permlist = search([ALLOW], {'source': setype})
380 entrypoints = map(lambda x: x['target'], filter(lambda x: x['source'] == setype, search([ALLOW], {'source': setype, 'permlist': ['entrypoint'], 'class': 'file'}))
    [all...]
  /external/v8/src/js/
string.js 210 function StringReplace(search, replace) {
216 // .. regexp search
218 // ...... non-global search
221 // ...... global search
225 // ...... global search
226 // ...... non-global search
227 // .. string search
232 if (IS_REGEXP(search)) {
236 if (!REGEXP_GLOBAL(search)) {
237 // Non-global regexp search, string replace
    [all...]
  /external/autotest/client/bin/
site_utils.py 121 matches = re.search('--remote-debugging-port=([0-9]+)', command)
143 name: process name to search for. If command_line is provided, name is
289 if whitelist_re.search(stripped_line):
318 if not re.search(r'%s' % regex, line):
324 if re.search(r'^%s$' % string, present_string):
356 if re.search('#define __PIE__', result):
377 if re.search('__i386__', result) or re.search('__x86_64__', result):
840 return re.search('BOARD=(.*)', f.read()).group(1)
852 pat = re.search('DEVICETYPE=(.*)', f.read()
    [all...]
kernelexpand.py 45 match = re.search(r'^(.*)' + suffix, kernel)
58 match = re.search(r'^((\d+\.\d+)\.(\d+))', kernel)
  /external/chromium-trace/catapult/third_party/gsutil/third_party/boto/boto/machinelearning/
layer1.py 699 search criteria in the request.
707 + `CreatedAt` - Sets the search criteria to the `BatchPrediction`
709 + `Status` - Sets the search criteria to the `BatchPrediction` status.
710 + `Name` - Sets the search criteria to the contents of the
712 + `IAMUser` - Sets the search criteria to the user account that invoked
    [all...]
  /external/v8/tools/
js2c.py 78 if EVAL_PATTERN.search(lines):
80 if WITH_PATTERN.search(lines):
82 invalid_error = INVALID_ERROR_MESSAGE_PATTERN.search(lines)
85 if NEW_ERROR_PATTERN.search(lines):
98 pattern_match = name_pattern.search(lines, pos)
131 pattern_match = name_pattern.search(lines, start + len(result))
221 macro_match = INLINE_MACRO_PATTERN.search(lines, pos)
227 end_macro_match = INLINE_MACRO_END_PATTERN.search(lines, macro_match.end());
250 const_match = INLINE_CONSTANT_PATTERN.search(lines, pos)
  /external/curl/packages/vms/
pcsi_product_gnv_curl.com 68 $ if f$search("[--.src]curl.exe") .eqs. ""
72 $ if f$search(libfile) .nes. ""
78 $ if f$search(libfile) .nes. ""
build_gnv_curl_pcsi_text.com 79 $ if f$search("[--]readme.") .nes. ""
83 $ if f$search("[--]$README.") .nes. ""
92 $ if f$search("[--]copying.") .nes. ""
96 $ if f$search("[--]$COPYING.") .nes. ""
  /build/tools/droiddoc/templates-sac/assets/css/
default.css 1478 Header, Login, Nav-X, Search
1526 .search {
1531 .search .bottom, .search .left, .search .right {
1535 .search .bottom {
1541 .search .left, .search .right {
1545 .search .left { top: 19px; left: 0 }
1546 .search .right { top: 19px; right: 0
    [all...]
  /development/samples/SearchableDictionary/src/com/example/android/searchabledict/
DictionaryProvider.java 53 * Builds up a UriMatcher for search suggestion and shortcut refresh queries.
67 * Quick Search Box, in which case, the following Uris would be provided and we
82 * Handles all the dictionary searches and suggestion queries from the Search Manager.
85 * the search query as the first element.
105 return search(selectionArgs[0]);
128 private Cursor search(String query) { method in class:DictionaryProvider
151 * Quick Search Box. In which case, this method will query the table for the specific
SearchableDictionary.java 41 * Displays search results triggered by the search dialog and handles
42 * actions from search suggestions.
64 // invoked again (when the user executes a search from this activity, we don't create
65 // a new instance of this activity, so the system delivers the search intent here)
71 // handles a click on a search suggestion; launches activity to show word
76 // handles a search query
84 * @param query The search query
137 SearchView searchView = (SearchView) menu.findItem(R.id.search).getActionView();
148 case R.id.search
    [all...]
  /external/autotest/client/site_tests/video_WebRtcPeerConnectionWithCamera/
video_WebRtcPeerConnectionWithCamera.py 60 if re.search(r'\s+wWidth\s+1280\s+wHeight\s+720', usb_devices):
64 if re.search(r'\s+wWidth\s+640\s+wHeight\s+480', usb_devices):
  /external/autotest/server/cros/dynamic_suite/
control_file_getter.py 104 candidates = filter(regexp.search, self._files)
123 @param paths: base directories to start search.
161 if regexp.search(name):
169 logging.error('Unable to search directory %d for control '
  /external/chromium-trace/catapult/telemetry/third_party/pyserial/serial/tools/
list_ports_linux.py 53 """search for regexp in text, return 1st group on match"""
55 m = re.search(regexp, text)
58 m = re.search(regexp, text.decode('ascii', 'replace'))
  /external/chromium-trace/catapult/third_party/Paste/docs/web/
site.js 5 if (el.className.search(/\bcontents\b/) > -1) {
  /external/chromium-trace/catapult/third_party/Paste/paste/debug/
prints.py 142 match = self._explicit_re.search(html)
145 match = self._body_re.search(html)
  /external/chromium-trace/catapult/third_party/gsutil/third_party/boto/tests/unit/cloudsearch/
test_connection.py 18 <Arn>arn:aws:cs:us-east-1:1234567890:search/demo</Arn>
19 <Endpoint>search-demo-userdomain.us-east-1.cloudsearch.amazonaws.com</Endpoint>
64 "arn:aws:cs:us-east-1:1234567890:search/demo")
67 "search-demo-userdomain.us-east-1.cloudsearch.amazonaws.com")
105 search = domain.get_search_service()
108 search.endpoint,
109 "search-demo-userdomain.us-east-1.cloudsearch.amazonaws.com")
122 <Arn>arn:aws:cs:us-east-1:1234567890:search/demo</Arn>
123 <Endpoint>search-demo-userdomain.us-east-1.cloudsearch.amazonaws.com</Endpoint>
  /external/chromium-trace/catapult/third_party/gsutil/third_party/boto/tests/unit/cloudsearchdomain/
test_cloudsearchdomain.py 21 "Endpoint": "search-demo.us-east-1.cloudsearch.amazonaws.com"
34 kwargs['host'] = 'search-demo.us-east-1.cloudsearch.amazonaws.com'
87 resp = search_service.search()
  /external/libbrillo/brillo/
secure_blob_unittest.cc 26 auto pos = std::search(
33 auto pos = std::search(
  /external/libopus/doc/
Makefile.am 25 $(INSTALL) -d $(DESTDIR)$(docdir)/html/search
  /external/tpm2/generator/
generator.py 65 if re.search('part2', name, re.IGNORECASE):
69 if re.search('part3', name, re.IGNORECASE):
  /external/vixl/test/
test-runner.cc 67 // Look for 'search' in the arguments.
68 static bool IsInArgs(const char* search, int argc, char* argv[]) {
70 if (strcmp(search, argv[i]) == 0) {
  /packages/apps/Settings/src/com/android/settings/applications/
AdvancedAppSettings.java 30 import com.android.settings.search.BaseSearchIndexProvider;
31 import com.android.settings.search.Indexable;

Completed in 1593 milliseconds

<<11121314151617181920>>