Searched refs:filename (Results 1 - 14 of 14) sorted by relevance

/sdk/emulator/opengl/host/tools/emugen/
H A DApiGen.h36 int readSpec(const std::string & filename);
69 int genOpcodes(const std::string &filename);
70 int genAttributesTemplate(const std::string &filename);
71 int genProcTypes(const std::string &filename, SideType side);
72 int genFuncTable(const std::string &filename, SideType side);
74 int genContext(const std::string &filename, SideType side);
75 int genContextImpl(const std::string &filename, SideType side);
77 int genEntryPoints(const std::string &filename, SideType side);
79 int genEncoderHeader(const std::string &filename);
80 int genEncoderImpl(const std::string &filename);
[all...]
H A DTypeFactory.h31 int initFromFile(const std::string &filename);
H A Dmain.cpp30 void usage(const char *filename) argument
32 fprintf(stderr, "Usage: %s [options] <base name>\n", filename);
103 std::string filename = inDir + "/" + baseName + SPEC_EXTENSION; local
104 if (apiEntries.readSpec(filename) < 0) {
105 perror(filename.c_str());
H A DApiGen.cpp53 int ApiGen::genProcTypes(const std::string &filename, SideType side) argument
55 FILE *fp = fopen(filename.c_str(), "wt");
57 perror(filename.c_str());
97 int ApiGen::genFuncTable(const std::string &filename, SideType side) argument
99 FILE *fp = fopen(filename.c_str(), "wt");
101 perror(filename.c_str());
129 int ApiGen::genContext(const std::string & filename, SideType side) argument
131 FILE *fp = fopen(filename.c_str(), "wt");
133 perror(filename.c_str());
190 int ApiGen::genEntryPoints(const std::string & filename, SideTyp argument
268 genOpcodes(const std::string &filename) argument
307 genEncoderHeader(const std::string &filename) argument
449 genEncoderImpl(const std::string &filename) argument
682 genDecoderHeader(const std::string &filename) argument
714 genContextImpl(const std::string &filename, SideType side) argument
747 genDecoderImpl(const std::string &filename) argument
956 readSpec(const std::string & filename) argument
[all...]
H A DTypeFactory.cpp65 int TypeFactory::initFromFile(const std::string &filename) argument
71 FILE *fp = fopen(filename.c_str(), "rt");
73 perror(filename.c_str());
/sdk/eclipse/plugins/com.android.ide.eclipse.tests/src/com/android/ide/eclipse/adt/internal/editors/layout/gle2/
H A DLayoutMetadataTest.java75 private Pair<IDocument, UiElementNode> getNode(String filename, String targetId) argument
77 IFile file = getLayoutFile(getProject(), filename);
/sdk/apps/DeviceConfig/src/com/example/android/deviceconfig/
H A DMyActivity.java135 final String filename = configGen.generateConfig();
136 if (filename != null) {
139 File devicesXml = new File(filename);
H A DConfigGenerator.java586 String filename = String.format("devices_%1$tm_%1$td_%1$ty.xml", Calendar.getInstance()
589 File outFile = new File(dir, filename);
590 FileOutputStream out = new FileOutputStream(new File(dir, filename));
/sdk/bash_completion/
H A Dadb.bash324 filename=${tmp:${#filetype}+1}
326 printf '%s/\n' "$filename"
328 printf '%s\n' "$filename"
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/
H A DAdtUtils.java146 * Strips off the last file extension from the given filename, e.g.
151 * @param filename the filename to be stripped
152 * @return the filename without the last file extension.
154 public static String stripLastExtension(String filename) { argument
155 int dotIndex = filename.lastIndexOf('.');
157 return filename.substring(0, dotIndex);
159 return filename;
164 * Strips off all extensions from the given filename, e.g. "foo.9.png" will
169 * @param filename th
172 stripAllExtensions(String filename) argument
[all...]
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/wizards/export/
H A DKeyCheckPage.java123 String filename = ProjectHelper.getApkFilename(mWizard.getProject(),
125 fileDialog.setFileName(filename);
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/build/
H A DAaptParser.java339 // get the filename.
471 // Sadly there's NO filename reference; this error typically describes the
766 private static IResource getResourceFromFullPath(String filename, String root, argument
768 if (filename.startsWith(root)) {
769 String file = filename.substring(root.length());
/sdk/adtproductbuild/
H A DAndroid.mk72 # Defines the zip filename generated for an OS specific android IDE.
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/refactorings/extractstring/
H A DExtractStringRefactoring.java1492 // /project/res/<type>-<configuration>/<filename.xml>
1502 String filename = path.segment(3);
1520 append(filename);

Completed in 6476 milliseconds