HomeSort by relevance Sort by last modified time
    Searched refs:fs (Results 1326 - 1350 of 2103) sorted by null

<<51525354555657585960>>

  /frameworks/base/core/java/android/app/
FragmentManager.java 1816 FragmentState fs = new FragmentState(f); local
1913 FragmentState fs = fms.mActive[f.mIndex]; local
1936 FragmentState fs = fms.mActive[i]; local
    [all...]
  /frameworks/compile/slang/
slang.cpp 97 #define FS_SUFFIX "fs"
129 llvm::sys::fs::OpenFlags Flags,
135 EC = llvm::sys::fs::create_directories(
320 OS = OpenOutputFile(OutputFile, llvm::sys::fs::F_Text, EC, mDiagEngine);
328 OS = OpenOutputFile(OutputFile, llvm::sys::fs::F_None, EC, mDiagEngine);
350 OpenOutputFile(OutputFile, llvm::sys::fs::F_Text, EC, mDiagEngine));
  /frameworks/support/fragment/java/android/support/v4/app/
FragmentManager.java 1927 FragmentState fs = new FragmentState(f); local
2024 FragmentState fs = fms.mActive[f.mIndex]; local
2047 FragmentState fs = fms.mActive[i]; local
    [all...]
  /external/valgrind/none/tests/mips64/
fpu_branches.stdout.exp 1 --- BC1F --- if fs == ft then out = ft else out = fs + ft
2 bc1f, c.eq.s out=-4578.500000, fs=0.000000, ft=-4578.500000
3 bc1f, c.eq.d out=-45786.500000, fs=0.000000, ft=-45786.500000
4 bc1f, c.eq.s out=912.500000, fs=456.250000, ft=456.250000
5 bc1f, c.eq.d out=912.500000, fs=456.250000, ft=456.250000
6 bc1f, c.eq.s out=34.031250, fs=3.000000, ft=34.031250
7 bc1f, c.eq.d out=34.031250, fs=3.000000, ft=34.031250
8 bc1f, c.eq.s out=4578.750000, fs=-1.000000, ft=4578.750000
9 bc1f, c.eq.d out=45786.750000, fs=-1.000000, ft=45786.75000
    [all...]
  /prebuilts/go/darwin-x86/pkg/bootstrap/src/bootstrap/compile/internal/gc/
gen.go 153 for fs := from.Sym; fs != nil; fs = fs.Link {
157 for fs := to.Sym; fs != nil; fs = fs.Link {
160 fs := from.Sym
162 fs = fs.Lin
    [all...]
  /prebuilts/go/darwin-x86/src/cmd/compile/internal/gc/
gen.go 150 for fs := from.Sym; fs != nil; fs = fs.Link {
154 for fs := to.Sym; fs != nil; fs = fs.Link {
157 fs := from.Sym
159 fs = fs.Lin
    [all...]
  /prebuilts/go/linux-x86/pkg/bootstrap/src/bootstrap/compile/internal/gc/
gen.go 153 for fs := from.Sym; fs != nil; fs = fs.Link {
157 for fs := to.Sym; fs != nil; fs = fs.Link {
160 fs := from.Sym
162 fs = fs.Lin
    [all...]
  /prebuilts/go/linux-x86/src/cmd/compile/internal/gc/
gen.go 150 for fs := from.Sym; fs != nil; fs = fs.Link {
154 for fs := to.Sym; fs != nil; fs = fs.Link {
157 fs := from.Sym
159 fs = fs.Lin
    [all...]
  /external/clang/lib/Frontend/
ASTUnit.cpp 168 llvm::sys::fs::remove(File);
174 llvm::sys::fs::remove(PreambleFile);
    [all...]
  /external/opencv3/modules/objdetect/test/
test_cascadeandhog.cpp 69 virtual int prepareData( FileStorage& fs );
74 virtual void writeDetector( FileStorage& fs, int di ) = 0;
214 //cvWriteComment( validationFS.fs, buf, 0 );
393 virtual void writeDetector( FileStorage& fs, int di );
418 void CV_CascadeDetectorTest::writeDetector( FileStorage& fs, int di )
421 fs << FILENAME << detectorFilenames[di];
422 fs << C_SCALE_CASCADE << sc;
487 virtual void writeDetector( FileStorage& fs, int di );
504 void CV_HOGDetectorTest::writeDetector( FileStorage& fs, int di )
506 fs << FILENAME << detectorFilenames[di]
    [all...]
  /external/valgrind/VEX/priv/
guest_mips_toIR.c 1112 /* fs - fpu source register number.
1118 static void calculateFCSR(UInt fs, UInt ft, UInt inst, Bool sz32, UInt opN)
1128 mkU32(fs),
1740 UInt fs = get_fs(cins); local
12034 UInt opcode, cins, rs, rt, rd, sa, ft, fs, fd, fmt, tf, nd, function, local
    [all...]
  /external/llvm/tools/bugpoint/
ToolRunner.cpp 125 std::error_code EC = sys::fs::createTemporaryFile(
145 sys::fs::remove(ErrorFilename.c_str());
236 std::string Main = sys::fs::getMainExecutable(Argv0, MainAddr);
464 sys::fs::createUniqueFile(Bitcode + "-%%%%%%%" + Suffix, UniqueFile);
505 sys::fs::remove(OutputAsmFile);
701 sys::fs::createUniqueFile(ProgramFile + "-%%%%%%%.cc.exe", OutputBinary);
810 std::error_code EC = sys::fs::createUniqueFile(
    [all...]
  /external/testng/src/main/java/org/testng/
TestNGAntTask.java 332 public void addXmlfileset(FileSet fs) {
333 m_xmlFilesets.add(fs);
340 public void addClassfileset(FileSet fs) {
341 m_classFilesets.add(appendClassSelector(fs));
902 private FileSet appendClassSelector(FileSet fs) {
906 fs.appendSelector(selector);
908 return fs;
    [all...]
  /prebuilts/go/darwin-x86/src/net/http/
fs_test.go 209 func (fs *testFileSystem) Open(name string) (File, error) {
210 return fs.open(name)
216 fs := FileServer(&testFileSystem{func(name string) (File, error) {
231 fs.ServeHTTP(rec, req)
252 fs := make(fakeFS)
255 fs[fmt.Sprintf("/%d", i)] = &fakeFileInfo{
260 fs[fmt.Sprintf("/%d/%s", i, test.name)] = testFile
263 ts := httptest.NewServer(FileServer(&fs))
547 func (fs fakeFS) Open(name string) (File, error) {
549 f, ok := fs[name
    [all...]
  /prebuilts/go/linux-x86/src/net/http/
fs_test.go 209 func (fs *testFileSystem) Open(name string) (File, error) {
210 return fs.open(name)
216 fs := FileServer(&testFileSystem{func(name string) (File, error) {
231 fs.ServeHTTP(rec, req)
252 fs := make(fakeFS)
255 fs[fmt.Sprintf("/%d", i)] = &fakeFileInfo{
260 fs[fmt.Sprintf("/%d/%s", i, test.name)] = testFile
263 ts := httptest.NewServer(FileServer(&fs))
547 func (fs fakeFS) Open(name string) (File, error) {
549 f, ok := fs[name
    [all...]
  /system/core/libpixelflinger/codeflinger/
GGLAssembler.cpp 160 int fs = i==GGLFormat::ALPHA ? mBlendSrcA : mBlendSrc; local
162 if (fs==GGL_SRC_ALPHA_SATURATE && i==GGLFormat::ALPHA)
163 fs = GGL_ONE;
177 info.blend = (fs != int(GGL_ONE)) || (fd > int(GGL_ZERO));
492 int fs = component==GGLFormat::ALPHA ? mBlendSrcA : mBlendSrc; local
494 if (fs==GGL_SRC_ALPHA_SATURATE && component==GGLFormat::ALPHA) {
495 fs = GGL_ONE;
499 const int blending = blending_codes(fs, fd);
502 const int need_blending = (fs != int(GGL_ONE)) || (fd > int(GGL_ZERO));
    [all...]
  /external/clang/lib/Rewrite/
Rewriter.cpp 410 if (llvm::sys::fs::createUniqueFile(TempFilename, FD, TempFilename)) {
424 if (std::error_code ec = llvm::sys::fs::rename(TempFilename, Filename)) {
430 llvm::sys::fs::remove(TempFilename);
  /external/clang/tools/driver/
driver.cpp 64 return llvm::sys::fs::getMainExecutable(Argv0, P);
291 llvm::sys::fs::make_absolute(InstalledPath);
294 if (llvm::sys::fs::exists(InstalledPath.c_str()))
  /external/clang/unittests/Tooling/
ToolingTest.cpp 267 llvm::sys::fs::createTemporaryFile("depfile", "d", DepFilePath));
275 EXPECT_FALSE(llvm::sys::fs::exists(DepFilePath.str()));
276 EXPECT_FALSE(llvm::sys::fs::remove(DepFilePath.str()));
  /external/mesa3d/src/gallium/drivers/llvmpipe/
lp_state_fs.c 109 * quad arguments with fs length 8.
829 /* TODO: actually pick these based on the fs and color buffer
856 util_snprintf(func_name, sizeof(func_name), "fs%u_variant%u_%s",
    [all...]
  /external/opencv/ml/src/
ml_inner_functions.cpp 63 CvFileStorage* fs = 0; local
69 CV_CALL( fs = cvOpenFileStorage( filename, 0, CV_STORAGE_WRITE ));
70 if( !fs )
73 write( fs, name ? name : default_model_name );
77 cvReleaseFileStorage( &fs );
83 CvFileStorage* fs = 0; local
91 CV_CALL( fs = cvOpenFileStorage( filename, 0, CV_STORAGE_READ ));
92 if( !fs )
96 model_node = cvGetFileNodeByName( fs, 0, name );
99 CvFileNode* root = cvGetRootFileNode( fs );
    [all...]
  /external/opencv3/apps/traincascade/
old_ml_inner_functions.cpp 63 CvFileStorage* fs = 0; local
69 CV_CALL( fs = cvOpenFileStorage( filename, 0, CV_STORAGE_WRITE ));
70 if( !fs )
73 write( fs, name ? name : default_model_name );
77 cvReleaseFileStorage( &fs );
83 CvFileStorage* fs = 0; local
91 CV_CALL( fs = cvOpenFileStorage( filename, 0, CV_STORAGE_READ ));
92 if( !fs )
96 model_node = cvGetFileNodeByName( fs, 0, name );
99 CvFileNode* root = cvGetRootFileNode( fs );
    [all...]
  /external/opencv3/modules/ts/include/opencv2/
ts.hpp 221 virtual int read_params( CvFileStorage* fs );
239 const CvFileNode* find_param( CvFileStorage* fs, const char* param_name );
448 virtual int read_params( CvFileStorage* fs );
  /external/valgrind/include/vki/
vki-x86-linux.h 236 unsigned short fs, __fsh; member in struct:vki_sigcontext
613 unsigned short fs, __fs, gs, __gs; member in struct:vki_user_regs_struct
866 unsigned short fs, __fsh; member in struct:vki_vm86_regs
  /libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/text/
ChoiceFormatTest.java 400 String[] fs = new String[] { "0", "1" }; local
401 f.setChoices(l, fs);
403 assertTrue("Formats copied", f.getFormats() == fs);

Completed in 1848 milliseconds

<<51525354555657585960>>