HomeSort by relevance Sort by last modified time
    Searched defs:This (Results 1 - 25 of 45) sorted by null

1 2

  /external/chromium_org/third_party/icu/source/common/
udatamem.c 26 U_CFUNC void UDataMemory_init(UDataMemory *This) {
27 uprv_memset(This, 0, sizeof(UDataMemory));
28 This->length=-1;
40 UDataMemory *This;
45 This = uprv_malloc(sizeof(UDataMemory));
46 if (This == NULL) {
49 UDataMemory_init(This);
50 This->heapAllocated = TRUE;
52 return This;
65 TODO: Fix this once the compiler implements this feature. Keep in sync with genccode.
    [all...]
rbbirb.cpp 7 // This file contains the RBBIRuleBuilder class implementation. This is the main class for
85 fScanner = new RBBIRuleScanner(this);
86 fSetBuilder = new RBBISetBuilder(this);
310 RuleBasedBreakIterator *This = new RuleBasedBreakIterator(data, status);
312 delete This;
313 This = NULL;
315 else if(This == NULL) { // test for NULL
318 return This;
rbbistbl.cpp 64 // RBBISymbolTable::lookup This function from the abstract symbol table inteface
77 RBBISymbolTable *This = (RBBISymbolTable *)this; // cast off const
91 This->fCachedSetLookup = usetNode->fInputSet;
99 This->fCachedSetLookup = NULL;
107 // RBBISymbolTable::lookupMatcher This function from the abstract symbol table
109 // pointer to a Unicode Set. The Unicode Set code uses this
113 // This implementation cheats a little, and does not maintain a map of stand-in chars
115 // constructor will always call this function right after calling lookup(),
120 RBBISymbolTable *This = (RBBISymbolTable *)this; // cast off cons
    [all...]
  /external/icu4c/common/
udatamem.c 26 U_CFUNC void UDataMemory_init(UDataMemory *This) {
27 uprv_memset(This, 0, sizeof(UDataMemory));
28 This->length=-1;
40 UDataMemory *This;
45 This = uprv_malloc(sizeof(UDataMemory));
46 if (This == NULL) {
49 UDataMemory_init(This);
50 This->heapAllocated = TRUE;
52 return This;
65 TODO: Fix this once the compiler implements this feature. Keep in sync with genccode.
    [all...]
rbbirb.cpp 7 // This file contains the RBBIRuleBuilder class implementation. This is the main class for
85 fScanner = new RBBIRuleScanner(this);
86 fSetBuilder = new RBBISetBuilder(this);
305 RuleBasedBreakIterator *This = new RuleBasedBreakIterator(data, status);
307 delete This;
308 This = NULL;
310 else if(This == NULL) { // test for NULL
313 return This;
rbbistbl.cpp 64 // RBBISymbolTable::lookup This function from the abstract symbol table inteface
77 RBBISymbolTable *This = (RBBISymbolTable *)this; // cast off const
91 This->fCachedSetLookup = usetNode->fInputSet;
99 This->fCachedSetLookup = NULL;
107 // RBBISymbolTable::lookupMatcher This function from the abstract symbol table
109 // pointer to a Unicode Set. The Unicode Set code uses this
113 // This implementation cheats a little, and does not maintain a map of stand-in chars
115 // constructor will always call this function right after calling lookup(),
120 RBBISymbolTable *This = (RBBISymbolTable *)this; // cast off cons
    [all...]
  /external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/common/checkout/
checkout_unittest.py 8 # notice, this list of conditions and the following disclaimer.
10 # copyright notice, this list of conditions and the following disclaimer
15 # this software without specific prior written permission.
17 # THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
27 # OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
40 from webkitpy.common.system.filesystem import FileSystem # FIXME: This should not be needed.
  /external/clang/include/clang/Basic/
ABI.h 5 // This file is distributed under the University of Illinois Open Source
67 /// \brief A \c this pointer adjustment.
97 /// \brief The \c this pointer adjustment as well as an optional return
100 /// \brief The \c this pointer adjustment.
101 ThisAdjustment This;
108 ThunkInfo(const ThisAdjustment &This, const ReturnAdjustment &Return)
109 : This(This), Return(Return) { }
112 return LHS.This == RHS.This && LHS.Return == RHS.Return
    [all...]
  /external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/tool/servers/
rebaselineserver.py 8 # notice, this list of conditions and the following disclaimer.
10 # copyright notice, this list of conditions and the following disclaimer
15 # this software without specific prior written permission.
17 # THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
27 # OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
34 from webkitpy.common.host import Host # FIXME: This should not be needed!
165 # FIXME: This seems like a hack. This only seems used to access the Port.expected_baselines logic.
179 # FIXME: This should get the Host from the test_config to be mockable!
  /external/chromium_org/third_party/mesa/src/src/gallium/state_trackers/d3d1x/winedlls/dxgi/
dxgi_dll.c 6 * a copy of this software and associated documentation files (the
13 * The above copyright notice and this permission notice (including the
38 /* Wine works in this way: wineserver stores the all window positions
46 * This means that we can freely look at window positions non-atomically,
50 * Of course, if this thread doesn't own the window, we are screwed.
52 * It might be a good idea to integrate this code in winex11.drv.
62 IGalliumDXGIBackend* This,
70 /* this is the parent HWND which actually has an X11 window associated */
126 // TODO: maybe let the user turn this on somehow
136 IGalliumDXGIBackend* This,
    [all...]
  /external/clang/lib/Basic/
Module.cpp 5 // This file is distributed under the University of Illinois Open Source
10 // This file defines the Module class, which describes a module in the source
41 Parent->SubModules.push_back(this);
74 for (const Module *Current = this; Current; Current = Current->Parent) {
87 const Module *This = this;
89 if (This == Other)
92 This = This->Parent;
93 } while (This);
    [all...]
  /external/mesa3d/src/gallium/state_trackers/d3d1x/winedlls/dxgi/
dxgi_dll.c 6 * a copy of this software and associated documentation files (the
13 * The above copyright notice and this permission notice (including the
38 /* Wine works in this way: wineserver stores the all window positions
46 * This means that we can freely look at window positions non-atomically,
50 * Of course, if this thread doesn't own the window, we are screwed.
52 * It might be a good idea to integrate this code in winex11.drv.
62 IGalliumDXGIBackend* This,
70 /* this is the parent HWND which actually has an X11 window associated */
126 // TODO: maybe let the user turn this on somehow
136 IGalliumDXGIBackend* This,
    [all...]
  /external/chromium_org/third_party/icu/source/i18n/
repattrn.cpp 36 // Init all of this instances data.
43 // Copy Constructor Note: This is a rather inefficient implementation,
49 *this = other;
60 if (this == &other) {
62 return *this;
81 return *this;
115 return *this;
119 return *this;
131 return *this;
186 // zap Delete everything owned by this RegexPattern
    [all...]
uspoof_impl.cpp 99 SpoofImpl *This = (SpoofImpl *)sc;
100 if (This->fMagic != USPOOF_MAGIC ||
101 This->fSpoofData == NULL) {
105 if (!SpoofData::validateDataVersion(This->fSpoofData->fRawData, status)) {
108 return This;
120 // confusableLookup() This is the heart of the confusable skeleton generation
176 // No key entry for this char & table.
246 // No confusables in another script for this char.
248 // bit for the script of this char. Gets rid of this special case
    [all...]
uspoof.cpp 92 SpoofImpl *This = SpoofImpl::validateThis(sc, status);
93 delete This;
99 SpoofImpl *This = SpoofImpl::validateThis(sc, *status);
100 if (This == NULL) {
111 This->fChecks = checks;
117 const SpoofImpl *This = SpoofImpl::validateThis(sc, *status);
118 if (This == NULL) {
121 return This->fChecks;
126 SpoofImpl *This = SpoofImpl::validateThis(sc, *status);
127 if (This == NULL)
    [all...]
  /external/chromium_org/third_party/icu/source/test/cintltst/
hpmufn.c 23 * This should align the memory properly on any machine.
236 DummyMutex *This = *(DummyMutex **)mutex;
239 TEST_ASSERT(This->fLockCount == 0);
240 TEST_ASSERT(This->fMagic == 123456);
241 This->fMagic = 0;
242 This->fLockCount = 0;
243 free(This);
247 DummyMutex *This = *(DummyMutex **)mutex;
249 TEST_ASSERT(This->fMagic == 123456);
250 This->fLockCount++
    [all...]
  /external/chromium_org/third_party/icu/source/test/intltest/
simplethread.cpp 191 // This is probably an error on the part of our caller.
199 (void *)this, // Arg List
296 // A note on the POSIX vs the Windows implementations of this class..
299 // The function SimpleThread::isRunning() is used for this purpose.
304 // thread exists with this call could mean that the original thread has
325 // This is the code that is run in the new separate thread.
326 SimpleThread *This = (SimpleThread *)arg;
327 This->run(); // Run the user code.
329 // The user function has returned. Set the flag indicating that this thread
332 PosixThreadImplementation *imp = (PosixThreadImplementation*)This->fImplementation
    [all...]
  /external/icu4c/i18n/
repattrn.cpp 33 // Init all of this instances data.
40 // Copy Constructor Note: This is a rather inefficient implementation,
46 *this = other;
57 if (this == &other) {
59 return *this;
78 return *this;
112 return *this;
116 return *this;
128 return *this;
183 // zap Delete everything owned by this RegexPattern
    [all...]
uspoof.cpp 154 SpoofImpl *This = SpoofImpl::validateThis(sc, status);
155 delete This;
161 SpoofImpl *This = SpoofImpl::validateThis(sc, *status);
162 if (This == NULL) {
173 This->fChecks = checks;
179 const SpoofImpl *This = SpoofImpl::validateThis(sc, *status);
180 if (This == NULL) {
183 return This->fChecks;
189 SpoofImpl *This = SpoofImpl::validateThis(sc, status);
190 if (This != NULL)
    [all...]
uspoof_impl.cpp 106 SpoofImpl *This = (SpoofImpl *)sc;
107 if (This->fMagic != USPOOF_MAGIC ||
108 This->fSpoofData == NULL) {
112 if (!SpoofData::validateDataVersion(This->fSpoofData->fRawData, status)) {
115 return This;
127 // confusableLookup() This is the heart of the confusable skeleton generation
183 // No key entry for this char & table.
250 // No confusables in another script for this char.
252 // bit for the script of this char. Gets rid of this special case
    [all...]
  /external/icu4c/test/cintltst/
hpmufn.c 23 * This should align the memory properly on any machine.
236 DummyMutex *This = *(DummyMutex **)mutex;
239 TEST_ASSERT(This->fLockCount == 0);
240 TEST_ASSERT(This->fMagic == 123456);
241 This->fMagic = 0;
242 This->fLockCount = 0;
243 free(This);
247 DummyMutex *This = *(DummyMutex **)mutex;
249 TEST_ASSERT(This->fMagic == 123456);
250 This->fLockCount++
    [all...]
  /external/icu4c/test/intltest/
simplethread.cpp 199 // This is probably an error on the part of our caller.
207 (void *)this, // Arg List
304 // A note on the POSIX vs the Windows implementations of this class..
307 // The function SimpleThread::isRunning() is used for this purpose.
312 // thread exists with this call could mean that the original thread has
333 // This is the code that is run in the new separate thread.
334 SimpleThread *This = (SimpleThread *)arg;
335 This->run(); // Run the user code.
337 // The user function has returned. Set the flag indicating that this thread
340 PosixThreadImplementation *imp = (PosixThreadImplementation*)This->fImplementation
    [all...]
  /external/clang/lib/StaticAnalyzer/Core/
ExprEngineCallAndReturn.cpp 5 // This file is distributed under the University of Illinois Open Source
10 // This file defines ExprEngine's support for calls and returns.
77 // Back up through the ExplodedGraph until we reach a statement node in this
91 // If there is no statement, this is an implicitly-generated call.
105 // If we reached the CallEnter for this function, it has no statements.
120 /// match the caller's expression type. This can happen when a dynamic call
122 /// return type than the parent's method. For C++ objects, this means we need
237 // correct value for 'this' (if necessary).
266 loc::MemRegionVal This =
268 SVal ThisV = state->getSVal(This);
    [all...]
  /external/chromium_org/v8/src/
preparser.h 7 // notice, this list of conditions and the following disclaimer.
9 // copyright notice, this list of conditions and the following
14 // from this software without specific prior written permission.
16 // THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
26 // OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
72 // This string is the actual value used as key in an object literal,
324 static Expression This() {
387 return *this;
490 *variable = this;
  /external/v8/src/
preparser.h 7 // notice, this list of conditions and the following disclaimer.
9 // copyright notice, this list of conditions and the following
14 // from this software without specific prior written permission.
16 // THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
26 // OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
72 // This string is the actual value used as key in an object literal,
291 static Expression This() {
354 return *this;
455 *variable = this;

Completed in 592 milliseconds

1 2