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

1 2 3 45 6 7 8 91011>>

  /toolchain/binutils/binutils-2.25/ld/
ldfile.c 94 /* Adds NAME to the library search path.
131 einfo (_("%X%P: error: library search path \"%s\" is unsafe for "
134 einfo (_("%P: warning: library search path \"%s\" is unsafe for "
167 If we can't open the file as an object file, stop the search
347 /* Search for and open the file specified by ENTRY. If it is an
356 search_dirs_type *search; local
380 for (search = search_head; search != NULL; search = search->next
562 search_dirs_type *search; local
    [all...]
  /external/v8/test/mjsunit/
testcfg.py 70 files_match = FILES_PATTERN.search(source);
75 files_match = FILES_PATTERN.search(source, files_match.end())
81 if SELF_SCRIPT_PATTERN.search(source):
85 if not context.no_harness and not NO_HARNESS_PATTERN.search(source):
88 if MODULE_PATTERN.search(source):
  /external/vixl/tools/
lint.py 85 if LINT_ERROR_LINE_REGEXP.search(line):
89 elif LINT_DONE_PROC_LINE_REGEXP.search(line):
92 elif LINT_STATUS_LINE_REGEXP.search(line):
101 res = re.search('\d+$', status_line)
164 return CPP_EXT_REGEXP.search(filename) != None
  /external/chromium-trace/catapult/third_party/py_vulcanize/third_party/rcssmin/bench/
cssmin.py 84 match = regex.search(css)
90 match = regex.search(css)
130 match = regex.search(css)
135 match = regex.search(css)
168 match = regex.search(css)
174 match = regex.search(css, match.end() - 3)
176 match = regex.search(css, match.end())
  /sdk/eclipse/plugins/com.android.ide.eclipse.pdt/src/com/android/ide/eclipse/pdt/internal/
SourceRevealer.java 29 import org.eclipse.jdt.core.search.IJavaSearchConstants;
30 import org.eclipse.jdt.core.search.SearchEngine;
31 import org.eclipse.jdt.core.search.SearchMatch;
32 import org.eclipse.jdt.core.search.SearchParticipant;
33 import org.eclipse.jdt.core.search.SearchPattern;
34 import org.eclipse.jdt.core.search.SearchRequestor;
126 se.search(searchPattern,
  /external/autotest/client/cros/
ec.py 76 return (re.search(self.HELLO_RE, response) is not None)
85 return (re.search(self.TOGGLE_AUTO_FAN_RE, response) is not None)
95 match = re.search(self.GET_FANSPEED_RE, response)
112 return (re.search(self.SET_FANSPEED_RE, response) is not None)
124 match = re.search(self.TEMP_SENSOR_RE, response)
136 return (re.search(self.BATTERY_RE, response) is not None)
148 return (re.search(self.LIGHTBAR_RE, response, re.MULTILINE) is not None)
216 match = re.search(PORT_INFO_RE,
254 match = re.search(SVID_RE, line)
tpm_dam.py 54 match = re.search(r'Manufacturer: (0x[0-9A-Fa-f]*)', caps)
  /external/autotest/client/site_tests/power_ARMSettings/
power_ARMSettings.py 54 match = re.search(r'ARMv[4-7]', cpuinfo)
69 match = re.search(r'Power Management:(.*)', iwconfig_out)
108 commit = int(re.search(r'(commit=)([0-9]*)', line).group(2))
  /external/autotest/server/
site_gtest_runner.py 219 status: test results status to search for.
315 results = self._master_name_re.search(line)
320 results = self._disabled.search(line)
336 results = self._flaky.search(line)
352 results = self._test_start.search(line)
372 results = self._test_ok.search(line)
385 results = self._test_fail.search(line)
403 results = self._test_timeout.search(line)
417 results = self._suppression_start.search(line)
429 results = self._suppression_end.search(line
    [all...]
site_log_time_diff.py 41 if self.from_re.search(line):
44 if self.to_re.search(line):
64 logger.error('Search string only appears before start time!')
67 from_match = re.search('kernel:\s*\[\s*([0-9.]*)', self.start_line)
68 to_match = re.search('kernel:\s*\[\s*([0-9.]*)', self.end_line)
87 help='First regexp to search for')
89 help='Second regexp to search for')
91 help='File to search for regexps in')
93 help='Do not search in file.1 for the same expression')
  /packages/apps/Settings/src/com/android/settings/display/
ScreenZoomSettings.java 28 import com.android.settings.search.BaseSearchIndexProvider;
29 import com.android.settings.search.Indexable;
30 import com.android.settings.search.SearchIndexableRaw;
101 /** Index provider used to expose this fragment in search. */
  /system/keymaster/
key_blob_test.cpp 104 EXPECT_EQ(serialized_blob_.end(), std::search(serialized_blob_.begin(), serialized_blob_.end(),
106 EXPECT_NE(serialized_blob_.end(), std::search(serialized_blob_.begin(), serialized_blob_.end(),
143 std::search(serialized_blob_.begin(), serialized_blob_.end(), nonce_.begin(), nonce_.end());
146 std::search(nonce_ptr + 1, serialized_blob_.end(), nonce_.begin(), nonce_.end()));
160 std::search(serialized_blob_.begin(), serialized_blob_.end(), tag_.begin(), tag_.end());
163 std::search(tag_ptr + 1, serialized_blob_.end(), tag_.begin(), tag_.end()));
176 auto ciphertext_ptr = std::search(serialized_blob_.begin(), serialized_blob_.end(),
179 EXPECT_EQ(serialized_blob_.end(), std::search(ciphertext_ptr + 1, serialized_blob_.end(),
212 std::search(serialized_blob_.begin(), serialized_blob_.end(), hw_enforced_data.get(),
216 std::search(hw_enforced_ptr + 1, serialized_blob_.end(), hw_enforced_data.get()
    [all...]
  /art/tools/
analyze-init-failures.py 52 m = _CLASS_RE.search(raw_line)
61 m = _ERROR_LINE_RE.search(raw_line)
71 m = _STACK_LINE_RE.search(raw_line)
92 m = _STACK_LINE_RE.search(raw_line)
  /bionic/libc/upstream-openbsd/lib/libc/stdlib/
lsearch.c 37 #include <search.h>
  /build/tools/atree/
files.h 44 int locate(FileRecord* rec, const vector<string>& search);
  /cts/suite/audio_quality/test_description/conf/
detect_usb_audio.py 37 m = re.search("card(\d+)$", sound_dev)
  /development/testrunner/
am_instrument_parser.py 94 key = re_result.search(line).group(1).strip(string.whitespace)
97 val = re_result.search(line).group(2).strip(string.whitespace)
107 val = re_code.search(line).group(1).strip(string.whitespace)
140 re_status_code = re.search(r'INSTRUMENTATION_STATUS_CODE: '
  /external/apache-xml/src/main/java/org/apache/xml/utils/
IntStack.java 188 public int search(int o) method in class:IntStack
  /external/autotest/client/common_lib/cros/graphite/
elasticsearch_mock_unittest.py 31 """Test mock Elasticsearch.search method"""
32 self.es.search(index='index', body='query')
  /external/autotest/client/cros/video/
histogram_verifier.py 39 return re.search(bucket_pattern, raw_text)
  /external/autotest/client/site_tests/hardware_I2CProbe/
hardware_I2CProbe.py 28 return (re.search('^\d\d:\s+(UU|[0-9a-f]{2})', response, re.MULTILINE) is
  /external/autotest/client/site_tests/hardware_TouchScreenPowerCycles/
hardware_TouchScreenPowerCycles.py 67 touch_screen_pattern.search(line) is not None):
70 result = event_pattern.search(line)
100 result = re.search('E:\s*(\d+(\.\d*)?|\.\d+)', event)
113 count_contacts = len(filter(touch_pattern.search, self.events))
  /external/autotest/client/tests/kernel_sysrq_info/
kernel_sysrq_info.py 44 if re.search(test_cases[key], s) == None:
  /external/autotest/server/site_tests/kernel_EmptyLines/
kernel_EmptyLines.py 30 match = re.search('^\[[\s0-9\.]+\]\s*$', result.stdout, re.M)
  /external/autotest/site_utils/presubmit_hooks/
check_suite_scheduler.py 25 return any (pattern.search(file_path)

Completed in 1016 milliseconds

1 2 3 45 6 7 8 91011>>