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

1 2

  /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);
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/clang/include/clang/Basic/
ABI.h 5 // This file is distributed under the University of Illinois Open Source
66 /// ThisAdjustment - A 'this' pointer adjustment.
96 /// ThunkInfo - The 'this' pointer adjustment as well as an optional return
99 /// This - The 'this' pointer adjustment.
100 ThisAdjustment This;
107 ThunkInfo(const ThisAdjustment &This, const ReturnAdjustment &Return)
108 : This(This), Return(Return) { }
111 return LHS.This == RHS.This && LHS.Return == RHS.Return
    [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
39 Parent->SubModules.push_back(this);
73 for (const Module *Current = this; Current; Current = Current->Parent) {
86 const Module *This = this;
88 if (This == Other)
91 This = This->Parent;
92 } while (This);
    [all...]
  /external/icu4c/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 98 SpoofImpl *This = (SpoofImpl *)sc;
99 if (This->fMagic != USPOOF_MAGIC ||
100 This->fSpoofData == NULL) {
104 if (!SpoofData::validateDataVersion(This->fSpoofData->fRawData, status)) {
107 return This;
119 // confusableLookup() This is the heart of the confusable skeleton generation
175 // No key entry for this char & table.
245 // No confusables in another script for this char.
247 // bit for the script of this char. Gets rid of this special case
    [all...]
uspoof.cpp 89 SpoofImpl *This = SpoofImpl::validateThis(sc, status);
90 delete This;
96 SpoofImpl *This = SpoofImpl::validateThis(sc, *status);
97 if (This == NULL) {
108 This->fChecks = checks;
114 const SpoofImpl *This = SpoofImpl::validateThis(sc, *status);
115 if (This == NULL) {
118 return This->fChecks;
123 SpoofImpl *This = SpoofImpl::validateThis(sc, *status);
124 if (This == NULL)
    [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 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/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;
  /external/webkit/Tools/Scripts/webkitpy/common/checkout/
scm_unittest.py 9 # 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.
18 # THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
28 # OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
49 from webkitpy.common.config.committers import Committer # FIXME: This should not be needed
50 from webkitpy.common.net.bugzilla import Attachment # FIXME: This should not be needed
58 # FIXME: This should be unified into one of the executive.py commands!
84 # We use this wrapper to disable output decoding. diffs should be treated as
117 # This used to be the last commit, but doing so brok
    [all...]
  /external/clang/lib/CodeGen/
CGExprCXX.cpp 5 // This file is distributed under the University of Illinois Open Source
10 // This contains code dealing with code generation of C++ expressions
29 llvm::Value *This,
38 // Push the this ptr.
39 Args.add(RValue::get(This), MD->getThisType(getContext()));
83 // FIXME: Ideally Expr::IgnoreParenNoopCasts should do this, but it doesn't do
120 // override this member function and so we can devirtualize it. For example:
146 // This is a record decl. We know the type and can devirtualize it.
161 // Check if this is a call expr that returns a record type.
169 // Note: This function also emit constructor calls to support a MSV
    [all...]
CGExpr.cpp 5 // This file is distributed under the University of Illinois Open Source
10 // This contains code to emit Expr nodes as LLVM code.
48 /// CreateTempAlloca - This creates a alloca and inserts it into the entry
87 return CGM.getCXXABI().EmitMemberPointerIsNotNull(*this, MemPtr, MPT);
109 /// If this is an aggregate expression, AggSlot indicates where the
139 // FIXME: This function should take an LValue as an argument.
179 this->Field = Field;
217 // just syntactic wrappers in this case.
285 // Since the lifetime of this temporary isn't going to be extended,
452 llvm::Value *Value = EmitExprForReferenceBinding(*this, E, ReferenceTemporary
    [all...]
  /external/clang/test/CXX/expr/expr.const/
p2-0x.cpp 6 // - this (5.1.1 [expr.prim.general]) [Note: when evaluating a constant
8 // replaces each occurrence of this in a constexpr member function with a
10 struct This {
12 int this2 : this->this1; // expected-error {{invalid}}
14 int n1[this->this1]; // expected-warning {{variable length array}}
278 // FIXME: clang crashes when trying to parse this! Revisit this check once
328 // DR1312: The proposed wording for this defect has issues, so we ignore this
340 // of this
    [all...]
  /external/clang/lib/Serialization/
ASTReader.cpp 5 // This file is distributed under the University of Illinois Open Source
10 // This file defines the ASTReader class, which reads AST files.
134 // Do it the hard way. At this point, both vectors must be non-empty.
244 // exit this function.
284 // This is a macro definition. Determine the name of the macro we're
293 // Determine whether this macro was given a different definition on the
321 // Show the definition of this macro within the PCH file.
344 // Show the definition of this macro within the PCH file.
372 // This is an extra macro definition. Determine the name of the
381 // Check whether this name was used somewhere in the PCH file. I
    [all...]
  /external/v8/include/
v8.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.
32 * This set of documents provides reference material generated from the
127 * This callback should either explicitly invoke Dispose on |object| if
182 * Creates a handle for the contents of the specified handle. This
194 * This check fails when trying to convert between incompatible
222 internal::Object** a = reinterpret_cast<internal::Object**>(**this);
    [all...]
  /external/clang/lib/AST/
ExprConstant.cpp 5 // This file is distributed under the University of Illinois Open Source
10 // This file implements the Expr constant evaluator.
15 // This is the 'bool' return value used by most of the code in this file. A
87 /// Determine whether this LValue path entry for a base class names a virtual
125 // The order of this enum is important for diagnostics.
138 /// Is this a pointer one past the end of an object?
141 /// The length of the path to the most-derived object of which this is a
149 /// The type of the most derived object referred to by this address.
183 /// Determine whether this is a one-past-the-end pointer
    [all...]
  /external/clang/lib/Sema/
SemaDeclCXX.cpp 5 // This file is distributed under the University of Illinois Open Source
10 // This file implements semantic analysis for C++ declarations.
50 /// contains any ill-formed subexpressions. For example, this will
68 /// VisitExpr - Visit all of the children of this expression.
77 /// determine whether this declaration can be used in the default
106 /// VisitCXXThisExpr - Visit a C++ "this" expression.
109 // The keyword this shall not be used in a default argument of a
142 // If this function can throw any exceptions, make a note of that.
149 // FIXME: If the call to this decl is using any of its default arguments, we
152 // If this function has a basic noexcept, it doesn't affect the outcome
    [all...]
  /external/v8/test/cctest/
test-api.cc 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.
654 if (dispose_) delete this;
775 args.This()->Set(v8_str("x"), v8_num(1));
776 args.This()->Set(v8_str("y"), v8_num(2));
777 return args.This();
975 // The casts allow this to compile, even if Smi::kMaxValue is 2^31-1
    [all...]
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
org.eclipse.equinox.p2.repository.tools_2.0.1.R36x_v20100823.jar 
com.ibm.icu_4.2.1.v20100412.jar 
org.apache.jasper_5.5.17.v201004212143.jar 
  /prebuilts/tools/common/lombok-ast/
lombok-ast-0.2.jar 
  /prebuilt/common/ecj/
ecj.jar 

Completed in 889 milliseconds

1 2