Home
last modified time | relevance | path

Searched refs:glob (Results 1 – 25 of 106) sorted by relevance

12345

/external/libvpx/libvpx/libmkv/
DWebMElement.c17 void writeHeader(EbmlGlobal *glob) in writeHeader() argument
20 Ebml_StartSubElement(glob, &start, EBML); in writeHeader()
21 Ebml_SerializeUnsigned(glob, EBMLVersion, 1); in writeHeader()
22 Ebml_SerializeUnsigned(glob, EBMLReadVersion, 1); //EBML Read Version in writeHeader()
23 Ebml_SerializeUnsigned(glob, EBMLMaxIDLength, 4); //EBML Max ID Length in writeHeader()
24 Ebml_SerializeUnsigned(glob, EBMLMaxSizeLength, 8); //EBML Max Size Length in writeHeader()
25 Ebml_SerializeString(glob, DocType, "webm"); //Doc Type in writeHeader()
26 Ebml_SerializeUnsigned(glob, DocTypeVersion, 2); //Doc Type Version in writeHeader()
27 Ebml_SerializeUnsigned(glob, DocTypeReadVersion, 2); //Doc Type Read Version in writeHeader()
28 Ebml_EndSubElement(glob, &start); in writeHeader()
[all …]
DEbmlWriter.c21 void Ebml_WriteLen(EbmlGlobal *glob, int64_t val) in Ebml_WriteLen() argument
39 Ebml_Serialize(glob, (void *) &val, sizeof(val), size); in Ebml_WriteLen()
42 void Ebml_WriteString(EbmlGlobal *glob, const char *str) in Ebml_WriteString() argument
46 Ebml_WriteLen(glob, size); in Ebml_WriteString()
50 Ebml_Write(glob, str, (unsigned long)size); in Ebml_WriteString()
53 void Ebml_WriteUTF8(EbmlGlobal *glob, const wchar_t *wstr) in Ebml_WriteUTF8() argument
62 Ebml_WriteLen(glob, size); in Ebml_WriteUTF8()
63 Ebml_Write(glob, wstr, (unsigned long)size); in Ebml_WriteUTF8()
66 void Ebml_WriteID(EbmlGlobal *glob, unsigned long class_id) in Ebml_WriteID() argument
79 Ebml_Serialize(glob, (void *)&class_id, sizeof(class_id), len); in Ebml_WriteID()
[all …]
DEbmlBufferWriter.c11 void Ebml_Write(EbmlGlobal *glob, const void *buffer_in, unsigned long len) in Ebml_Write() argument
13 unsigned char *src = glob->buf; in Ebml_Write()
14 src += glob->offset; in Ebml_Write()
16 glob->offset += len; in Ebml_Write()
19 static void _Serialize(EbmlGlobal *glob, const unsigned char *p, const unsigned char *q) in _Serialize() argument
26 memcpy(&(glob->buf[glob->offset]), q, 1); in _Serialize()
27 glob->offset ++; in _Serialize()
31 void Ebml_Serialize(EbmlGlobal *glob, const void *buffer_in, unsigned long len) in Ebml_Serialize() argument
38 _Serialize(glob, p, q); in Ebml_Serialize()
42 void Ebml_StartSubElement(EbmlGlobal *glob, EbmlLoc *ebmlLoc, unsigned long class_id) in Ebml_StartSubElement() argument
[all …]
DEbmlWriter.h22 void Ebml_Serialize(EbmlGlobal *glob, const void *, int, unsigned long);
23 void Ebml_Write(EbmlGlobal *glob, const void *, unsigned long);
27 void Ebml_WriteLen(EbmlGlobal *glob, int64_t val);
28 void Ebml_WriteString(EbmlGlobal *glob, const char *str);
29 void Ebml_WriteUTF8(EbmlGlobal *glob, const wchar_t *wstr);
30 void Ebml_WriteID(EbmlGlobal *glob, unsigned long class_id);
31 void Ebml_SerializeUnsigned64(EbmlGlobal *glob, unsigned long class_id, uint64_t ui);
32 void Ebml_SerializeUnsigned(EbmlGlobal *glob, unsigned long class_id, unsigned long ui);
33 void Ebml_SerializeBinary(EbmlGlobal *glob, unsigned long class_id, unsigned long ui);
34 void Ebml_SerializeFloat(EbmlGlobal *glob, unsigned long class_id, double d);
[all …]
DEbmlBufferWriter.h17 void Ebml_StartSubElement(EbmlGlobal *glob, EbmlLoc *ebmlLoc, unsigned long class_id);
18 void Ebml_EndSubElement(EbmlGlobal *glob, EbmlLoc *ebmlLoc);
/external/chromium/chrome/common/extensions/
Duser_script.cc25 for (std::vector<std::string>::const_iterator glob = globs->begin(); in UrlMatchesGlobs() local
26 glob != globs->end(); ++glob) { in UrlMatchesGlobs()
27 if (MatchPattern(url.spec(), *glob)) in UrlMatchesGlobs()
115 std::vector<std::string>::const_iterator glob; in Pickle() local
117 for (glob = globs_.begin(); glob != globs_.end(); ++glob) { in Pickle()
118 pickle->WriteString(*glob); in Pickle()
121 for (glob = exclude_globs_.begin(); glob != exclude_globs_.end(); ++glob) { in Pickle()
122 pickle->WriteString(*glob); in Pickle()
165 std::string glob; in Unpickle() local
166 CHECK(pickle.ReadString(iter, &glob)); in Unpickle()
[all …]
Duser_script.h141 void add_glob(const std::string& glob) { globs_.push_back(glob); } in add_glob() argument
146 void add_exclude_glob(const std::string& glob) { in add_exclude_glob() argument
147 exclude_globs_.push_back(glob); in add_exclude_glob()
/external/libvpx/libvpx/
Dvpxenc.c554 void Ebml_Write(EbmlGlobal *glob, const void *buffer_in, unsigned long len) in Ebml_Write() argument
556 (void) fwrite(buffer_in, 1, len, glob->stream); in Ebml_Write()
563 Ebml_Write(glob, &x, 1); \
565 void Ebml_Serialize(EbmlGlobal *glob, const void *buffer_in, int buffer_size, unsigned long len) in Ebml_Serialize() argument
599 static void Ebml_SerializeUnsigned32(EbmlGlobal *glob, unsigned long class_id, uint64_t ui) in Ebml_SerializeUnsigned32() argument
602 Ebml_WriteID(glob, class_id); in Ebml_SerializeUnsigned32()
603 Ebml_Serialize(glob, &sizeSerialized, sizeof(sizeSerialized), 1); in Ebml_SerializeUnsigned32()
604 Ebml_Serialize(glob, &ui, sizeof(ui), 4); in Ebml_SerializeUnsigned32()
609 Ebml_StartSubElement(EbmlGlobal *glob, EbmlLoc *ebmlLoc, in Ebml_StartSubElement() argument
616 Ebml_WriteID(glob, class_id); in Ebml_StartSubElement()
[all …]
/external/webkit/Source/JavaScriptCore/JavaScriptCore.vcproj/JavaScriptCore/
Dreact-to-vsprops-changes.py3 import glob
15 vsprops_files = glob.glob(os.path.join(vsprops_directory, '*.vsprops'))
25 for filepath in glob.iglob(os.path.join(obj_directory, '*', '*.%s' % extension)):
/external/clang/test/SemaObjC/
Dconflict-nonfragile-abi2.m5 int glob;
8 @property int glob; property
19 - (int) Meth { return glob; } // no warning
20 @synthesize glob;
/external/llvm/test/DebugInfo/Inputs/
Ddwarfdump-test-32bit.elf.c3 extern int glob;
7 return a + glob; in foo()
12 return glob - foo(a); in bar()
/external/clang/utils/analyzer/
DSATestBuild.py44 import glob
262 for FullFileName in glob.glob(Dir + "/*"):
342 for F in glob.glob(SBOutputDir + "/*/*.plist"):
356 Failures = glob.glob(SBOutputDir + "/*/failures/*.stderr.txt")
360 Plists = glob.glob(SBOutputDir + "/*/*.plist")
409 RefList = glob.glob(RefDir + "/*")
410 NewList = glob.glob(NewDir + "/*")
/external/harfbuzz_ng/contrib/python/
Dsetup.py5 from glob import glob
33 scripts = glob('scripts/*'),
/external/llvm/test/CodeGen/ARM/
Dcompare-call.ll4 define void @test3(float* %glob, i32 %X) {
6 %tmp = load float* %glob ; <float> [#uses=1]
7 %tmp2 = getelementptr float* %glob, i32 2 ; <float*> [#uses=1]
/external/webkit/Source/WebKit/chromium/
Dgyp_webkit33 import glob
66 supplements = glob.glob(os.path.join(script_dir, '*', 'supplement.gypi'))
/external/chromium/chrome/browser/resources/file_manager/bin/
Dsquashdir.py6 import glob
44 for child_path in glob.glob(abs_src + '/*'):
/external/webkit/Tools/wx/packaging/
Dbuild-mac-installer.py31 import glob
124 files = glob.glob(os.path.join(wxwebkit_dir, wildcard))
129 files = glob.glob(os.path.join(wxwebkit_dir, wildcard))
Dbuild-win-installer.py31 import glob
83 dlls = glob.glob(os.path.join(wxwebkit_dir, "*.dll"))
/external/antlr/antlr-3.4/runtime/Python/
Dsetup.py90 import glob
101 for testPath in glob.glob(os.path.join(testDir, 'test*.py')):
178 import glob
226 for testPath in glob.glob(os.path.join(testDir, test_glob)):
/external/blktrace/btt/
Dbno_plot.py41 import getopt, glob, os, sys, tempfile
78 else: bnos = glob.glob('blknos*[rw].dat')
/external/clang/test/Index/
Dannotate-module.m4 int glob;
23 // CHECK-NEXT: Keyword: "int" [4:1 - 4:4] VarDecl=glob:4:5
24 // CHECK-NEXT: Identifier: "glob" [4:5 - 4:9] VarDecl=glob:4:5
/external/chromium-trace/trace-viewer/third_party/closure_linter/closure_linter/common/
Dsimplefileflags.py22 import glob
83 for result in glob.glob(f):
/external/webkit/Tools/Scripts/webkitpy/layout_tests/port/
Dhttp_lock_unittest.py27 import glob
47 lock_list = glob.glob(self.lock_file_path_prefix + '*')
/external/chromium/base/win/
Dscoped_hglobal.h20 explicit ScopedHGlobal(HGLOBAL glob) : glob_(glob) { in ScopedHGlobal() argument
/external/webkit/Tools/Scripts/webkitpy/layout_tests/
Dupdate_webgl_conformance_tests.py28 import glob
92 for filename in glob.glob(os.path.join(in_dir, '*.html')):

12345