HomeSort by relevance Sort by last modified time
    Searched defs:templ (Results 1 - 25 of 105) sorted by null

1 2 3 4 5

  /external/chromium_org/third_party/boringssl/src/tool/
args.cc 31 const struct argument *templ = nullptr; local
34 templ = &templates[j];
39 if (templ == nullptr) {
58 const struct argument *templ = &templates[j]; local
59 if (templ->required && out_args->find(templ->name) == out_args->end()) {
60 fprintf(stderr, "Missing value for required argument: %s\n", templ->name);
70 const struct argument *templ = &templates[i]; local
71 fprintf(stderr, "%s\t%s\n", templ->name, templ->description)
    [all...]
  /external/chromium_org/gin/test/
gc.cc 28 v8::Local<v8::ObjectTemplate> templ = local
30 if (templ.IsEmpty()) {
31 templ = ObjectTemplateBuilder(isolate)
36 data->SetObjectTemplate(&g_wrapper_info, templ);
38 return templ->NewInstance();
gtest.cc 48 v8::Local<v8::ObjectTemplate> templ = local
50 if (templ.IsEmpty()) {
51 templ = ObjectTemplateBuilder(isolate)
57 data->SetObjectTemplate(&g_wrapper_info, templ);
59 return templ->NewInstance();
file.cc 74 v8::Local<ObjectTemplate> templ = data->GetObjectTemplate(&g_wrapper_info); local
75 if (templ.IsEmpty()) {
76 templ = gin::ObjectTemplateBuilder(isolate)
81 data->SetObjectTemplate(&g_wrapper_info, templ);
83 return templ->NewInstance();
  /external/chromium_org/mojo/apps/js/
mojo_module.cc 29 v8::Local<v8::ObjectTemplate> templ = local
32 if (templ.IsEmpty()) {
33 templ = gin::ObjectTemplateBuilder(isolate)
40 data->SetObjectTemplate(&g_wrapper_info, templ);
43 return templ->NewInstance();
  /external/clang/test/CXX/expr/expr.unary/expr.new/
p17-crash.cpp 3 // this used to crash due to templ<int>'s dtor not being marked as used by the
9 template < typename T > class templ { class
13 new templ<int>[1][1];
  /external/chromium_org/gin/modules/
console.cc 39 v8::Local<ObjectTemplate> templ = data->GetObjectTemplate(&g_wrapper_info); local
40 if (templ.IsEmpty()) {
41 templ = ObjectTemplateBuilder(isolate)
44 data->SetObjectTemplate(&g_wrapper_info, templ);
46 return templ->NewInstance();
module_runner_delegate.cc 44 v8::Handle<v8::ObjectTemplate> templ = ObjectTemplateBuilder(isolate).Build(); local
45 ModuleRegistry::RegisterGlobals(isolate, templ);
46 return templ;
  /external/chromium_org/mojo/apps/js/bindings/gl/
module.cc 36 v8::Local<v8::ObjectTemplate> templ = data->GetObjectTemplate(&kWrapperInfo); local
38 if (templ.IsEmpty()) {
39 templ = gin::ObjectTemplateBuilder(isolate)
42 data->SetObjectTemplate(&kWrapperInfo, templ);
45 return templ->NewInstance();
  /external/chromium_org/mojo/apps/js/bindings/
monotonic_clock.cc 30 v8::Local<v8::ObjectTemplate> templ = local
32 if (templ.IsEmpty()) {
33 templ = gin::ObjectTemplateBuilder(isolate)
36 data->SetObjectTemplate(&g_wrapper_info, templ);
38 return templ->NewInstance();
threading.cc 29 v8::Local<v8::ObjectTemplate> templ = data->GetObjectTemplate( local
32 if (templ.IsEmpty()) {
33 templ = gin::ObjectTemplateBuilder(isolate)
37 data->SetObjectTemplate(&g_wrapper_info, templ);
40 return templ->NewInstance();
  /external/chromium_org/mojo/bindings/js/
support.cc 44 v8::Local<v8::ObjectTemplate> templ = data->GetObjectTemplate( local
47 if (templ.IsEmpty()) {
48 templ = gin::ObjectTemplateBuilder(isolate)
53 data->SetObjectTemplate(&g_wrapper_info, templ);
56 return templ->NewInstance();
  /external/chromium_org/third_party/mesa/src/src/gallium/state_trackers/egl/common/
native_wayland_drm_bufmgr_helper.c 20 struct pipe_resource templ; local
39 memset(&templ, 0, sizeof(templ));
40 templ.target = PIPE_TEXTURE_2D;
41 templ.format = pf;
42 templ.bind = PIPE_BIND_RENDER_TARGET | PIPE_BIND_SAMPLER_VIEW;
43 templ.width0 = buffer->buffer.width;
44 templ.height0 = buffer->buffer.height;
45 templ.depth0 = 1;
46 templ.array_size = 1
    [all...]
native_buffer.h 50 struct pipe_resource templ; member in struct:native_buffer::__anon18812::__anon18813
  /external/mesa3d/src/gallium/state_trackers/egl/common/
native_wayland_drm_bufmgr_helper.c 20 struct pipe_resource templ; local
39 memset(&templ, 0, sizeof(templ));
40 templ.target = PIPE_TEXTURE_2D;
41 templ.format = pf;
42 templ.bind = PIPE_BIND_RENDER_TARGET | PIPE_BIND_SAMPLER_VIEW;
43 templ.width0 = buffer->buffer.width;
44 templ.height0 = buffer->buffer.height;
45 templ.depth0 = 1;
46 templ.array_size = 1
    [all...]
native_buffer.h 50 struct pipe_resource templ; member in struct:native_buffer::__anon7150::__anon7151
  /external/chromium_org/gin/
wrappable.cc 39 v8::Local<v8::ObjectTemplate> templ = data->GetObjectTemplate(info); local
40 if (templ.IsEmpty()) {
41 templ = GetObjectTemplateBuilder(isolate).Build();
42 CHECK(!templ.IsEmpty());
43 data->SetObjectTemplate(info, templ);
45 CHECK_EQ(kNumberOfInternalFields, templ->InternalFieldCount());
46 v8::Handle<v8::Object> wrapper = templ->NewInstance();
  /external/chromium_org/third_party/mesa/src/src/gallium/state_trackers/gbm/
gbm_drm.c 178 struct pipe_resource templ; local
195 memset(&templ, 0, sizeof(templ));
196 templ.bind = gbm_usage_to_gallium(usage);
197 templ.format = pf;
198 templ.target = PIPE_TEXTURE_2D;
199 templ.last_level = 0;
200 templ.width0 = width;
201 templ.height0 = height;
202 templ.depth0 = 1
    [all...]
  /external/chromium_org/third_party/mesa/src/src/mesa/state_tracker/
st_texture.h 130 struct pipe_sampler_view templ; local
132 u_sampler_view_default_template(&templ, texture, format);
134 return pipe->create_sampler_view(pipe, texture, &templ);
  /external/chromium_org/third_party/skia/experimental/SkV8Example/
JsContext.cpp 45 Handle<ObjectTemplate> templ = local
49 Local<Object> result = templ->NewInstance();
  /external/clang/test/CXX/expr/expr.prim/expr.prim.general/
p8-0x.cpp 57 struct templ { struct in namespace:PR10127
61 template class templ<int>; // expected-note{{in instantiation of template class 'PR10127::templ<int>' requested here}}
62 template class templ<outer>;
  /external/compiler-rt/lib/sanitizer_common/
sanitizer_libignore.h 46 char *templ; member in struct:__sanitizer::LibIgnore::Lib
sanitizer_suppressions.h 35 char *templ; member in struct:__sanitizer::Suppression
58 bool TemplateMatch(char *templ, const char *str);
  /external/linux-tools-perf/perf-3.12.0/tools/perf/tests/
dso-data.c 16 char *templ = buf_templ; local
20 fd = mkstemp(templ);
36 templ = NULL;
39 return templ;
  /external/mesa3d/src/gallium/state_trackers/gbm/
gbm_drm.c 178 struct pipe_resource templ; local
195 memset(&templ, 0, sizeof(templ));
196 templ.bind = gbm_usage_to_gallium(usage);
197 templ.format = pf;
198 templ.target = PIPE_TEXTURE_2D;
199 templ.last_level = 0;
200 templ.width0 = width;
201 templ.height0 = height;
202 templ.depth0 = 1
    [all...]

Completed in 796 milliseconds

1 2 3 4 5