Searched refs:fs (Results 1 - 25 of 80) sorted by relevance

1234

/frameworks/compile/mclinker/lib/Support/
H A DFileSystem.cpp12 using namespace mcld::sys::fs;
H A DPath.cpp19 using namespace mcld::sys::fs;
169 bool mcld::sys::fs::operator==(const Path& pLHS,const Path& pRHS)
174 bool mcld::sys::fs::operator!=(const Path& pLHS,const Path& pRHS)
179 Path mcld::sys::fs::operator+(const Path& pLHS, const Path& pRHS)
181 mcld::sys::fs::Path result = pLHS;
186 bool mcld::sys::fs::is_separator(char value)
195 bool mcld::sys::fs::exists(const Path &pPath)
202 bool mcld::sys::fs::is_directory(const Path &pPath)
209 std::ostream &mcld::sys::fs::operator<<(std::ostream& pOS,
215 std::istream &mcld::sys::fs
[all...]
/frameworks/compile/mclinker/include/mcld/Support/
H A DPathCache.h23 namespace fs { namespace in namespace:mcld::sys
27 mcld::sys::fs::Path*,
33 } // namespace of fs
H A DRealPath.h19 namespace fs { namespace in namespace:mcld::sys
45 } // namespace of fs
55 struct less<mcld::sys::fs::RealPath> : public binary_function<
56 mcld::sys::fs::RealPath,
57 mcld::sys::fs::RealPath,
60 bool operator() (const mcld::sys::fs::RealPath& pX,
61 const mcld::sys::fs::RealPath& pY) const {
H A DDirectory.h25 namespace fs { namespace in namespace:mcld::sys
36 friend mcld::sys::fs::PathCache::entry_type* detail::bring_one_into_cache(DirIterator& pIter);
89 mcld::sys::fs::Path m_Path;
94 mcld::sys::fs::PathCache m_Cache;
110 friend mcld::sys::fs::PathCache::entry_type* detail::bring_one_into_cache(DirIterator& pIter);
113 typedef mcld::sys::fs::PathCache DirCache;
150 } // namespace of fs
H A DCommandLine.h21 // parser<mcld::sys::fs::Path>
27 class parser<mcld::sys::fs::Path> : public basic_parser<mcld::sys::fs::Path>
33 mcld::sys::fs::Path &Val);
37 const mcld::sys::fs::Path &V,
H A DFileHandle.h74 bool open(const sys::fs::Path& pPath,
77 bool open(const sys::fs::Path& pPath,
101 const sys::fs::Path& path() const
131 sys::fs::Path m_Path;
H A DDerivedPositionDependentOptions.h29 sys::fs::RealPath m_Path;
32 FileOption(unsigned pPosition, Type pType, const sys::fs::Path &pPath)
37 inline const sys::fs::Path *path() const { return &m_Path; }
54 BitcodeOption(unsigned pPosition, const sys::fs::Path &pPath)
74 InputFileOption(unsigned pPosition, const sys::fs::Path &pPath)
/frameworks/ml/bordeaux/learning/predictor_histogram/java/android/bordeaux/learning/
H A DpredictorHist.java65 public void pushSample( String fs) { argument
67 if (mCountHist.get(fs) != null )
68 histValue = histValue + mCountHist.get(fs);
69 mCountHist.put(fs,histValue);
76 public float getProbability(String fs) { argument
78 if (mCountHist.get(fs) != null )
79 res = ((float) mCountHist.get(fs)) / ((float)mSampleCount);
/frameworks/av/media/libstagefright/codecs/avc/common/src/
H A Ddpb.cpp35 dpb->fs[num_fs] = NULL;
82 /* fs is an array pointers to AVCDecPicture */
83 dpb->fs[num_fs] = (AVCFrameStore*) avcHandle->CBAVC_Malloc(userData, sizeof(AVCFrameStore), 101/*DEFAULT_ATTR*/);
84 if (dpb->fs[num_fs] == NULL)
90 dpb->fs[num_fs]->base_dpb = dpb->decoded_picture_buffer + dpb->used_size;
92 dpb->fs[num_fs]->IsReference = 0;
93 dpb->fs[num_fs]->IsLongTerm = 0;
94 dpb->fs[num_fs]->IsOutputted = 3;
95 dpb->fs[num_fs]->frame.RefIdx = refIdx++; /* this value will remain unchanged through out the encoding session */
96 dpb->fs[num_f
694 AVCFrameStore *fs = dpb->fs[idx]; local
[all...]
H A Dreflist.cpp42 if ((dpb->fs[i]->IsReference == 3) && (!dpb->fs[i]->IsLongTerm))
45 if (dpb->fs[i]->FrameNum > (int)sliceHdr->frame_num)
47 dpb->fs[i]->FrameNumWrap = dpb->fs[i]->FrameNum - video->MaxFrameNum;
51 dpb->fs[i]->FrameNumWrap = dpb->fs[i]->FrameNum;
53 dpb->fs[i]->frame.PicNum = dpb->fs[i]->FrameNumWrap;
66 if ((dpb->fs[
[all...]
/frameworks/compile/mclinker/lib/MC/
H A DMCLDOutput.cpp19 Output::Output(const sys::fs::Path& pRealPath,
H A DContextFactory.cpp17 : UniqueGCFactoryBase<sys::fs::Path, LDContext, 0>(pNum)
25 LDContext* ContextFactory::produce(const sys::fs::Path& pPath)
29 result = UniqueGCFactoryBase<sys::fs::Path, LDContext, 0>::allocate();
H A DMCLDFile.cpp29 const sys::fs::Path& pPath,
40 size_t pos = pName.find_last_of(sys::fs::separator);
/frameworks/compile/mclinker/include/mcld/MC/
H A DContextFactory.h35 class ContextFactory : public UniqueGCFactoryBase<sys::fs::Path, LDContext, 0>
42 LDContext* produce(const sys::fs::Path& pPath);
H A DMCLDDirectory.h26 class MCLDDirectory : public sys::fs::Directory
40 void setSysroot(const sys::fs::Path& pPath);
H A DMCLDFile.h41 * @see mcld::sys::fs::Path LDContext
61 const sys::fs::Path& pPath,
73 void setPath(const sys::fs::Path& pPath)
92 const sys::fs::Path& path() const
116 sys::fs::Path m_Path;
145 const sys::fs::Path& pPath,
157 const mcld::sys::fs::Path& pPath,
H A DSearchDirs.h25 namespace fs { namespace in namespace:mcld::sys
27 } // namespace of fs
52 sys::fs::Path* find(const std::string& pNamespec, mcld::Input::Type pPreferType);
/frameworks/compile/mclinker/unittests/
H A DDirIteratorTest.h16 namespace fs { namespace in namespace:mcld::sys
46 mcld::sys::fs::Directory *m_pDir;
H A DDirIteratorTest.cpp14 using namespace mcld::sys::fs;
27 m_pDir = new mcld::sys::fs::Directory(".");
H A DPathTest.h39 mcld::sys::fs::Path* m_pTestee;
H A DTestLinkerTest.cpp17 using namespace mcld::sys::fs;
47 mcld::sys::fs::Path path = TOPDIR;
67 mcld::sys::fs::Path top_level = TOPDIR;
/frameworks/ml/bordeaux/service/src/android/bordeaux/services/
H A DFeatureAssembly.java58 String fs = s;
62 fs = fs + "+" + mAggregatorManager.getDataMap(f).get(f);
64 return fs;
/frameworks/base/core/tests/coretests/src/android/app/
H A DDownloadManagerStressTest.java155 StatFs fs = new StatFs(CACHE_DIR);
156 int blockSize = fs.getBlockSize();
157 int availableBlocks = fs.getAvailableBlocks();
175 while (fs.getAvailableBlocks() >= remainderSizeBlocks) {
177 fs.restat(CACHE_DIR);
190 long spaceAvailable = fs.getAvailableBlocks() * blockSize;
/frameworks/base/tests/LowStorageTest/src/com/android/lowstoragetest/
H A DLowStorageTest.java83 FileOutputStream fs =
87 fs.write(buf);
88 fs.flush();
93 fs.write(buf);
94 fs.flush();
95 fs.close();

Completed in 4891 milliseconds

1234