HomeSort by relevance Sort by last modified time
    Searched refs:baseContext (Results 1 - 6 of 6) sorted by null

  /external/icu4c/common/
uenum.c 21 /* Layout of the baseContext buffer. */
27 /* Extra bytes to allocate in the baseContext buffer. */
30 /* Return a pointer to the baseContext buffer, possibly allocating
34 if (en->baseContext != NULL) {
35 if (((_UEnumBuffer*) en->baseContext)->len < capacity) {
37 en->baseContext = uprv_realloc(en->baseContext,
39 if (en->baseContext == NULL) {
42 ((_UEnumBuffer*) en->baseContext)->len = capacity;
46 en->baseContext = uprv_malloc(sizeof(int32_t) + capacity)
    [all...]
uenumimp.h 107 /* baseContext. For the base class only. Don't touch! */
108 void *baseContext;
  /external/webkit/Tools/DumpRenderTree/cg/
ImageDiffCG.cpp 100 RetainPtr<CGContextRef> baseContext(AdoptCF, CGBitmapContextCreate(baseBuffer, width, height, 8, rowBytes, CGImageGetColorSpace(baseImage), kCGImageAlphaPremultipliedFirst | kCGBitmapByteOrder32Host));
101 CGContextDrawImage(baseContext.get(), CGRectMake(0, 0, width, height), baseImage);
  /packages/apps/Email/tests/src/com/android/email/
DBTestHelper.java 163 public MockContext2(Context baseContext) {
164 mBaseContext = baseContext;
  /frameworks/base/services/java/com/android/server/
NotificationManagerService.java 285 private static String idDebugString(Context baseContext, String packageName, int id) {
290 c = baseContext.createPackageContext(packageName, 0);
292 c = baseContext;
295 c = baseContext;
332 void dump(PrintWriter pw, String prefix, Context baseContext) {
335 + " / " + idDebugString(baseContext, this.pkg, notification.icon));
    [all...]
  /external/webkit/Source/WebCore/rendering/
RenderBlockLineLayout.cpp 699 BidiContext* baseContext = currentContext;
700 while (BidiContext* parent = baseContext->parent())
701 baseContext = parent;
703 BidiRun* newTrailingRun = new (renderArena()) BidiRun(firstSpace, trailingSpaceRun->m_stop, trailingSpaceRun->m_object, baseContext, OtherNeutral)
    [all...]

Completed in 664 milliseconds