OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:staticData
(Results
1 - 7
of
7
) sorted by null
/external/webkit/Source/JavaScriptCore/wtf/
WTFThreadData.cpp
33
ThreadSpecific<WTFThreadData>* WTFThreadData::
staticData
;
35
WTFThreadData* WTFThreadData::
staticData
;
WTFThreadData.h
135
static JS_EXPORTDATA ThreadSpecific<WTFThreadData>*
staticData
;
137
static JS_EXPORTDATA WTFThreadData*
staticData
;
152
if (!WTFThreadData::
staticData
)
153
WTFThreadData::
staticData
= new ThreadSpecific<WTFThreadData>;
154
return **WTFThreadData::
staticData
;
156
if (!WTFThreadData::
staticData
) {
157
WTFThreadData::
staticData
= static_cast<WTFThreadData*>(fastMalloc(sizeof(WTFThreadData)));
158
// WTFThreadData constructor indirectly uses
staticData
, so we need to set up the memory before invoking it.
159
new (WTFThreadData::
staticData
) WTFThreadData;
161
return *WTFThreadData::
staticData
;
[
all
...]
/external/webkit/Source/WebCore/platform/
ThreadGlobalData.cpp
53
ThreadSpecific<ThreadGlobalData>* ThreadGlobalData::
staticData
;
55
ThreadGlobalData* ThreadGlobalData::
staticData
;
ThreadGlobalData.h
83
static ThreadSpecific<ThreadGlobalData>*
staticData
;
85
static ThreadGlobalData*
staticData
;
97
if (!ThreadGlobalData::
staticData
)
98
ThreadGlobalData::
staticData
= new ThreadSpecific<ThreadGlobalData>;
99
return **ThreadGlobalData::
staticData
;
101
if (!ThreadGlobalData::
staticData
) {
102
ThreadGlobalData::
staticData
= static_cast<ThreadGlobalData*>(fastMalloc(sizeof(ThreadGlobalData)));
103
// ThreadGlobalData constructor indirectly uses
staticData
, so we need to set up the memory before invoking it.
104
new (ThreadGlobalData::
staticData
) ThreadGlobalData;
106
return *ThreadGlobalData::
staticData
;
[
all
...]
/external/icu4c/common/
ucnv_bld.h
100
const UConverterStaticData *
staticData
; /* pointer to the static (non changing) data. */
/external/icu4c/tools/makeconv/
makeconv.c
45
UConverterStaticData
staticData
;
52
data->
staticData
.structSize=sizeof(UConverterStaticData);
53
data->sharedData.
staticData
=&data->
staticData
;
148
udata_writeBlock(mem, &data->
staticData
, sizeof(UConverterStaticData));
152
size += data->cnvData->write(data->cnvData, &data->
staticData
, mem, tableType);
155
size += data->extData->write(data->extData, &data->
staticData
, mem, tableType);
366
if(uprv_stricmp(p,data.
staticData
.name))
370
data.
staticData
.name);
373
uprv_strcpy((char*)data.
staticData
.name, cnvName)
[
all
...]
/external/webkit/Source/WebCore/xml/
XMLHttpRequest.cpp
158
static const XMLHttpRequestStaticData*
staticData
= 0;
162
staticData
= new XMLHttpRequestStaticData;
163
return
staticData
;
844
return !
staticData
->m_forbiddenRequestHeaders.contains(name) && !name.startsWith(
staticData
->m_proxyHeaderPrefix, false)
845
&& !name.startsWith(
staticData
->m_secHeaderPrefix, false);
[
all
...]
Completed in 128 milliseconds