/frameworks/base/tools/aapt/ |
SourcePos.h | 9 class SourcePos 15 SourcePos(const String8& f, int l); 16 SourcePos(const SourcePos& that); 17 SourcePos(); 18 ~SourcePos(); 24 bool operator<(const SourcePos& rhs) const;
|
SourcePos.cpp | 1 #include "SourcePos.h" 92 // SourcePos 94 SourcePos::SourcePos(const String8& f, int l) 99 SourcePos::SourcePos(const SourcePos& that) 104 SourcePos::SourcePos() 109 SourcePos::~SourcePos( [all...] |
ResourceTable.h | 16 #include "SourcePos.h" 69 SourcePos sourcePos; 73 AccessorCookie(const SourcePos&p, const String8& a, const String8& v) 74 :sourcePos(p), 135 status_t addPublic(const SourcePos& pos, 141 status_t addEntry(const SourcePos& pos, 152 status_t startBag(const SourcePos& pos, 162 status_t addBag(const SourcePos& pos, 199 void canAddEntry(const SourcePos& pos [all...] |
Symbol.h | 24 #include "SourcePos.h" 47 inline SymbolDefinition(const Symbol& s, const ConfigDescription& c, const SourcePos& src); 52 SourcePos source; 84 SymbolDefinition::SymbolDefinition(const Symbol& s, const ConfigDescription& c, const SourcePos& src)
|
Android.mk | 43 SourcePos.cpp \
|
Command.cpp | 901 SourcePos(manifestFile, tree.getLineNumber()).error( 909 SourcePos(manifestFile, tree.getLineNumber()).error( 920 SourcePos(manifestFile, tree.getLineNumber()).error( [all...] |
ResourceTable.cpp | 296 const SourcePos sourcePos; 307 , sourcePos(in->getPrintableSource(), block.getLineNumber()) 322 if (!outTable->makeAttribute(myPackage, ident, sourcePos, type, comment, appendComment)) { 357 attr.sourcePos.error("A 'name' attribute is required for <attr>\n"); 369 attr.sourcePos.error("Tag <attr> 'format' attribute value \"%s\" not valid\n", 386 attr.sourcePos.error("Tag <attr> 'min' attribute must be a number, not \"%s\"\n", 392 err = outTable->addBag(attr.sourcePos, myPackage, attr16, attr.ident, 404 attr.sourcePos.error("Tag <attr> 'max' attribute must be a number, not \"%s\"\n", 410 err = outTable->addBag(attr.sourcePos, myPackage, attr16, attr.ident [all...] |
AaptAssets.h | 22 #include "SourcePos.h" 320 : name(o.name), sourcePos(o.sourcePos), isPublic(o.isPublic) 327 sourcePos = o.sourcePos; 340 SourcePos sourcePos; 370 status_t addSymbol(const String8& name, int32_t value, const SourcePos& pos) { 381 const SourcePos& pos) { 391 status_t makeSymbolPublic(const String8& name, const SourcePos& pos) [all...] |
XMLNode.cpp | 195 SourcePos(String8(fileName), inXml->getLineNumber()).error( 267 SourcePos(String8(fileName), inXml->getLineNumber()).error( 277 SourcePos(String8(fileName), inXml->getLineNumber()).error( 284 SourcePos(String8(fileName), inXml->getLineNumber()).error("%s (in %s)\n", 319 SourcePos(String8(fileName), inXml->getLineNumber()).error("%s (in %s)\n", 328 SourcePos(String8(fileName), inXml->getLineNumber()).error( 345 SourcePos(String8(fileName), inXml->getLineNumber()).error( 380 SourcePos(String8(fileName), inXml->getLineNumber()).error( 388 SourcePos(String8(fileName), inXml->getLineNumber()).error( 591 SourcePos(file->getSourceFile(), -1).error("Unable to open file for read: %s" [all...] |
AaptAssets.cpp | 547 SourcePos(file->getSourceFile(), -1) 750 SourcePos(mFiles.valueAt(i)->getPrintableSource(), -1).error( 759 SourcePos(mFiles.valueAt(i)->getPrintableSource(), -1).error( 772 SourcePos(mFiles.valueAt(i)->getPrintableSource(), -1).error( 782 SourcePos(mDirs.valueAt(i)->getPrintableSource(), -1).error( 791 SourcePos(mDirs.valueAt(i)->getPrintableSource(), -1).error( 850 entry.sourcePos.error("Symbol '%s' declared with <java-symbol> not defined\n", name.string()); 865 SourcePos pos; [all...] |
Resource.cpp | 325 status_t result = table->addEntry(SourcePos(it.getPath(), 0), 851 table->addEntry(SourcePos(), roundIconPackage, roundIconType, roundIconName, aliasValue, [all...] |
/frameworks/base/tools/aapt/tests/ |
ResourceTable_test.cpp | 27 sp<ResourceTable::ConfigList> configs(new ResourceTable::ConfigList(String16(), SourcePos())); 38 configs->addEntry(defaultConfig, new ResourceTable::Entry(String16(), SourcePos())); 39 configs->addEntry(landConfig, new ResourceTable::Entry(String16(), SourcePos())); 40 configs->addEntry(sw600dpLandConfig, new ResourceTable::Entry(String16(), SourcePos())); 47 sp<ResourceTable::ConfigList> configs(new ResourceTable::ConfigList(String16(), SourcePos())); 58 configs->addEntry(defaultConfig, new ResourceTable::Entry(String16(), SourcePos())); 59 configs->addEntry(v21Config, new ResourceTable::Entry(String16(), SourcePos())); 60 configs->addEntry(sw600dpV13Config, new ResourceTable::Entry(String16(), SourcePos()));
|
/prebuilts/go/darwin-x86/src/go/printer/ |
printer_test.go | 366 // Verify that the SourcePos mode emits correct //line comments 391 err = (&Config{Mode: UseSpaces | SourcePos, Tabwidth: 8}).Fprint(&buf, fset, f1)
|
printer.go | 71 // white space). If there's a difference and SourcePos is set in 209 if p.Config.Mode&SourcePos != 0 && pos.IsValid() && (p.out.Line != pos.Line || p.out.Filename != pos.Filename) { [all...] |
/prebuilts/go/linux-x86/src/go/printer/ |
printer_test.go | 366 // Verify that the SourcePos mode emits correct //line comments 391 err = (&Config{Mode: UseSpaces | SourcePos, Tabwidth: 8}).Fprint(&buf, fset, f1)
|
printer.go | 71 // white space). If there's a difference and SourcePos is set in 209 if p.Config.Mode&SourcePos != 0 && pos.IsValid() && (p.out.Line != pos.Line || p.out.Filename != pos.Filename) { [all...] |
/prebuilts/go/darwin-x86/src/cmd/cgo/ |
main.go | 218 conf.Mode &^= printer.SourcePos
|
out.go | 23 conf = printer.Config{Mode: printer.SourcePos, Tabwidth: 8} [all...] |
/prebuilts/go/linux-x86/src/cmd/cgo/ |
main.go | 218 conf.Mode &^= printer.SourcePos
|
out.go | 23 conf = printer.Config{Mode: printer.SourcePos, Tabwidth: 8} [all...] |