OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:outputPath
(Results
1 - 23
of
23
) sorted by null
/cts/tools/cts-xml-generator/src/com/android/cts/xmlgenerator/
CtsXmlGenerator.java
46
String
outputPath
= null;
72
outputPath
= getArg(args, ++i, "Missing value for output file");
106
name, runner, instrumentation, targetNameSpace, jarPath, testType,
outputPath
);
/external/skia/tools/
render_pdfs_main.cpp
140
SkString
outputPath
;
141
if (!make_output_filepath(&
outputPath
, outputDir, inputFilename)) {
145
SkFILEWStream* stream = SkNEW_ARGS(SkFILEWStream, (
outputPath
.c_str()));
147
SkDebugf("Could not write to file %s\n",
outputPath
.c_str());
render_pictures_main.cpp
192
SkString*
outputPath
= NULL;
194
outputPath
= SkNEW(SkString);
195
make_output_filepath(
outputPath
, *outputDir, inputFilename);
198
bool success = renderer.render(
outputPath
, out);
199
if (
outputPath
) {
201
SkDebugf("Could not write to file %s\n",
outputPath
->c_str());
203
SkDELETE(
outputPath
);
365
SkString
outputPath
;
366
make_output_filepath(&
outputPath
, *outputDir, inputFilename);
367
outputPath
.append(".png")
[
all
...]
/external/apache-harmony/support/src/test/java/org/apache/harmony/testframework/serialization/
SerializationTest.java
88
private static final String
outputPath
= System.getProperty(GOLDEN_PATH,
161
if (
outputPath
!= null &&
outputPath
.length() != 0) {
162
path =
outputPath
+ File.separator + path;
177
String goldenPath =
outputPath
+ File.separatorChar
/external/svox/PicoLangInstallerDeuDeu/src/com/svox/pico/voice/deu/deu/
InstallerActivity.java
83
String
outputPath
= outputFile.getCanonicalPath();
84
name =
outputPath
85
.substring(
outputPath
.lastIndexOf("/") + 1);
86
outputPath
=
outputPath
.substring(0,
outputPath
88
File outputDir = new File(
outputPath
);
90
outputFile = new File(
outputPath
, name);
/external/svox/PicoLangInstallerEngGbr/src/com/svox/pico/voice/eng/gbr/
InstallerActivity.java
83
String
outputPath
= outputFile.getCanonicalPath();
84
name =
outputPath
85
.substring(
outputPath
.lastIndexOf("/") + 1);
86
outputPath
=
outputPath
.substring(0,
outputPath
88
File outputDir = new File(
outputPath
);
90
outputFile = new File(
outputPath
, name);
/external/svox/PicoLangInstallerEngUsa/src/com/svox/pico/voice/eng/usa/
InstallerActivity.java
83
String
outputPath
= outputFile.getCanonicalPath();
84
name =
outputPath
85
.substring(
outputPath
.lastIndexOf("/") + 1);
86
outputPath
=
outputPath
.substring(0,
outputPath
88
File outputDir = new File(
outputPath
);
90
outputFile = new File(
outputPath
, name);
/external/svox/PicoLangInstallerFraFra/src/com/svox/pico/voice/fra/fra/
InstallerActivity.java
83
String
outputPath
= outputFile.getCanonicalPath();
84
name =
outputPath
85
.substring(
outputPath
.lastIndexOf("/") + 1);
86
outputPath
=
outputPath
.substring(0,
outputPath
88
File outputDir = new File(
outputPath
);
90
outputFile = new File(
outputPath
, name);
/external/svox/PicoLangInstallerItaIta/src/com/svox/pico/voice/ita/ita/
InstallerActivity.java
83
String
outputPath
= outputFile.getCanonicalPath();
84
name =
outputPath
85
.substring(
outputPath
.lastIndexOf("/") + 1);
86
outputPath
=
outputPath
.substring(0,
outputPath
88
File outputDir = new File(
outputPath
);
90
outputFile = new File(
outputPath
, name);
/external/svox/PicoLangInstallerSpaEsp/src/com/svox/pico/voice/spa/esp/
InstallerActivity.java
83
String
outputPath
= outputFile.getCanonicalPath();
84
name =
outputPath
85
.substring(
outputPath
.lastIndexOf("/") + 1);
86
outputPath
=
outputPath
.substring(0,
outputPath
88
File outputDir = new File(
outputPath
);
90
outputFile = new File(
outputPath
, name);
/external/svox/picolanginstaller/src/com/svox/langpack/installer/
InstallerActivity.java
84
String
outputPath
= outputFile.getCanonicalPath();
85
name =
outputPath
86
.substring(
outputPath
.lastIndexOf("/") + 1);
87
outputPath
=
outputPath
.substring(0,
outputPath
89
File outputDir = new File(
outputPath
);
91
outputFile = new File(
outputPath
, name);
/libcore/support/src/test/java/org/apache/harmony/testframework/serialization/
SerializationTest.java
69
private static final String
outputPath
= System.getProperty(GOLDEN_PATH,
116
if (
outputPath
!= null &&
outputPath
.length() != 0) {
117
path =
outputPath
+ File.separator + path;
132
String goldenPath =
outputPath
+ File.separatorChar
/external/robolectric/src/main/java/com/xtremelabs/robolectric/shadows/
ShadowMediaRecorder.java
35
private String
outputPath
;
106
outputPath
= path;
210
return
outputPath
;
/frameworks/wilhelm/tests/examples/
slesTestDecodeToBuffQueue.cpp
265
char*
outputPath
= (char*) malloc(len + 4 + 1); // save room to concatenate ".raw"
266
if (NULL ==
outputPath
) {
269
memcpy(
outputPath
, path, len + 1);
270
strcat(
outputPath
, ".raw");
271
gFp = fopen(
outputPath
, "w");
slesTestDecodeAac.cpp
443
char*
outputPath
= (char*) malloc(len + 4 + 1); // save room to concatenate ".raw"
444
if (NULL ==
outputPath
) {
447
memcpy(
outputPath
, path, len + 1);
448
strcat(
outputPath
, ".raw");
449
outputFp = fopen(
outputPath
, "w");
452
perror(
outputPath
);
[
all
...]
/cts/tools/utils/
DescriptionGenerator.java
107
String
outputPath
= XML_OUTPUT_PATH;
111
outputPath
= option[1];
117
xmlGenerator = new XMLGenerator(
outputPath
);
257
XMLGenerator(String
outputPath
) throws ParserConfigurationException {
258
mOutputPath =
outputPath
;
/developers/build/lib/
buildSrc.jar
/developers/samples/android/ui/window/AdvancedImmersiveMode/buildSrc/libs/
buildSrc.jar
/prebuilts/devtools/tools/lib/
ant-tasks.jar
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
org.eclipse.pde.core_3.6.1.v20100902_r361.jar
org.apache.jasper_5.5.17.v201004212143.jar
org.eclipse.jdt.core_3.6.2.v_A76_R36x.jar
/prebuilts/misc/common/ecj/
ecj.jar
Completed in 1376 milliseconds