Searched defs:Describe (Results 1 - 25 of 32) sorted by relevance

12

/external/chromium_org/ppapi/c/dev/
H A Dppb_buffer_dev.h46 PP_Bool (*Describe)(PP_Resource resource, uint32_t* size_in_bytes); member in struct:PPB_Buffer_Dev_0_4
H A Dppb_font_dev.h88 * When Describe()ing a font, the family will be the value you passed in when
213 PP_Bool (*Describe)(PP_Resource font, member in struct:PPB_Font_Dev_0_6
/external/chromium_org/ppapi/c/
H A Dppb_graphics_2d.h77 * Describe() retrieves the configuration for the given graphics context,
89 PP_Bool (*Describe)(PP_Resource graphics_2d, member in struct:PPB_Graphics2D_1_1
288 PP_Bool (*Describe)(PP_Resource graphics_2d, member in struct:PPB_Graphics2D_1_0
H A Dppb_image_data.h169 * Describe() computes the description of the
182 PP_Bool (*Describe)(PP_Resource image_data, struct PP_ImageDataDesc* desc); member in struct:PPB_ImageData_1_0
/external/chromium_org/ppapi/thunk/
H A Dppb_buffer_thunk.cc28 PP_Bool Describe(PP_Resource resource, uint32_t* size_in_bytes) { function in namespace:ppapi::thunk::__anon10245
34 return enter.object()->Describe(size_in_bytes);
53 &Describe,
H A Dppb_image_data_thunk.cc52 PP_Bool Describe(PP_Resource image_data, struct PP_ImageDataDesc* desc) { function in namespace:ppapi::thunk::__anon10284
53 VLOG(4) << "PPB_ImageData::Describe()";
59 return enter.object()->Describe(desc);
83 &Describe,
H A Dppb_browser_font_trusted_thunk.cc36 PP_Bool Describe(PP_Resource font_id, function in namespace:ppapi::thunk::__anon10244
41 enter.object()->Describe(description, metrics) : PP_FALSE;
85 &Describe,
H A Dppb_graphics_2d_thunk.cc38 PP_Bool Describe(PP_Resource graphics_2d, function in namespace:ppapi::thunk::__anon10278
41 VLOG(4) << "PPB_Graphics2D::Describe()";
48 return enter.object()->Describe(size, is_always_opaque);
107 &Describe,
117 &Describe,
H A Dppb_truetype_font_dev_thunk.cc64 int32_t Describe(PP_Resource font, function in namespace:ppapi::thunk::__anon10309
67 VLOG(4) << "PPB_TrueTypeFont_Dev::Describe()";
71 return enter.SetResult(enter.object()->Describe(desc, enter.callback()));
107 &Describe,
/external/chromium_org/tools/gn/
H A Dlocation.cc44 std::string Location::Describe(bool include_char_offset) const { function in class:Location
H A Dlabel_pattern.cc226 std::string LabelPattern::Describe() const { function in class:LabelPattern
H A Dvisibility.cc64 std::string Visibility::Describe(int indent, bool include_brackets) const { function in class:Visibility
80 result += inner_indent_string + patterns_[i].Describe() + "\n";
97 to->visibility().Describe(0, true));
/external/chromium_org/native_client_sdk/src/tests/nacl_io_test/fake_ppapi/
H A Dfake_var_manager.cc17 << Describe(var_data);
41 << "AddRefing freed " << Describe(*var_data);
45 Describe(*var_data).c_str(),
49 std::string FakeVarManager::Describe(const FakeVarData& var_data) { function in class:FakeVarManager
128 << "Accessing freed " << Describe(*var_data);
146 << "Releasing freed " << Describe(*var_data);
151 Describe(*var_data).c_str(),
/external/chromium_org/content/renderer/pepper/
H A Dppb_buffer_impl.cc58 PP_Bool PPB_Buffer_Impl::Describe(uint32_t* size_in_bytes) { function in class:content::PPB_Buffer_Impl
94 api->Describe(&size_);
H A Dppb_image_data_impl.cc108 PP_Bool PPB_ImageData_Impl::Describe(PP_ImageDataDesc* desc) { function in class:content::PPB_ImageData_Impl
/external/chromium_org/ppapi/c/private/
H A Dppb_net_address_private.h94 struct PP_Var (*Describe)(PP_Module module, member in struct:PPB_NetAddress_Private_1_1
154 struct PP_Var (*Describe)(PP_Module module, member in struct:PPB_NetAddress_Private_0_1
168 struct PP_Var (*Describe)(PP_Module module, member in struct:PPB_NetAddress_Private_1_0
/external/chromium_org/ppapi/cpp/dev/
H A Dtruetype_font_dev.cc121 int32_t TrueTypeFont_Dev::Describe( function in class:pp::TrueTypeFont_Dev
125 get_interface<PPB_TrueTypeFont_Dev_0_1>()->Describe(
H A Dfont_dev.cc129 bool Font_Dev::Describe(FontDescription_Dev* description, function in class:pp::Font_Dev
136 if (!get_interface<PPB_Font_Dev>()->Describe(
/external/chromium_org/ppapi/cpp/private/
H A Dnet_address_private.cc74 std::string NetAddressPrivate::Describe(const PP_NetAddress_Private& addr, function in class:pp::NetAddressPrivate
82 result_pp_var = get_interface<PPB_NetAddress_Private_1_1>()->Describe(
87 result_pp_var = get_interface<PPB_NetAddress_Private_1_0>()->Describe(
92 result_pp_var = get_interface<PPB_NetAddress_Private_0_1>()->Describe(
/external/chromium_org/ppapi/proxy/
H A Dtruetype_font_resource.cc45 int32_t TrueTypeFontResource::Describe( function in class:ppapi::proxy::TrueTypeFontResource
113 // Now complete any pending Describe operation.
H A Dgraphics_2d_resource.cc47 PP_Bool Graphics2DResource::Describe(PP_Size* size, PP_Bool* is_always_opaque) { function in class:ppapi::proxy::Graphics2DResource
H A Dppb_buffer_proxy.cc42 PP_Bool Buffer::Describe(uint32_t* size_in_bytes) { function in class:ppapi::proxy::Buffer
/external/chromium_org/ppapi/cpp/trusted/
H A Dbrowser_font_trusted.cc166 bool BrowserFont_Trusted::Describe( function in class:pp::BrowserFont_Trusted
172 if (!get_interface<PPB_BrowserFont_Trusted_1_0>()->Describe(
176 if (!get_interface<PPB_Font_Dev_0_6>()->Describe(
/external/chromium_org/content/child/
H A Dbrowser_font_resource_trusted.cc266 PP_Bool BrowserFontResource_Trusted::Describe( function in class:content::__anon7478::BrowserFontResource_Trusted
/external/chromium_org/ppapi/c/trusted/
H A Dppb_browser_font_trusted.h90 * When Describe()ing a font, the family will be the value you passed in when
210 PP_Bool (*Describe)(PP_Resource font, member in struct:PPB_BrowserFont_Trusted_1_0

Completed in 1612 milliseconds

12