/sdk/emulator/opengl/host/tools/emugen/ |
H A D | main.cpp | 92 std::string baseName = std::string(argv[optind]); local 93 ApiGen apiEntries(baseName); 96 std::string typesFilename = inDir + "/" + baseName + TYPES_EXTENTION; 102 std::string filename = inDir + "/" + baseName + SPEC_EXTENSION; 110 apiEntries.genAttributesTemplate(inDir + "/" + baseName + ATTRIB_EXTENSION); 114 std::string attribFileName = inDir + "/" + baseName + ATTRIB_EXTENSION; 123 apiEntries.genOpcodes(encoderDir + "/" + baseName + "_opcodes.h"); 124 apiEntries.genContext(encoderDir + "/" + baseName + "_client_context.h", ApiGen::CLIENT_SIDE); 125 apiEntries.genContextImpl(encoderDir + "/" + baseName + "_client_context.cpp", ApiGen::CLIENT_SIDE); 127 apiEntries.genProcTypes(encoderDir + "/" + baseName [all...] |
/sdk/assetstudio/tests/src/com/android/assetstudiolib/ |
H A D | MenuIconGeneratorTest.java | 23 private void checkGraphic(String baseName) throws IOException { argument 25 checkGraphic(4, "menus", baseName, generator, new GraphicGenerator.Options());
|
H A D | NotificationIconGeneratorTest.java | 25 private void checkGraphic(String baseName, argument 33 checkGraphic(expectedCount, folderName, baseName, generator, options); 36 private void checkGraphic(String baseName, GraphicGenerator.Shape shape) throws IOException { argument 37 checkGraphic(baseName, shape, 1, "notification", 12);
|
H A D | TabIconGeneratorTest.java | 23 private void checkGraphic(String folderName, String baseName, int minSdk, argument 28 checkGraphic(expectedFileCount, folderName, baseName, generator, options);
|
H A D | ActionBarIconGeneratorTest.java | 26 private void checkGraphic(String baseName, Theme theme) throws IOException { argument 31 checkGraphic(4, "actions", baseName, generator, options);
|
H A D | LauncherIconGeneratorTest.java | 25 private void checkGraphic(String baseName, argument 36 checkGraphic(4 + (isWebGraphic ? 1 : 0), "launcher", baseName, generator, options);
|
H A D | GeneratorTest.java | 41 protected void checkGraphic(int expectedFileCount, String folderName, String baseName, argument 47 generator.generate(null, categoryMap, this, options, baseName);
|
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/gre/ |
H A D | RulesEngine.java | 792 String baseName = realFqcn.substring(dotIndex+1); 794 if (Character.isLowerCase(baseName.charAt(0))) { 795 baseName = Character.toUpperCase(baseName.charAt(0)) + baseName.substring(1); 798 baseName + "Rule"; //$NON-NLS-1$
|
/sdk/ddms/libs/ddmuilib/src/com/android/ddmuilib/explorer/ |
H A D | DeviceExplorer.java | 260 String baseName = m.group(1); 263 String dataName = baseName + TRACE_DATA_EXT; 267 handleTraceDoubleClick(baseName, entry, dataEntry); 273 String baseName = m.group(1); 276 String keyName = baseName + TRACE_KEY_EXT; 280 handleTraceDoubleClick(baseName, keyEntry, entry); 396 * @param baseName the base name of the 2 files. 400 private void handleTraceDoubleClick(String baseName, FileEntry keyEntry, argument 408 File f = File.createTempFile(baseName, DdmConstants.DOT_TRACE); 431 command[1] = path + File.separator + baseName; [all...] |
/sdk/lint/libs/lint_checks/src/com/android/tools/lint/checks/ |
H A D | IconDetector.java | 1021 String baseName = name; 1022 int index = baseName.indexOf('.'); 1024 baseName = baseName.substring(0, index); 1027 if (baseName.equals(mApplicationIcon) || name.startsWith("ic_launcher")) { //$NON-NLS-1$
|
H A D | UnusedResourceDetector.java | 163 String baseName = fileName.substring(0, fileName.length() - DOT_XML.length()); 164 String resource = R_PREFIX + typeName + '.' + baseName;
|
/sdk/find_java/ |
H A D | utils.h | 296 // Returns a pointer to the baseName part of the path.
298 const char * baseName() const {
function in class:CPath
|
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/assetstudio/ |
H A D | ConfigureAssetSetPage.java | 1177 String baseName = mValues.outputName; 1178 generator.generate(null, categoryMap, mValues, options, baseName);
|