/external/libvpx/libvpx/libmkv/ |
D | WebMElement.c | 17 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 …]
|
D | EbmlWriter.c | 21 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 …]
|
D | EbmlBufferWriter.c | 11 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 …]
|
D | EbmlWriter.h | 22 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 …]
|
D | EbmlBufferWriter.h | 17 void Ebml_StartSubElement(EbmlGlobal *glob, EbmlLoc *ebmlLoc, unsigned long class_id); 18 void Ebml_EndSubElement(EbmlGlobal *glob, EbmlLoc *ebmlLoc);
|
/external/chromium/chrome/common/extensions/ |
D | user_script.cc | 25 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 …]
|
D | user_script.h | 141 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/ |
D | vpxenc.c | 554 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/ |
D | react-to-vsprops-changes.py | 3 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/ |
D | conflict-nonfragile-abi2.m | 5 int glob; 8 @property int glob; property 19 - (int) Meth { return glob; } // no warning 20 @synthesize glob;
|
/external/llvm/test/DebugInfo/Inputs/ |
D | dwarfdump-test-32bit.elf.c | 3 extern int glob; 7 return a + glob; in foo() 12 return glob - foo(a); in bar()
|
/external/clang/utils/analyzer/ |
D | SATestBuild.py | 44 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/ |
D | setup.py | 5 from glob import glob 33 scripts = glob('scripts/*'),
|
/external/llvm/test/CodeGen/ARM/ |
D | compare-call.ll | 4 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/ |
D | gyp_webkit | 33 import glob 66 supplements = glob.glob(os.path.join(script_dir, '*', 'supplement.gypi'))
|
/external/chromium/chrome/browser/resources/file_manager/bin/ |
D | squashdir.py | 6 import glob 44 for child_path in glob.glob(abs_src + '/*'):
|
/external/webkit/Tools/wx/packaging/ |
D | build-mac-installer.py | 31 import glob 124 files = glob.glob(os.path.join(wxwebkit_dir, wildcard)) 129 files = glob.glob(os.path.join(wxwebkit_dir, wildcard))
|
D | build-win-installer.py | 31 import glob 83 dlls = glob.glob(os.path.join(wxwebkit_dir, "*.dll"))
|
/external/antlr/antlr-3.4/runtime/Python/ |
D | setup.py | 90 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/ |
D | bno_plot.py | 41 import getopt, glob, os, sys, tempfile 78 else: bnos = glob.glob('blknos*[rw].dat')
|
/external/clang/test/Index/ |
D | annotate-module.m | 4 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/ |
D | simplefileflags.py | 22 import glob 83 for result in glob.glob(f):
|
/external/webkit/Tools/Scripts/webkitpy/layout_tests/port/ |
D | http_lock_unittest.py | 27 import glob 47 lock_list = glob.glob(self.lock_file_path_prefix + '*')
|
/external/chromium/base/win/ |
D | scoped_hglobal.h | 20 explicit ScopedHGlobal(HGLOBAL glob) : glob_(glob) { in ScopedHGlobal() argument
|
/external/webkit/Tools/Scripts/webkitpy/layout_tests/ |
D | update_webgl_conformance_tests.py | 28 import glob 92 for filename in glob.glob(os.path.join(in_dir, '*.html')):
|