Home
last modified time | relevance | path

Searched refs:find (Results 1 – 25 of 81) sorted by relevance

1234

/build/kati/testcase/
Dfind_command.mk52 $(call run_find, find testdir)
53 $(call run_find, find .)
55 $(call run_find, find ./)
56 $(call run_find, find .///)
57 $(call run_find, find )
58 $(call run_find, find ./.)
59 $(call run_find, find ././)
61 $(call run_find, find testdir/../testdir)
63 $(call run_find, find testdir -print)
65 $(call run_find, find testdir -name foo)
[all …]
Dfind_command_sorted.mk11 $(call run_find, find .)
Dwerror_find_emulator.sh22 FOO := \$(shell find does/not/exist -name '*.txt')
/build/make/tools/droiddoc/templates-ndk/assets/design/
Ddefault.js32 var $selNavLink = $('.nav-y').find('a[href="' + pagePath + '"]');
45 $prevLink = $prevListItem.find('a:last');
48 $prevLink = $prevListItem.find('a:eq(0)');
52 $prevLink = $selListItem.parents('li').find('a');
71 $nextLink = $selListItem.find('ul').find('a:eq(0)')
74 $nextLink = $selListItem.next('li').find('a:eq(0)');
77 $nextLink = $selListItem.parents('li').next('li.nav-section').find('a:eq(0)');
122 $('.nav-y li').has('ul').find('a:eq(0)').click(function(evt) {
/build/make/tools/droiddoc/templates-pdk/assets/design/
Ddefault.js32 var $selNavLink = $('#nav').find('a[href="' + pagePath + '"]');
45 $prevLink = $prevListItem.find('a:last');
48 $prevLink = $prevListItem.find('a:eq(0)');
52 $prevLink = $selListItem.parents('li').find('a');
71 $nextLink = $selListItem.find('ul').find('a:eq(0)')
74 $nextLink = $selListItem.next('li').find('a:eq(0)');
77 $nextLink = $selListItem.parents('li').next('li.nav-section').find('a:eq(0)');
122 $('.nav-section-header').find('a:eq(0)').click(function(evt) {
/build/soong/docs/
Dperf.md40 .../kati.go:127: *kati*: 0.217 find device vendor -type f -name \*.pk8 -o -name verifiedboot\* -o …
41 .../kati.go:127: *kati*: 0.105 cd packages/apps/Dialer ; find -L . -type d -name "res"
42 .../kati.go:127: *kati*: 0.035 find device vendor -maxdepth 4 -name '*_aux_variant_config.mk' -o -…
43 .../kati.go:127: *kati*: 0.029 cd frameworks/base ; find -L core/java graphics/java location/java…
44 .../kati.go:127: *kati*: 0.025 test -d device && find -L device -maxdepth 4 -path '*/marlin/BoardC…
45 .../kati.go:127: *kati*: 0.023 find packages/apps/Settings/tests/robotests -type f -name '*Test.ja…
46 .../kati.go:127: *kati*: 0.022 test -d vendor && find -L vendor -maxdepth 4 -path '*/marlin/BoardC…
47 .../kati.go:127: *kati*: 0.017 cd cts/tests/tests/shortcutmanager/packages/launchermanifest ; find
48 .../kati.go:127: *kati*: 0.016 cd cts/tests/tests/shortcutmanager/packages/launchermanifest ; find
49 .../kati.go:127: *kati*: 0.015 cd libcore && (find luni/src/test/java -name "*.java" 2> /dev/null)…
[all …]
/build/kati/
Dninja.cc50 const size_t found = cmd.find(name); in FindCommandLineFlag()
63 index = val.find(name); in FindCommandLineFlagWithArg()
66 index = val.find(name); in FindCommandLineFlagWithArg()
81 size_t index = cmdline.find(' '); in GetGomaccPosForAndroidCompileCommand()
100 return rest.find(" -c ") != string::npos ? 0 : string::npos; in GetGomaccPosForAndroidCompileCommand()
133 if (cmd->find("bin/llvm-rs-cc ") != string::npos) { in GetDepfileFromCommand()
143 if (cmd->find(p) != string::npos) { in GetDepfileFromCommand()
145 const size_t found = cmd->find(rm_f); in GetDepfileFromCommand()
158 if (cmd->find(as) != string::npos) { in GetDepfileFromCommand()
442 } else if (translated.find("/gomacc") != string::npos) { in GenShellScript()
[all …]
Dpathutil_test.go203 cmd: `find testdir -name "file1"`,
211 cmd: `find testdir -name "*1"`,
219 cmd: `find testdir -name "*1" -and -name "file*"`,
227 cmd: `find testdir -name "*1" -or -name "file*"`,
235 cmd: `find testdir -name "*1" -or -type f`,
243 cmd: `find testdir -name "*1" -or -not -type f`,
251 cmd: `find testdir -name "*1" -or \! -type f`,
259 cmd: `find testdir -name "*1" -or -type d`,
267 cmd: `find testdir -name "*1" -or -type l`,
275 cmd: `find testdir -name "*1" -a -type l -o -name "dir*"`,
[all …]
Ddep.cc110 auto found = children_.find(name[0]); in Get()
132 size_t dot_index = rest.find('.'); in IsSuffixRule()
136 rest.substr(dot_index + 1).find('.') != string::npos) { in IsSuffixRule()
379 return (rules_.find(target) != rules_.end()) || phony_.exists(target) || in Exists()
384 auto found = rules_.find(s); in GetRuleInputs()
442 size_t dot_index = rest.find('.'); in PopulateSuffixRule()
495 auto found = rules_.find(o); in LookupRuleMerger()
503 auto found = rule_vars_.find(o); in LookupRuleVars()
555 auto found = rule_vars_.find(output); in MergeImplicitRuleVars()
604 SuffixRuleMap::const_iterator found = suffix_rules_.find(output_suffix); in PickRule()
[all …]
Dvar.cc82 auto it = diagnostic_messages_.find(this); in diagnostic_message_text()
88 auto it = diagnostic_messages_.find(this); in DeprecatedMessage()
174 auto found = find(name); in Lookup()
186 auto found = find(name); in Peek()
Dfunc.h58 unique_ptr<FindCommand> find; member
Dshellutil.go144 var errFindEmulatorDisabled = errors.New("builtin: find emulator disabled")
Dstring_piece.h151 size_type find(const StringPiece& s, size_type pos = 0) const;
152 size_type find(char c, size_type pos = 0) const;
158 return find(c, pos);
Dstring_piece.cc62 size_type StringPiece::find(const StringPiece& s, size_type pos) const { in find() function in StringPiece
72 size_type StringPiece::find(char c, size_type pos) const { in find() function in StringPiece
76 const char* result = std::find(ptr_ + pos, ptr_ + length_, c); in find()
/build/make/tools/
Dextract_kernel.py47 null_idx = input_bytes.find('\x00', start_idx)
60 idx = input_bytes.find(LINUX_BANNER_PREFIX, idx)
81 idx = input_bytes.find(CONFIG_PREFIX + GZIP_HEADER)
101 idx = input_bytes.find(search_bytes)
Dmktarball.sh28 subdirs=`find ${dir_to_tar} -type d -print`
29 files=`find ${dir_to_tar} \! -type d -print`
Dprint_module_licenses.sh2 find . -name MODULE_LICENSE_\* | sed 's/\/MODULE_LICENSE_/\ /' | sed 's/\.\///' | awk '{ print $2 "…
Dfixlinebreaks.sh7 FILES=`find . \( -iname '*.c' -o -iname '*.cpp' -o -iname '*.h' -o -iname '*.mk' -o -iname '*.html'…
/build/
Denvsetup.sh1153find -E . -name .repo -prune -o -name .git -prune -o -type f -iregex '.*\.(c|h|cc|cpp|hpp|S|java|…
1161find . -name .repo -prune -o -name .git -prune -o -type f -iregex '.*\.\(c\|h\|cc\|cpp\|hpp\|S\|j…
1174find . -name .repo -prune -o -name .git -prune -o -name out -prune -o -type f -name "*\.gradle" \
1180 find . -name .repo -prune -o -name .git -prune -o -name out -prune -o -type f -name "*\.java" \
1186find . -name .repo -prune -o -name .git -prune -o -name out -prune -o -type f \( -name '*.c' -o -n…
1193 …for dir in `find . -name .repo -prune -o -name .git -prune -o -name out -prune -o -name res -type …
1194 find $dir -type f -name '*\.xml' -exec grep --color -n "$@" {} +
1200find . -name .repo -prune -o -name .git -prune -o -path ./out -prune -o -type f -name 'AndroidMani…
1206 find . -name .repo -prune -o -name .git -prune -o -path ./out -prune -o -name sepolicy -type d \
1212 find . -name .repo -prune -o -name .git -prune -o -name out -prune -o -type f -name "*\.rc*" \
[all …]
/build/make/
Denvsetup.sh1153find -E . -name .repo -prune -o -name .git -prune -o -type f -iregex '.*\.(c|h|cc|cpp|hpp|S|java|…
1161find . -name .repo -prune -o -name .git -prune -o -type f -iregex '.*\.\(c\|h\|cc\|cpp\|hpp\|S\|j…
1174find . -name .repo -prune -o -name .git -prune -o -name out -prune -o -type f -name "*\.gradle" \
1180 find . -name .repo -prune -o -name .git -prune -o -name out -prune -o -type f -name "*\.java" \
1186find . -name .repo -prune -o -name .git -prune -o -name out -prune -o -type f \( -name '*.c' -o -n…
1193 …for dir in `find . -name .repo -prune -o -name .git -prune -o -name out -prune -o -name res -type …
1194 find $dir -type f -name '*\.xml' -exec grep --color -n "$@" {} +
1200find . -name .repo -prune -o -name .git -prune -o -path ./out -prune -o -type f -name 'AndroidMani…
1206 find . -name .repo -prune -o -name .git -prune -o -path ./out -prune -o -name sepolicy -type d \
1212 find . -name .repo -prune -o -name .git -prune -o -name out -prune -o -type f -name "*\.rc*" \
[all …]
/build/make/core/tasks/
Dfind-shareduid-violation.mk19 find_shareduid_script := $(BUILD_SYSTEM)/tasks/find-shareduid-violation.py
/build/make/tools/droiddoc/templates-ndk/assets/js/
Ddocs.js269 var $selNavLink = $('#nav').find('a[href="' + pagePath + '"]');
283 $prevLink = $prevListItem.find('a:last');
286 $prevLink = $prevListItem.find('a:eq(0)');
291 $prevLink = $selListItem.parents('li').find('a');
308 $nextLink = $selListItem.find('ul:eq(0)').find('a:eq(0)');
312 $nextLink = $selListItem.next('li').find('a');
320 if ($selListItem.find('a[description]').length) {
326 $nextLink = $selListItem.next('li').find('a:eq(0)');
330 $nextLink = $selListItem.parents('li:eq(0)').next('li').find('a:eq(0)');
332 $nextLink = $selListItem.parents('li:eq(1)').next('li.nav-section').find('a:eq(0)');
[all …]
/build/make/tools/droiddoc/test/stubs/
Dfunc.sh34 find $SRC_DIR -name '*.java' > $OBJ_DIR/javadoc-src-list
67 find $STUBS_DIR -name "*.java" > $OBJ_DIR/java-src-list
Drun.sh24 find $DIR/src -name "*.java" | xargs javac -d out/stubs_compiled
/build/make/core/
Dlink_type.mk13 my_link_prefix := LINK_TYPE:$(call find-idf-prefix,$(my_kind),$(my_host_cross))$(if $(filter AUX,$(…

1234