Home
last modified time | relevance | path

Searched refs:this (Results 1 – 25 of 4910) sorted by relevance

12345678910>>...197

/external/libvpx/examples/includes/geshi/
Dgeshi.php593 $this->set_source($source);
596 $this->set_language($language);
598 $this->set_language_path($path);
609 if ($this->error) {
612 '{LANGUAGE}' => $this->language,
613 '{PATH}' => $this->language_path
618 $this->error_messages[$this->error]);
620 return "<br /><strong>GeSHi Error:</strong> $msg (code {$this->error})<br />";
633 if (GESHI_ERROR_NO_SUCH_LANG == $this->error) {
634 return $this->language_data['LANG_NAME'] . ' (Unknown Language)';
[all …]
/external/llvm/include/llvm/ADT/
DSmallVector.h81 void setEnd(T *P) { this->EndX = P; } in setEnd()
98 iterator begin() { return (iterator)this->BeginX; } in begin()
99 const_iterator begin() const { return (const_iterator)this->BeginX; } in begin()
100 iterator end() { return (iterator)this->EndX; } in end()
101 const_iterator end() const { return (const_iterator)this->EndX; } in end()
103 iterator capacity_ptr() { return (iterator)this->CapacityX; } in capacity_ptr()
104 const_iterator capacity_ptr() const { return (const_iterator)this->CapacityX;} in capacity_ptr()
176 if (this->EndX < this->CapacityX) { in push_back()
178 new (this->end()) T(Elt); in push_back()
179 this->setEnd(this->end()+1); in push_back()
[all …]
/external/libvpx/examples/includes/ASCIIMathPHP-2.0/
DASCIIMathPHP-2.0.class.php74 $this->_id = isset($id) ? $id : md5(uniqid(rand(),1));
75 $this->_name = '';
76 $this->_content = '';
77 $this->_mt_elem_flg = FALSE;
78 $this->_attr_arr = array();
79 $this->_child_arr = array();
80 $this->_nmspc = '';
81 $this->_nmspc_alias = '';
82 $this->_parent_id = FALSE;
83 $this->_parent_node = NULL;
[all …]
/external/webkit/Source/WebCore/inspector/front-end/
DSourceHTMLTokenizer.re2js9 * notice, this list of conditions and the following disclaimer.
11 * copyright notice, this list of conditions and the following disclaimer
16 * this software without specific prior written permission.
35 // | sed 's|[*]cursor[+][+]|this._charAt(cursor++)|' \
36 // | sed 's|[[*][+][+]cursor|this._charAt(++cursor)|' \
37 // | sed 's|[*]cursor|this._charAt(cursor)|' \
38 // | sed 's|yych = \*\([^;]*\)|yych = this._charAt\1|' \
45 WebInspector.SourceTokenizer.call(this);
48 this._lexConditions = {
56 this.case_INITIAL = 1000;
[all …]
/external/stlport/stlport/stl/
D_deque.c42 _M_destroy_nodes(_M_start._M_node, this->_M_finish._M_node + 1); in ~_Deque_base()
49 size_t __num_nodes = __num_elements / this->buffer_size() + 1 ; in _M_initialize_map()
63 this->_M_finish._M_set_node(__nfinish - 1); in _M_initialize_map()
65 this->_M_finish._M_cur = this->_M_finish._M_first + __num_elements % this->buffer_size(); in _M_initialize_map()
74 *__cur = _M_map_size.allocate(this->buffer_size()); in _M_create_nodes()
83 _M_map_size.deallocate(*__n, this->buffer_size()); in _M_destroy_nodes()
109 if (&__x != this) {
111 erase(_STLP_STD::copy(__x.begin(), __x.end(), this->_M_start), this->_M_finish);
114 _STLP_STD::copy(__x.begin(), __mid, this->_M_start);
115 insert(this->_M_finish, __mid, __x.end());
[all …]
D_ostream.c39 this->init(__buf); in basic_ostream()
50 sentry __sentry(*this);
54 ? this->_M_copy_buffered(__from, this->rdbuf())
55 : this->_M_copy_unbuffered(__from, this->rdbuf());
57 this->setstate(ios_base::failbit);
60 this->setstate(ios_base::badbit);
63 return *this;
86 this->_M_handle_exception(ios_base::badbit); in _M_copy_buffered()
92 if (this->_S_eof(__from->sgetc())) in _M_copy_buffered()
98 this->_M_handle_exception(ios_base::failbit); in _M_copy_buffered()
[all …]
D_sstream.c78 this->setg(__data_ptr, (_M_mode & ios_base::ate) ? __data_end : __data_ptr, __data_end); in _M_set_ptrs()
84 this->setp( __data_end, __data_end ); in _M_set_ptrs()
86 this->setp( __data_ptr, __data_end ); in _M_set_ptrs()
87 this->pbump((int)_M_str.size()); // initial write position, if we initialized with string in _M_set_ptrs()
97 return this->gptr() != this->egptr() in underflow()
98 ? _Traits::to_int_type(*this->gptr()) in underflow()
106 if (this->gptr() != this->egptr()) { in uflow()
107 int_type __c = _Traits::to_int_type(*this->gptr()); in uflow()
108 this->gbump(1); in uflow()
118 if (this->gptr() != this->eback()) { in pbackfail()
[all …]
/external/libvpx/examples/includes/PHP-Markdown-Extra-1.2.3/
Dmarkdown.php202 return $this->TextileThis($text, $lite);
246 $this->_initDetab();
247 $this->prepareItalicsAndBold();
249 $this->nested_brackets_re =
250 str_repeat('(?>[^\[\]]+|\[', $this->nested_brackets_depth).
251 str_repeat('\])*', $this->nested_brackets_depth);
253 $this->nested_url_parenthesis_re =
254 str_repeat('(?>[^()\s]+|\(', $this->nested_url_parenthesis_depth).
255 str_repeat('(?>\)))*', $this->nested_url_parenthesis_depth);
257 $this->escape_chars_re = '['.preg_quote($this->escape_chars).']';
[all …]
/external/svox/pico/lib/
Dpicoctrl.c93 static pico_status_t ctrlInitialize(register picodata_ProcessingUnit this, picoos_int32 resetMode) { in ctrlInitialize() argument
98 if (NULL == this || NULL == this->subObj) { in ctrlInitialize()
101 ctrl = (ctrl_subobj_t *) this->subObj; in ctrlInitialize()
116 …picoos_emRaiseException(this->common->em,status,NULL,(picoos_char*)"problem (re-)initializing the … in ctrlInitialize()
133 static picodata_step_result_t ctrlStep(register picodata_ProcessingUnit this, in ctrlStep() argument
140 register ctrl_subobj_t * ctrl = (ctrl_subobj_t *) this->subObj; in ctrlStep()
236 static pico_status_t ctrlTerminate(register picodata_ProcessingUnit this) { in ctrlTerminate() argument
240 if (NULL == this || NULL == this->subObj) { in ctrlTerminate()
243 ctrl = (ctrl_subobj_t *) this->subObj; in ctrlTerminate()
262 static pico_status_t ctrlSubObjDeallocate(register picodata_ProcessingUnit this, in ctrlSubObjDeallocate() argument
[all …]
Dpicorsrc.c88 picoos_int16 picoctrl_isValidResourceHandle(picorsrc_Resource this) in picoctrl_isValidResourceHandle() argument
90 return (this != NULL) && CHECK_MAGIC_NUMBER(this); in picoctrl_isValidResourceHandle()
96 picorsrc_Resource this = picoos_allocate(mm, sizeof(*this)); in picorsrc_newResource() local
97 if (NULL != this) { in picorsrc_newResource()
98 SET_MAGIC_NUMBER(this); in picorsrc_newResource()
100 this->name[0] = NULLC; in picorsrc_newResource()
102 this->next = NULL; in picorsrc_newResource()
103 this->type = PICORSRC_TYPE_NULL; in picorsrc_newResource()
104 this->lockCount = 0; in picorsrc_newResource()
105 this->file = NULL; in picorsrc_newResource()
[all …]
Dpicoktab.c65 static pico_status_t ktabIdsInitialize(register picoknow_KnowledgeBase this, in ktabIdsInitialize() argument
72 if (NULL == this || NULL == this->subObj) { in ktabIdsInitialize()
76 ids = (picoktab_FixedIds) this->subObj; in ktabIdsInitialize()
84 static pico_status_t ktabIdsSubObjDeallocate(register picoknow_KnowledgeBase this, in ktabIdsSubObjDeallocate() argument
87 if (NULL != this) { in ktabIdsSubObjDeallocate()
88 picoos_deallocate(mm, (void *) &this->subObj); in ktabIdsSubObjDeallocate()
93 pico_status_t picoktab_specializeIdsKnowledgeBase(picoknow_KnowledgeBase this, in picoktab_specializeIdsKnowledgeBase() argument
96 if (NULL == this) { in picoktab_specializeIdsKnowledgeBase()
100 this->subDeallocate = ktabIdsSubObjDeallocate; in picoktab_specializeIdsKnowledgeBase()
101 this->subObj = picoos_allocate(common->mm, sizeof(picoktab_fixed_ids_t)); in picoktab_specializeIdsKnowledgeBase()
[all …]
Dpicokpdf.c92 static pico_status_t kpdfDURInitialize(register picoknow_KnowledgeBase this, in kpdfDURInitialize() argument
97 if (NULL == this || NULL == this->subObj) { in kpdfDURInitialize()
101 pdfdur = (picokpdf_pdfdur_t *)this->subObj; in kpdfDURInitialize()
105 pdfdur->numframes = ((picoos_uint16)(this->base[pos+1])) << 8 | in kpdfDURInitialize()
106 this->base[pos]; in kpdfDURInitialize()
108 pdfdur->vecsize = this->base[pos++]; in kpdfDURInitialize()
109 pdfdur->sampperframe = this->base[pos++]; in kpdfDURInitialize()
110 pdfdur->phonquantlen = this->base[pos++]; in kpdfDURInitialize()
111 pdfdur->phonquant = &(this->base[pos]); in kpdfDURInitialize()
113 pdfdur->statequantlen = this->base[pos++]; in kpdfDURInitialize()
[all …]
Dpicoktab.h64 pico_status_t picoktab_specializeIdsKnowledgeBase(picoknow_KnowledgeBase this,
67 picoktab_FixedIds picoktab_getFixedIds(picoknow_KnowledgeBase this);
77 pico_status_t picoktab_specializeGraphsKnowledgeBase(picoknow_KnowledgeBase this,
81 picoktab_Graphs picoktab_getGraphs(picoknow_KnowledgeBase this);
86 picoos_uint32 picoktab_graphOffset(const picoktab_Graphs this,
92 picoos_uint8 picoktab_hasVowellikeProp(const picoktab_Graphs this,
98 picoos_bool picoktab_getIntPropTokenType(const picoktab_Graphs this,
101 picoos_bool picoktab_getIntPropTokenSubType(const picoktab_Graphs this,
104 picoos_bool picoktab_getIntPropValue(const picoktab_Graphs this,
107 picoos_bool picoktab_getStrPropLowercase(const picoktab_Graphs this,
[all …]
/external/qemu/distrib/sdl-1.2.12/src/audio/ums/
DSDL_umsaudio.c84 if(this->hidden->playbuf._buffer) SDL_free(this->hidden->playbuf._buffer); in Audio_DeleteDevice()
85 if(this->hidden->fillbuf._buffer) SDL_free(this->hidden->fillbuf._buffer); in Audio_DeleteDevice()
86 _somFree( this->hidden->umsdev ); in Audio_DeleteDevice()
87 SDL_free(this->hidden); in Audio_DeleteDevice()
88 SDL_free(this); in Audio_DeleteDevice()
93 SDL_AudioDevice *this; in Audio_CreateDevice() local
99 this = (SDL_AudioDevice *)SDL_malloc(sizeof(SDL_AudioDevice)); in Audio_CreateDevice()
100 if ( this ) { in Audio_CreateDevice()
101 SDL_memset(this, 0, (sizeof *this)); in Audio_CreateDevice()
102 this->hidden = (struct SDL_PrivateAudioData *)SDL_malloc((sizeof *this->hidden)); in Audio_CreateDevice()
[all …]
/external/qemu/distrib/sdl-1.2.12/src/audio/nas/
DSDL_nasaudio.c71 SDL_AudioDevice *this; in Audio_CreateDevice() local
74 this = (SDL_AudioDevice *)SDL_malloc(sizeof(SDL_AudioDevice)); in Audio_CreateDevice()
75 if ( this ) { in Audio_CreateDevice()
76 SDL_memset(this, 0, (sizeof *this)); in Audio_CreateDevice()
77 this->hidden = (struct SDL_PrivateAudioData *) in Audio_CreateDevice()
78 SDL_malloc((sizeof *this->hidden)); in Audio_CreateDevice()
80 if ( (this == NULL) || (this->hidden == NULL) ) { in Audio_CreateDevice()
82 if ( this ) { in Audio_CreateDevice()
83 SDL_free(this); in Audio_CreateDevice()
87 SDL_memset(this->hidden, 0, (sizeof *this->hidden)); in Audio_CreateDevice()
[all …]
/external/qemu/distrib/sdl-1.2.12/src/video/x11/
DSDL_x11gl.c69 extensions = this->gl_data->glXQueryExtensionsString(GFX_Display,SDL_Screen); in glXExtensionSupported()
98 if ( ! this->gl_config.driver_loaded ) { in X11_GL_GetVisual()
100 if ( X11_GL_LoadLibrary(this, NULL) < 0 ) { in X11_GL_GetVisual()
123 attribs[i++] = this->gl_config.red_size; in X11_GL_GetVisual()
125 attribs[i++] = this->gl_config.green_size; in X11_GL_GetVisual()
127 attribs[i++] = this->gl_config.blue_size; in X11_GL_GetVisual()
129 if( this->gl_config.alpha_size ) { in X11_GL_GetVisual()
131 attribs[i++] = this->gl_config.alpha_size; in X11_GL_GetVisual()
134 if( this->gl_config.buffer_size ) { in X11_GL_GetVisual()
136 attribs[i++] = this->gl_config.buffer_size; in X11_GL_GetVisual()
[all …]
DSDL_x11video.h56 #define _THIS SDL_VideoDevice *this
169 #define local_X11 (this->hidden->local_X11)
170 #define SDL_Display (this->hidden->X11_Display)
171 #define GFX_Display (this->hidden->GFX_Display)
172 #define SDL_Screen DefaultScreen(this->hidden->X11_Display)
173 #define SDL_Visual (this->hidden->vis)
175 #define WMwindow (this->hidden->WMwindow)
176 #define FSwindow (this->hidden->FSwindow)
177 #define SDL_Window (this->hidden->SDL_Window)
178 #define WM_DELETE_WINDOW (this->hidden->WM_DELETE_WINDOW)
[all …]
/external/qemu/distrib/sdl-1.2.12/src/audio/dc/
DSDL_dcaudio.c58 SDL_AudioDevice *this; in DCAUD_CreateDevice() local
61 this = (SDL_AudioDevice *)SDL_malloc(sizeof(SDL_AudioDevice)); in DCAUD_CreateDevice()
62 if ( this ) { in DCAUD_CreateDevice()
63 SDL_memset(this, 0, (sizeof *this)); in DCAUD_CreateDevice()
64 this->hidden = (struct SDL_PrivateAudioData *) in DCAUD_CreateDevice()
65 SDL_malloc((sizeof *this->hidden)); in DCAUD_CreateDevice()
67 if ( (this == NULL) || (this->hidden == NULL) ) { in DCAUD_CreateDevice()
69 if ( this ) { in DCAUD_CreateDevice()
70 SDL_free(this); in DCAUD_CreateDevice()
74 SDL_memset(this->hidden, 0, (sizeof *this->hidden)); in DCAUD_CreateDevice()
[all …]
/external/qemu/distrib/sdl-1.2.12/src/video/wincommon/
DSDL_wingl.c44 if ( !SDL_windowid && SDL_strcmp(this->name, "windib") == 0 ) { in WIN_GL_ResetWindow()
64 this->SetCaption(this, this->wm_title, this->wm_icon); in WIN_GL_ResetWindow()
133 hglrc = this->gl_data->wglCreateContext(hdc); in ChoosePixelFormatARB()
135 this->gl_data->wglMakeCurrent(hdc, hglrc); in ChoosePixelFormatARB()
139 this->gl_data->wglGetProcAddress("wglGetExtensionsStringARB"); in ChoosePixelFormatARB()
147 this->gl_data->WGL_ARB_pixel_format = 0; in ChoosePixelFormatARB()
152 this->gl_data->wglGetProcAddress("wglChoosePixelFormatARB"); in ChoosePixelFormatARB()
155 this->gl_data->WGL_ARB_pixel_format = 1; in ChoosePixelFormatARB()
160 this->gl_data->wglMakeCurrent(NULL, NULL); in ChoosePixelFormatARB()
161 this->gl_data->wglDeleteContext(hglrc); in ChoosePixelFormatARB()
[all …]
/external/qemu/distrib/sdl-1.2.12/src/video/gem/
DSDL_gemvideo.h36 #define _THIS SDL_VideoDevice *this
98 #define VDI_handle (this->hidden->vdi_handle)
99 #define VDI_w (this->hidden->full_w)
100 #define VDI_h (this->hidden->full_h)
101 #define VDI_bpp (this->hidden->bpp)
102 #define VDI_pixelsize (this->hidden->pixelsize)
103 #define VDI_oldnumcolors (this->hidden->old_numcolors)
104 #define VDI_oldpalette (this->hidden->old_palette)
105 #define VDI_curpalette (this->hidden->cur_palette)
106 #define VDI_setpalette (this->hidden->setpalette)
[all …]
/external/qemu/distrib/sdl-1.2.12/src/audio/disk/
DSDL_diskaudio.c80 SDL_AudioDevice *this; in DISKAUD_CreateDevice() local
84 this = (SDL_AudioDevice *)SDL_malloc(sizeof(SDL_AudioDevice)); in DISKAUD_CreateDevice()
85 if ( this ) { in DISKAUD_CreateDevice()
86 SDL_memset(this, 0, (sizeof *this)); in DISKAUD_CreateDevice()
87 this->hidden = (struct SDL_PrivateAudioData *) in DISKAUD_CreateDevice()
88 SDL_malloc((sizeof *this->hidden)); in DISKAUD_CreateDevice()
90 if ( (this == NULL) || (this->hidden == NULL) ) { in DISKAUD_CreateDevice()
92 if ( this ) { in DISKAUD_CreateDevice()
93 SDL_free(this); in DISKAUD_CreateDevice()
97 SDL_memset(this->hidden, 0, (sizeof *this->hidden)); in DISKAUD_CreateDevice()
[all …]
/external/qemu/distrib/sdl-1.2.12/src/video/riscos/
DSDL_wimpvideo.c133 this->hidden->height = current->h = height; in WIMP_SetVideoMode()
143 this->hidden->bank[0] = buffer + 60; /* Start of sprite data */ in WIMP_SetVideoMode()
144 if (bpp == 8) this->hidden->bank[0] += 2048; /* 8bpp sprite have palette first */ in WIMP_SetVideoMode()
146 this->hidden->bank[1] = buffer; /* Start of buffer */ in WIMP_SetVideoMode()
149 if (this->hidden->alloc_bank) SDL_free(this->hidden->alloc_bank); in WIMP_SetVideoMode()
150 this->hidden->alloc_bank = buffer; in WIMP_SetVideoMode()
161 WIMP_ReadModeInfo(this); in WIMP_SetVideoMode()
163 SDL_memset(this->hidden->bank[0], 0, height * current->pitch); in WIMP_SetVideoMode()
165 this->hidden->current_bank = 0; in WIMP_SetVideoMode()
166 current->pixels = this->hidden->bank[0]; in WIMP_SetVideoMode()
[all …]
/external/qemu/distrib/sdl-1.2.12/src/audio/dummy/
DSDL_dummyaudio.c64 SDL_AudioDevice *this; in DUMMYAUD_CreateDevice() local
67 this = (SDL_AudioDevice *)SDL_malloc(sizeof(SDL_AudioDevice)); in DUMMYAUD_CreateDevice()
68 if ( this ) { in DUMMYAUD_CreateDevice()
69 SDL_memset(this, 0, (sizeof *this)); in DUMMYAUD_CreateDevice()
70 this->hidden = (struct SDL_PrivateAudioData *) in DUMMYAUD_CreateDevice()
71 SDL_malloc((sizeof *this->hidden)); in DUMMYAUD_CreateDevice()
73 if ( (this == NULL) || (this->hidden == NULL) ) { in DUMMYAUD_CreateDevice()
75 if ( this ) { in DUMMYAUD_CreateDevice()
76 SDL_free(this); in DUMMYAUD_CreateDevice()
80 SDL_memset(this->hidden, 0, (sizeof *this->hidden)); in DUMMYAUD_CreateDevice()
[all …]
/external/qemu/distrib/sdl-1.2.12/src/video/fbcon/
DSDL_fbvideo.h39 #define _THIS SDL_VideoDevice *this
98 #define console_fd (this->hidden->console_fd)
99 #define current_vt (this->hidden->current_vt)
100 #define saved_vt (this->hidden->saved_vt)
101 #define keyboard_fd (this->hidden->keyboard_fd)
102 #define saved_kbd_mode (this->hidden->saved_kbd_mode)
103 #define saved_kbd_termios (this->hidden->saved_kbd_termios)
104 #define mouse_fd (this->hidden->mouse_fd)
106 #define ts_dev (this->hidden->ts_dev)
108 #define cache_vinfo (this->hidden->cache_vinfo)
[all …]
/external/clang/include/clang/AST/
DASTVector.h58 void setEnd(T *P) { this->End = P; } in setEnd()
184 if (NumInputs > size_type(this->capacity_ptr()-this->end())) in append()
185 this->grow(C, this->size()+NumInputs); in append()
190 std::uninitialized_copy(in_start, in_end, this->end()); in append()
191 this->setEnd(this->end() + NumInputs); in append()
198 if (NumInputs > size_type(this->capacity_ptr()-this->end())) in append()
199 this->grow(C, this->size()+NumInputs); in append()
202 std::uninitialized_fill_n(this->end(), NumInputs, Elt); in append()
203 this->setEnd(this->end() + NumInputs); in append()
214 if (I == this->end()) { // Important special case for empty vector. in insert()
[all …]

12345678910>>...197