HomeSort by relevance Sort by last modified time
    Searched refs:EntryType (Results 1 - 25 of 30) sorted by null

1 2

  /frameworks/compile/mclinker/include/mcld/Target/
SymbolEntryMap.h 28 typedef ENTRY EntryType;
33 EntryType* entry;
43 const EntryType* lookUp(const ResolveInfo& pSymbol) const;
44 EntryType* lookUp(const ResolveInfo& pSymbol);
46 void record(const ResolveInfo& pSymbol, EntryType& pEntry);
63 template<typename EntryType>
64 const EntryType*
65 SymbolEntryMap<EntryType>::lookUp(const ResolveInfo& pSymbol) const
77 template<typename EntryType>
78 EntryType*
    [all...]
  /external/openfst/src/include/fst/
generic-register.h 27 // objects of KeyType and EntryType.
32 // EntryType must be default constructible.
40 template<class KeyType, class EntryType, class RegisterType>
44 typedef EntryType Entry;
54 const EntryType &entry) {
60 EntryType GetEntry(const KeyType &key) const {
61 const EntryType *entry = LookupEntry(key);
74 virtual EntryType LoadEntryFromSharedObject(const KeyType &key) const {
80 return EntryType();
86 const EntryType *entry = this->LookupEntry(key)
    [all...]
  /cts/tests/tests/rsg/src/android/renderscriptgraphics/cts/
FileA3DTest.java 25 import android.renderscript.FileA3D.EntryType;
59 assertTrue(entry.getEntryType() == FileA3D.EntryType.MESH);
61 for(FileA3D.EntryType et : FileA3D.EntryType.values()) {
76 assertTrue(entry.getEntryType() == FileA3D.EntryType.MESH);
99 assertEquals(FileA3D.EntryType.UNKNOWN, FileA3D.EntryType.valueOf("UNKNOWN"));
100 assertEquals(FileA3D.EntryType.MESH, FileA3D.EntryType.valueOf("MESH"));
102 assertEquals(2, FileA3D.EntryType.values().length)
    [all...]
  /frameworks/base/graphics/java/android/renderscript/
FileA3D.java 50 public enum EntryType {
64 EntryType(int id) {
68 static EntryType toEntryType(int intID) {
69 return EntryType.values()[intID];
85 EntryType mEntryType;
108 public EntryType getEntryType() {
140 if(entry.mEntryType == EntryType.UNKNOWN) {
159 IndexEntry(RenderScript rs, int index, int id, String name, EntryType type) {
190 mFileEntries[i] = new IndexEntry(mRS, i, getID(mRS), names[i], EntryType.toEntryType(ids[i]));
  /frameworks/base/tests/LocationTracker/src/com/android/locationtracker/data/
TrackerEntry.java 73 enum EntryType {
79 private EntryType mType;
81 private TrackerEntry(String tag, EntryType type) {
88 this(loc.getProvider(), EntryType.LOCATION_TYPE);
108 TrackerEntry entry = new TrackerEntry(tag, EntryType.LOG_TYPE);
119 EntryType getType() {
174 if (mType == EntryType.LOCATION_TYPE) {
212 TrackerEntry entry = new TrackerEntry(tag, EntryType.valueOf(sType));
214 if (entry.getType() == EntryType.LOCATION_TYPE) {
KMLFormatter.java 19 import com.android.locationtracker.data.TrackerEntry.EntryType;
46 if (entry.getType() == EntryType.LOCATION_TYPE) {
CSVFormatter.java 19 import com.android.locationtracker.data.TrackerEntry.EntryType;
51 if (entry.getType() == EntryType.LOCATION_TYPE) {
  /external/chromium_org/chrome/browser/ui/webui/
history_ui.h 35 enum EntryType {
42 HistoryEntry(EntryType type, const GURL& url, const base::string16& title,
63 EntryType entry_type;
  /external/chromium/net/disk_cache/
mem_entry_impl.h 49 enum EntryType {
82 EntryType type() const {
  /external/chromium_org/net/disk_cache/
mem_entry_impl.h 48 enum EntryType {
81 EntryType type() const {
  /external/openfst/src/include/fst/extensions/far/
compile-strings.h 49 enum EntryType { LINE = 1, FILE = 2 };
53 EntryType entry_type,
126 EntryType entry_type_;
156 typename StringReader<Arc>::EntryType entry_type;
stlist.h 57 typedef T EntryType;
101 EntryWriter entry_writer_; // Write functor for 'EntryType'
121 typedef T EntryType;
247 const EntryType &GetEntry() const {
254 EntryReader entry_reader_; // Read functor for 'EntryType'
260 mutable EntryType *entry_; // Pointer to the currently read entry
sttable.h 51 typedef T EntryType;
97 EntryWriter entry_writer_; // Write functor for 'EntryType'
118 typedef T EntryType;
226 const EntryType &GetEntry() const {
312 EntryReader entry_reader_; // Read functor for 'EntryType'
320 mutable EntryType *entry_; // Pointer to the currently read entry
  /frameworks/base/tests/RenderScriptTests/SceneGraph/src/com/android/testapp/
TestAppLoadingScreen.java 76 if (entry != null && entry.getEntryType() == FileA3D.EntryType.MESH) {
  /frameworks/base/tests/RenderScriptTests/FBOTest/src/com/android/fbotest/
FBOSyncRS.java 135 if (entry != null && entry.getEntryType() == FileA3D.EntryType.MESH) {
145 if (entry != null && entry.getEntryType() == FileA3D.EntryType.MESH) {
FBOTestRS.java 134 if (entry != null && entry.getEntryType() == FileA3D.EntryType.MESH) {
144 if (entry != null && entry.getEntryType() == FileA3D.EntryType.MESH) {
  /frameworks/base/tests/RenderScriptTests/ModelViewer/src/com/android/modelviewer/
SimpleModelRS.java 133 if (entry != null && entry.getEntryType() == FileA3D.EntryType.MESH) {
143 if (entry != null && entry.getEntryType() == FileA3D.EntryType.MESH) {
SceneGraphRS.java 190 if (entry == null || entry.getEntryType() != FileA3D.EntryType.MESH) {
  /frameworks/base/tests/RenderScriptTests/ShadersTest/src/com/android/shaderstest/
ShadersTestRS.java 146 if (entry != null && entry.getEntryType() == FileA3D.EntryType.MESH) {
156 if (entry != null && entry.getEntryType() == FileA3D.EntryType.MESH) {
  /external/clang/include/clang/AST/
DeclTemplate.h 544 template <typename EntryType> struct SpecEntryTraits {
545 typedef EntryType DeclType;
547 static DeclType *getMostRecentDecl(EntryType *D) {
552 template <typename EntryType,
553 typename _SETraits = SpecEntryTraits<EntryType>,
561 typedef typename llvm::FoldingSetVector<EntryType>::iterator
590 template <typename EntryType>
591 static SpecIterator<EntryType>
592 makeSpecIterator(llvm::FoldingSetVector<EntryType> &Specs, bool isEnd) {
593 return SpecIterator<EntryType>(isEnd ? Specs.end() : Specs.begin())
    [all...]
  /external/chromium_org/chrome/browser/chromeos/file_manager/
file_manager_browsertest.cc 48 enum EntryType {
74 // Maps the given string to EntryType. Returns true on success.
75 bool MapStringToEntryType(const base::StringPiece& value, EntryType* output) {
118 TestEntryInfo(EntryType type,
132 EntryType type;
  /frameworks/base/tests/RenderScriptTests/SceneGraph/src/com/android/scenegraph/
ColladaScene.java 123 if (entry != null && entry.getEntryType() == FileA3D.EntryType.MESH) {
  /external/chromium_org/webkit/browser/quota/
quota_database_unittest.cc 314 template <typename EntryType>
316 std::set<EntryType> table;
322 bool Run(const EntryType& entry) {
  /external/clang/lib/AST/
DeclTemplate.cpp 162 template <class EntryType>
163 typename RedeclarableTemplateDecl::SpecEntryTraits<EntryType>::DeclType*
165 llvm::FoldingSetVector<EntryType> &Specs,
168 typedef SpecEntryTraits<EntryType> SETraits;
170 EntryType::Profile(ID,Args,NumArgs, getASTContext());
171 EntryType *Entry = Specs.FindNodeOrInsertPos(ID, InsertPos);
    [all...]
  /external/llvm/lib/CodeGen/AsmPrinter/
DwarfDebug.h 71 enum EntryType {
77 enum EntryType EntryKind;

Completed in 369 milliseconds

1 2