OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:search_for
(Results
1 - 4
of
4
) sorted by null
/external/chromium_org/tools/gyp/test/win/
gyptest-cl-function-level-linking.py
22
def CheckForSectionString(binary,
search_for
, should_exist):
24
if should_exist and
search_for
not in output:
25
print 'Did not find "%s" in %s' % (
search_for
, binary)
27
elif not should_exist and
search_for
in output:
28
print 'Found "%s" in %s (and shouldn\'t have)' % (
search_for
, binary)
/external/libffi/testsuite/lib/
libffi-dg.exp
202
#
search_for
-- looks for a string match in a file
204
proc
search_for
{ file pattern } {
231
if [expr [
search_for
$test "for*("]+[
search_for
$test "while*("]] {
/external/chromium_org/chrome/common/importer/
firefox_importer_utils.cc
216
std::string
search_for
= std::string("user_pref(\"") + pref_key +
local
218
size_t prop_index = content.find(
search_for
);
222
size_t start = prop_index +
search_for
.length();
/external/chromium/chrome/browser/importer/
firefox_importer_utils.cc
437
std::string
search_for
= std::string("user_pref(\"") + pref_key +
local
439
size_t prop_index = content.find(
search_for
);
443
size_t start = prop_index +
search_for
.length();
Completed in 363 milliseconds