OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:buildfile
(Results
1 - 6
of
6
) sorted by null
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.apache.ant_1.7.1.v20090120-1145/bin/
complete-ant-cmd.pl
43
} elsif ($cmdLine =~ /-(f|
buildfile
)\s+\S*$/) {
63
qw(-
buildfile
-debug -emacs -f -find -help -listener -logfile
76
my $
buildFile
= 'build.xml';
77
if ($cmdLine =~ /-(f|
buildfile
)\s+(\S+)/) {
78
$
buildFile
= $2;
80
return () unless (-f $
buildFile
);
84
my $cacheFile = $
buildFile
;
86
if ((!-e $cacheFile) || (-M $
buildFile
) < (-M $cacheFile)) {
88
open( HELP, "$antCmd -projecthelp -f '$
buildFile
'|" ) || return();
/development/tools/labpretest/
labpretest.sh
23
buildfile
=''
346
#
buildfile
355
if [ "$
buildfile
" == "" ]; then
357
buildfile
=`\ls -1 $ROOT/$product 2>&1 | sed -n 's/\([a-z]\+-img-[0-9]\+.zip\)/\1/ p'`
358
if [ "$
buildfile
" == "" ]; then
359
log_print "build file empty: $
buildfile
"
362
if [ ! -e "$ROOT/$product/$
buildfile
" ]; then
363
log_print "build file not found: ./$product/$
buildfile
"
366
log_print "using $ROOT/$product/$
buildfile
as the system image file"
369
fastboot_command update $ROOT/$product/$
buildfile
[
all
...]
/sdk/eclipse/plugins/com.android.ide.eclipse.tests/src/com/android/ide/eclipse/adt/internal/wizards/exportgradle/
ExportGradleTest.java
76
File
buildfile
= new File(javaProject.getResource().getLocation().toString(),
78
assertTrue(
buildfile
.exists());
79
String contents = Files.toString(
buildfile
, Charsets.UTF_8);
153
File
buildfile
= new File(javaProject.getResource().getLocation().toString(),
155
assertTrue(
buildfile
.exists());
156
String contents = Files.toString(
buildfile
, Charsets.UTF_8);
221
File
buildfile
= new File(javaProject.getResource().getLocation().toString(), "build.gradle");
222
assertTrue(
buildfile
.exists());
223
String contents = Files.toString(
buildfile
, Charsets.UTF_8);
/prebuilts/tools/darwin-x86/bazel/
bazel-complete.bash
220
local root
buildfile
rule_pattern r result
232
buildfile
="$root/$package_name/BUILD"
233
if [ -f "$
buildfile
" ]; then
235
"$pattern" "$rule_prefix" <"$
buildfile
")
[
all
...]
/prebuilts/tools/linux-x86/bazel/
bazel-complete.bash
220
local root
buildfile
rule_pattern r result
232
buildfile
="$root/$package_name/BUILD"
233
if [ -f "$
buildfile
" ]; then
235
"$pattern" "$rule_prefix" <"$
buildfile
")
[
all
...]
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/wizards/exportgradle/
BuildFileCreator.java
104
* Create
buildfile
for the projects.
231
String
buildfile
= instance.mBuildFile.toString();
local
233
new ByteArrayInputStream(
buildfile
.getBytes("UTF-8")); //$NON-NLS-1$
294
* @param GradleModule create
buildfile
for this project
517
private static void writeRootBuildGradle(File
buildFile
) throws IOException {
523
Files.write(sb.toString(),
buildFile
, Charsets.UTF_8);
Completed in 203 milliseconds