OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:context_list
(Results
1 - 6
of
6
) sorted by null
/external/chromium_org/third_party/mesa/src/src/glx/apple/
apple_glx_context.c
67
static struct apple_glx_context *
context_list
= NULL;
variable in typeref:struct:apple_glx_context
69
/* This guards the
context_list
above. */
105
for (i =
context_list
; i; i = i->next) {
192
if (
context_list
)
193
context_list
->previous = ac;
196
ac->next =
context_list
;
197
context_list
= ac;
229
/* Remove ac from the
context_list
as soon as possible. */
236
context_list
= ac->next;
534
for (ac =
context_list
; ac; ac = ac->next)
[
all
...]
/external/mesa3d/src/glx/apple/
apple_glx_context.c
67
static struct apple_glx_context *
context_list
= NULL;
variable in typeref:struct:apple_glx_context
69
/* This guards the
context_list
above. */
105
for (i =
context_list
; i; i = i->next) {
192
if (
context_list
)
193
context_list
->previous = ac;
196
ac->next =
context_list
;
197
context_list
= ac;
229
/* Remove ac from the
context_list
as soon as possible. */
236
context_list
= ac->next;
534
for (ac =
context_list
; ac; ac = ac->next)
[
all
...]
/external/chromium/net/http/
http_cache_unittest.cc
1500
std::vector<Context*>
context_list
;
local
1567
std::vector<Context*>
context_list
;
local
1651
ScopedVector<Context>
context_list
;
local
1698
std::vector<Context*>
context_list
;
local
1744
std::vector<Context*>
context_list
;
local
1803
std::vector<Context*>
context_list
;
local
1882
std::vector<Context*>
context_list
;
local
1958
std::vector<Context*>
context_list
;
local
1996
std::vector<Context*>
context_list
;
local
2042
std::vector<Context*>
context_list
;
local
[
all
...]
/external/chromium_org/net/http/
http_cache_unittest.cc
1313
std::vector<Context*>
context_list
;
local
1382
std::vector<Context*>
context_list
;
local
1468
ScopedVector<Context>
context_list
;
local
1517
std::vector<Context*>
context_list
;
local
1565
std::vector<Context*>
context_list
;
local
1626
std::vector<Context*>
context_list
;
local
1709
std::vector<Context*>
context_list
;
local
1788
std::vector<Context*>
context_list
;
local
1828
std::vector<Context*>
context_list
;
local
1875
std::vector<Context*>
context_list
;
local
[
all
...]
/external/v8/src/
liveedit.cc
860
ZoneList<Variable*>
context_list
(outer_scope->ContextLocalCount());
861
outer_scope->CollectStackAndContextLocals(&stack_list, &
context_list
);
862
context_list
.Sort(&Variable::CompareIndex);
864
for (int i = 0; i <
context_list
.length(); i++) {
867
context_list
[i]->name());
872
Handle<Smi>(Smi::FromInt(
context_list
[i]->index())));
[
all
...]
/external/chromium_org/v8/src/
liveedit.cc
903
ZoneList<Variable*>
context_list
(
905
current_scope->CollectStackAndContextLocals(&stack_list, &
context_list
);
906
context_list
.Sort(&Variable::CompareIndex);
908
for (int i = 0; i <
context_list
.length(); i++) {
911
context_list
[i]->name());
916
Handle<Smi>(Smi::FromInt(
context_list
[i]->index()), isolate()));
[
all
...]
Completed in 178 milliseconds