OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:a_func
(Results
1 - 3
of
3
) sorted by null
/external/clang/test/Sema/
warn-type-safety.c
65
void
A_func
(void *ptr, void *tag) __attribute__(( pointer_with_type_tag(a,1,2) ));
77
A_func
(ptr, &A_tag); // no-warning
78
A_func
(ptr, &B_tag); // expected-warning {{this type tag was not designed to be used with this function}}
/external/clang/test/CodeGenCXX/
debug-lambda-expressions.cpp
23
// CHECK: ![[
A_FUNC
:.*]] = distinct !DISubprogram(name: "a"{{.*}}, line: [[A_LINE:[0-9]+]]{{.*}}, isDefinition: true
36
// CHECK: ![[LAM_A:.*]] = !DICompositeType(tag: DW_TAG_class_type{{.*}}, scope: ![[
A_FUNC
]]{{.*}}, line: [[A_LINE]],
/external/v8/test/cctest/
test-inobject-slack-tracking.cc
368
Handle<JSFunction>
a_func
= GetLexical<JSFunction>("A");
local
372
CHECK(!
a_func
->has_initial_map());
379
CHECK(
a_func
->has_initial_map());
380
Handle<Map> a_initial_map(
a_func
->initial_map());
462
Handle<JSFunction>
a_func
= GetLexical<JSFunction>("A");
local
466
CHECK(!
a_func
->has_initial_map());
475
CHECK(
a_func
->has_initial_map());
476
Handle<Map> a_initial_map(
a_func
->initial_map());
[
all
...]
Completed in 172 milliseconds