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

  /external/chromium_org/third_party/icu/source/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/icu/icu4c/source/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/chromium_org/third_party/skia/experimental/SkV8Example/
BaseContext.cpp 14 #include "BaseContext.h"
19 BaseContext* BaseContext::Unwrap(Handle<Object> obj) {
22 return static_cast<BaseContext*>(ptr);
25 void BaseContext::FillRect(const v8::FunctionCallbackInfo<Value>& args) {
26 BaseContext* BaseContext = Unwrap(args.This());
27 SkCanvas* canvas = BaseContext->getCanvas();
49 canvas->drawRect(rect, BaseContext->fFillStyle);
52 void BaseContext::Save(const v8::FunctionCallbackInfo<Value>& args)
    [all...]
  /external/chromium_org/third_party/WebKit/Source/platform/text/
BidiResolver.h 471 BidiContext* baseContext = context();
472 while (BidiContext* parent = baseContext->parent())
473 baseContext = parent;
475 m_trailingSpaceRun = addTrailingRun(runs, firstSpace, trailingSpaceRun->m_stop, trailingSpaceRun, baseContext, m_paragraphDirectionality);
    [all...]

Completed in 312 milliseconds