Searched defs:Code (Results 1 - 12 of 12) sorted by relevance

/external/webkit/WebCore/html/
H A DMediaError.h37 enum Code { MEDIA_ERR_ABORTED = 1, MEDIA_ERR_NETWORK, MEDIA_ERR_DECODE, MEDIA_ERR_SRC_NOT_SUPPORTED }; enum in class:WebCore::MediaError
39 static PassRefPtr<MediaError> create(Code code) { return adoptRef(new MediaError(code)); }
41 Code code() const { return m_code; }
44 MediaError(Code code) : m_code(code) { }
46 Code m_code;
/external/giflib/
H A Ddgif_lib.c55 static int DGifGetPrefixChar(GifPrefixType *Prefix, int Code, int ClearCode);
56 static int DGifDecompressInput(GifFileType *GifFile, int *Code);
704 READ(GifFile, &CodeSize, 1); /* Read Code size from file. */
867 int Code,
872 while (Code > ClearCode && i++ <= LZ_MAX_CODE) {
873 if (Code > LZ_MAX_CODE) {
876 Code = Prefix[Code];
878 return Code;
882 * Interface for accessing the LZ codes directly. Set Code t
866 DGifGetPrefixChar(GifPrefixType *Prefix, int Code, int ClearCode) argument
886 DGifGetLZCodes(GifFileType * GifFile, int *Code) argument
926 DGifDecompressInput(GifFileType * GifFile, int *Code) argument
[all...]
/external/v8/src/
H A Dcodegen.cc191 Handle<Code> CodeGenerator::MakeCodeEpilogue(MacroAssembler* masm,
192 Code::Flags flags,
198 Handle<Code> code =
222 PrintF("--- Code ---\n");
235 // all the pieces into a Code object. This function is only to be called by
237 Handle<Code> CodeGenerator::MakeCode(CompilationInfo* info) {
254 return Handle<Code>::null();
258 Code::Flags flags = Code::ComputeFlags(Code
293 CALL_HEAP_FUNCTION(StubCache::ComputeCallInitialize(argc, in_loop), Code); local
[all...]
H A Dstub-cache.cc55 Code* StubCache::Set(String* name, Map* map, Code* code) {
57 Code::Flags flags = Code::RemoveTypeFromFlags(code->flags());
68 ASSERT(Code::ExtractICStateFromFlags(flags) == MONOMORPHIC);
69 ASSERT(Code::kFlagsICStateShift == 0);
72 ASSERT(Code::ExtractTypeFromFlags(flags) == 0);
77 Code* hit = primary->value;
82 Code::Flags primary_flags = Code
737 CALL_HEAP_FUNCTION(StubCache::ComputeCallMiss(argc), Code); local
[all...]
H A Dhandles.cc750 Handle<Code> ComputeLazyCompile(int argc) {
751 CALL_HEAP_FUNCTION(StubCache::ComputeLazyCompile(argc), Code); local
H A Dfactory.cc470 Handle<Code> code,
495 Handle<Code> code) {
527 Handle<Code> code,
550 Handle<Code> Factory::NewCode(const CodeDesc& desc,
552 Code::Flags flags,
554 CALL_HEAP_FUNCTION(Heap::CreateCode(desc, sinfo, flags, self_ref), Code); local
558 Handle<Code> Factory::CopyCode(Handle<Code> code) {
559 CALL_HEAP_FUNCTION(Heap::CopyCode(*code), Code);
735 Handle<Code> cod
[all...]
H A Ddebug.cc65 static Handle<Code> ComputeCallDebugBreak(int argc) {
66 CALL_HEAP_FUNCTION(StubCache::ComputeCallDebugBreak(argc), Code); local
70 static Handle<Code> ComputeCallDebugPrepareStepIn(int argc) {
71 CALL_HEAP_FUNCTION(StubCache::ComputeCallDebugPrepareStepIn(argc), Code); local
125 Code* code = Code::GetCodeFromTargetAddress(target);
130 if (code->kind() == Code::STUB) {
349 Handle<Code> code(Code::GetCodeFromTargetAddress(target));
356 Handle<Code> stu
[all...]
H A Dobjects.h87 // - Code
1628 // Code Generation support.
2585 // Code describes objects with on-the-fly generated machine code.
2586 class Code: public HeapObject { class in namespace:v8::internal
2678 static inline Code* GetCodeFromTargetAddress(Address address);
2689 // Code entry point.
2718 Code::kHeaderSize);
2719 return instruction_size() + Code::kHeaderSize;
2727 static inline Code* cast(Object* obj);
2736 // Code entr
[all...]
/external/chromium/third_party/zlib/
H A Ddeflate.h74 #define Code fc.code macro
/external/qemu/distrib/zlib-1.2.3/
H A Ddeflate.h74 #define Code fc.code macro
/external/zlib/
H A Ddeflate.h74 #define Code fc.code macro
/external/v8/test/cctest/
H A Dtest-debug.cc46 using ::v8::internal::Code;
97 const Code* expected,
99 const Code* value) {
110 const Code* expected,
112 const Code* value) {
397 static Handle<Code> ComputeCallDebugBreak(int argc) {
399 Code); local
469 Code* debug_break) {
483 Code::GetCodeFromTargetAddress(it1.it()->rinfo()->target_address()));
977 Handle<Code> debug_break_
[all...]

Completed in 245 milliseconds