Searched refs:this (Results 126 - 150 of 3220) sorted by relevance

1234567891011>>

/external/chromium_org/third_party/yasm/source/patched-yasm/modules/arch/x86/tests/
H A Dea-nonzero.asm2 ; Also tests that this isn't seen as a circular reference.
/external/clang/test/Sema/
H A Dnonnull.c12 __attribute__((nonnull(1))) void Class_init(Instance this, char *str) { argument
13 this.object->str = str;
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.eclipse.test.performance.ui/src/org/eclipse/test/performance/ui/
H A Dmessages.properties5 # which accompanies this distribution, and is available at
14 standardError = Standard error on this test is {0} (should be less than {1} to become reliable!)
/external/skia/include/utils/win/
H A DSkTScopedComPtr.h5 * Use of this source code is governed by a BSD-style license that can be
42 this->reset();
57 if (NULL != this->fPtr) {
58 this->fPtr->Release();
59 this->fPtr = NULL;
64 T* temp = this->fPtr;
65 this->fPtr = that.fPtr;
70 T* temp = this->fPtr;
71 this->fPtr = NULL;
/external/stlport/src/
H A Daligned_buffer.h5 // this is for fake initialization
12 return __REINTERPRET_CAST(T*, this);
16 return __REINTERPRET_CAST(T const*, this);
/external/svox/pico/lib/
H A Dpicokdbg.h5 * you may not use this file except in compliance with the License.
52 pico_status_t picokdbg_specializeDbgKnowledgeBase(picoknow_KnowledgeBase this,
60 picokdbg_Dbg picokdbg_getDbg(picoknow_KnowledgeBase this);
/external/qemu/distrib/sdl-1.2.15/src/video/picogui/
H A DSDL_pgevents.c16 License along with this library; if not, write to the Free Software
69 SDL_VideoDevice *this = (SDL_VideoDevice *) evt->extra; local
70 pgFocus(this->hidden->wCanvas);
98 pgSetWidget(this->hidden->wCanvas, PG_WP_TRIGGERMASK,
99 pgGetWidget(this->hidden->wCanvas, PG_WP_TRIGGERMASK) |
104 pgFocus(this->hidden->wCanvas);
107 pgBind(this->hidden->wApp, PG_WE_CLOSE, &PG_HandleClose, NULL);
108 pgBind(this->hidden->wCanvas, PG_WE_BUILD, &PG_HandleResize, NULL);
109 pgBind(this->hidden->wCanvas, PG_WE_KBD_CHAR, &PG_HandleChar, NULL);
110 pgBind(this
[all...]
/external/chromium_org/third_party/skia/src/gpu/gl/
H A DGrGLIndexBuffer.h4 * Use of this source code is governed by a BSD-style license that can be
23 virtual ~GrGLIndexBuffer() { this->release(); }
29 if (this->isValid()) {
30 fImpl.bind(this->getGpuGL());
48 SkASSERT(this->isValid());
49 return (GrGpuGL*)(this->getGpu());
H A DGrGLVertexBuffer.h4 * Use of this source code is governed by a BSD-style license that can be
23 virtual ~GrGLVertexBuffer() { this->release(); }
29 if (this->isValid()) {
30 fImpl.bind(this->getGpuGL());
48 SkASSERT(this->isValid());
49 return (GrGpuGL*)(this->getGpu());
/external/chromium_org/ui/base/ime/
H A Dcomposition_underline.h2 // Use of this source code is governed by a BSD-style license that can be
30 return (this->start_offset == rhs.start_offset) &&
31 (this->end_offset == rhs.end_offset) &&
32 (this->color == rhs.color) &&
33 (this->thick == rhs.thick);
37 return !(*this == rhs);
/external/llvm/include/llvm/MC/
H A DMCInstBuilder.h34 return *this;
40 return *this;
46 return *this;
52 return *this;
58 return *this;
/external/skia/src/gpu/gl/
H A DGrGLIndexBuffer.h4 * Use of this source code is governed by a BSD-style license that can be
23 virtual ~GrGLIndexBuffer() { this->release(); }
29 if (this->isValid()) {
30 fImpl.bind(this->getGpuGL());
48 SkASSERT(this->isValid());
49 return (GrGpuGL*)(this->getGpu());
H A DGrGLVertexBuffer.h4 * Use of this source code is governed by a BSD-style license that can be
23 virtual ~GrGLVertexBuffer() { this->release(); }
29 if (this->isValid()) {
30 fImpl.bind(this->getGpuGL());
48 SkASSERT(this->isValid());
49 return (GrGpuGL*)(this->getGpu());
/external/qemu/distrib/sdl-1.2.15/src/audio/macosx/
H A DSDL_coreaudio.c16 License along with this library; if not, write to the Free Software
60 SDL_AudioDevice *this; local
63 this = (SDL_AudioDevice *)SDL_malloc(sizeof(SDL_AudioDevice));
64 if ( this ) {
65 SDL_memset(this, 0, (sizeof *this));
66 this->hidden = (struct SDL_PrivateAudioData *)
67 SDL_malloc((sizeof *this->hidden));
69 if ( (this == NULL) || (this
103 SDL_AudioDevice *this = (SDL_AudioDevice *)inRefCon; local
[all...]
/external/stlport/stlport/stl/
H A D_vector.c19 * Permission to use or copy this software for any purpose is hereby granted
65 this->_M_throw_length_error();
70 if (this->_M_start) {
71 __tmp = _M_allocate_and_copy(__n, this->_M_start, this->_M_finish);
74 __tmp = this->_M_end_of_storage.allocate(__n, __n);
88 pointer __new_start = this->_M_end_of_storage.allocate(__len, __len);
91 __new_finish = _STLP_PRIV __uninitialized_move(this->_M_start, __pos, __new_start, _TrivialUCopy(), _Movable());
99 __new_finish = _STLP_PRIV __uninitialized_move(__pos, this->_M_finish, __new_finish, _TrivialUCopy(), _Movable()); // copy remainder
102 this
[all...]
/external/chromium_org/third_party/skia/include/core/
H A DSkRRect.h4 * Use of this source code is governed by a BSD-style license that can be
90 SkDEBUGCODE(this->validate();)
93 this->computeType();
99 Type type() const { return this->getType(); }
101 inline bool isEmpty() const { return kEmpty_Type == this->getType(); }
102 inline bool isRect() const { return kRect_Type == this->getType(); }
103 inline bool isOval() const { return kOval_Type == this->getType(); }
104 inline bool isSimple() const { return kSimple_Type == this->getType(); }
105 inline bool isComplex() const { return kComplex_Type == this->getType(); }
111 * Set this R
[all...]
/external/skia/include/core/
H A DSkRRect.h4 * Use of this source code is governed by a BSD-style license that can be
90 SkDEBUGCODE(this->validate();)
93 this->computeType();
99 Type type() const { return this->getType(); }
101 inline bool isEmpty() const { return kEmpty_Type == this->getType(); }
102 inline bool isRect() const { return kRect_Type == this->getType(); }
103 inline bool isOval() const { return kOval_Type == this->getType(); }
104 inline bool isSimple() const { return kSimple_Type == this->getType(); }
105 inline bool isComplex() const { return kComplex_Type == this->getType(); }
111 * Set this R
[all...]
/external/llvm/include/llvm/IR/
H A DOperandTraits.h85 /// Assumes that the User subclass that is determined by this traits class
86 /// has an OperandList member of type User::op_iterator. [Note: this is now
125 return OperandTraits<CLASS>::op_begin(this); \
128 return OperandTraits<CLASS>::op_begin(const_cast<CLASS*>(this)); \
131 return OperandTraits<CLASS>::op_end(this); \
134 return OperandTraits<CLASS>::op_end(const_cast<CLASS*>(this)); \
137 assert(i_nocapture < OperandTraits<CLASS>::operands(this) \
140 OperandTraits<CLASS>::op_begin(const_cast<CLASS*>(this))[i_nocapture].get()); \
143 assert(i_nocapture < OperandTraits<CLASS>::operands(this) \
145 OperandTraits<CLASS>::op_begin(this)[i_nocaptur
[all...]
/external/lzma/CPP/7zip/Compress/
H A DRangeCoderBit.h49 encoder->EncodeBit(this->Prob, kNumBitModelTotalBits, symbol);
50 this->UpdateModel(symbol);
52 UInt32 newBound = (encoder->Range >> kNumBitModelTotalBits) * this->Prob;
56 this->Prob += (kBitModelTotal - this->Prob) >> numMoveBits;
62 this->Prob -= (this->Prob) >> numMoveBits;
72 return ProbPrices[(this->Prob ^ ((-(int)symbol)) & (kBitModelTotal - 1)) >> kNumMoveReducingBits];
74 UInt32 GetPrice0() const { return ProbPrices[this->Prob >> kNumMoveReducingBits]; }
75 UInt32 GetPrice1() const { return ProbPrices[(this
[all...]
/external/qemu/distrib/sdl-1.2.15/src/audio/dsp/
H A DSDL_dspaudio.c16 License along with this library; if not, write to the Free Software
91 SDL_AudioDevice *this; local
94 this = (SDL_AudioDevice *)SDL_malloc(sizeof(SDL_AudioDevice));
95 if ( this ) {
96 SDL_memset(this, 0, (sizeof *this));
97 this->hidden = (struct SDL_PrivateAudioData *)
98 SDL_malloc((sizeof *this->hidden));
100 if ( (this == NULL) || (this
[all...]
/external/chromium_org/base/test/
H A Dtask_runner_test_template.h2 // Use of this source code is governed by a BSD-style license that can be
11 // like this:
15 // // Tasks posted to the task runner after this and before
28 // // this is called are run. Caveat: delayed tasks are not run,
41 // this delegate type and will call its functions in the various
44 // Then you simply #include this file as well as gtest.h and add the
125 this->delegate_.StartTaskRunner();
126 scoped_refptr<TaskRunner> task_runner = this->delegate_.GetTaskRunner();
129 const Closure& ith_task = this->task_tracker_->WrapTask(Closure(), i);
135 this
[all...]
/external/qemu/distrib/sdl-1.2.15/src/video/fbcon/
H A DSDL_fbriva.c16 License along with this library; if not, write to the Free Software
83 if ( dst == this->screen ) {
90 FB_dst_to_xy(this, dst, &dstX, &dstY);
105 if ( dst == this->screen ) {
114 SDL_VideoDevice *this = current_video; local
129 if ( dst == this->screen ) {
136 FB_dst_to_xy(this, src, &srcX, &srcY);
137 FB_dst_to_xy(this, dst, &dstX, &dstY);
153 if ( dst == this->screen ) {
168 if ( ! this
[all...]
/external/clang/include/clang/AST/
H A DEvaluatedExprVisitor.h27 /// \brief Given a potentially-evaluated expression, this visitor visits all
48 return this->Visit(E->getBase());
56 return this->Visit(E->getChosenSubExpr());
62 return this->Visit(E->getInit());
67 return this->Visit(E->getExprOperand());
72 return static_cast<ImplClass*>(this)->VisitExpr(CE);
81 this->Visit(*I);
89 this->Visit(*C);
/external/chromium_org/third_party/skia/include/utils/
H A DSkMatrix44.h4 * Use of this source code is governed by a BSD-style license that can be
65 this->set(0, 0, 0, 1);
79 return *this;
87 return !(*this == v);
113 SkMatrix44(Identity_Constructor) { this->setIdentity(); }
116 SkMatrix44() { this->setIdentity(); }
124 this->setConcat(a, b);
128 if (&src != this) {
132 return *this;
137 return !(other == *this);
[all...]
/external/clang/tools/libclang/
H A DCLog.h73 Logger &operator<<(llvm::StringRef Str) { LogOS << Str; return *this; }
77 return *this;
79 Logger &operator<<(unsigned long N) { LogOS << N; return *this; }
80 Logger &operator<<(long N) { LogOS << N ; return *this; }
81 Logger &operator<<(unsigned int N) { LogOS << N; return *this; }
82 Logger &operator<<(int N) { LogOS << N; return *this; }
83 Logger &operator<<(char C) { LogOS << C; return *this; }
84 Logger &operator<<(unsigned char C) { LogOS << C; return *this; }
85 Logger &operator<<(signed char C) { LogOS << C; return *this; }
92 /// \brief Macros to automate common uses of Logger. Like this
[all...]

Completed in 687 milliseconds

1234567891011>>