HomeSort by relevance Sort by last modified time
    Searched refs:instance (Results 651 - 675 of 2393) sorted by null

<<21222324252627282930>>

  /external/mesa3d/src/gallium/drivers/svga/svgadump/
svga_dump.py 52 def __init__(self, instance = '', decl = None):
54 self._instance = instance
84 def dump_decl(instance, decl):
85 dumper = decl_dumper_t(instance, decl)
91 def __init__(self, instance, type_):
93 self.instance = instance
97 return type_dumper_t(self.instance, self.type)
146 dump_type(self.instance + '[%i]' % i, type_traits.base_type(self.type))
154 dump_decl(self.instance, decl
    [all...]
  /external/chromium_org/chrome/renderer/resources/extensions/
json_schema.js 44 function isInstanceOfClass(instance, className) {
45 while ((instance = instance.__proto__)) {
46 if (instance.constructor.name == className)
57 * Validates an instance against a schema and accumulates errors. Usage:
98 notInstance: "Object must be an instance of *."
224 * Validates an instance against a schema. The instance can be any JavaScript
228 JSONSchemaValidator.prototype.validate = function(instance, schema, opt_path) {
240 // If the schema has an extends property, the instance must validate agains
    [all...]
  /dalvik/hit/src/com/android/hit/
ArrayInstance.java 23 public class ArrayInstance extends Instance {
43 * mData holds a stream of object instance ids
62 Instance instance = state.findReference(id); local
64 if (instance != null) {
65 instance.addParent(this);
79 public final void visit(Set<Instance> resultSet, Filter filter) {
98 * mData holds a stream of object instance ids
118 Instance instance = state.findReference(id) local
    [all...]
Heap.java 42 HashMap<Long, Instance> mInstances = new HashMap<Long, Instance>();
91 public final void addInstance(long id, Instance instance) {
92 mInstances.put(id, instance);
95 public final Instance getInstance(long id) {
137 for (Instance instance: theClass.mInstances) {
138 size += instance.getCompositeSize();
150 * parent class definition objects. Then have each instance resolv
    [all...]
  /external/chromium_org/content/renderer/pepper/
pepper_browser_connection.cc 44 PP_Instance instance,
49 instance,
57 void PepperBrowserConnection::DidDeleteInProcessInstance(PP_Instance instance) {
58 Send(new ViewHostMsg_DidDeleteInProcessInstance(instance));
63 PP_Instance instance,
73 instance,
  /external/chromium_org/native_client_sdk/src/examples/api/url_loader/
url_loader_handler.cc 23 URLLoaderHandler* URLLoaderHandler::Create(pp::Instance* instance,
25 return new URLLoaderHandler(instance, url);
28 URLLoaderHandler::URLLoaderHandler(pp::Instance* instance,
30 : instance_(instance),
32 url_request_(instance),
33 url_loader_(instance),
  /external/chromium_org/ppapi/examples/enumerate_devices/
enumerate_devices.cc 16 #include "ppapi/cpp/instance.h"
36 virtual pp::Instance* CreateInstance(PP_Instance instance);
39 class EnumerateDevicesDemoInstance : public pp::Instance,
42 EnumerateDevicesDemoInstance(PP_Instance instance, pp::Module* module);
45 // pp::Instance implementation (see PPP_Instance).
66 EnumerateDevicesDemoInstance::EnumerateDevicesDemoInstance(PP_Instance instance,
68 : pp::Instance(instance),
116 pp::Instance* EnumerateDevicesDemoModule::CreateInstance(PP_Instance instance)
    [all...]
  /external/chromium_org/ppapi/tests/
test_resource_array.cc 16 pp::InputEvent CreateMouseEvent(pp::Instance* instance,
20 instance,
30 pp::ImageData CreateImageData(pp::Instance* instance) {
32 instance,
40 TestResourceArray::TestResourceArray(TestingInstance* instance)
41 : TestCase(instance) {
test_instance_deprecated.cc 21 // ScriptableObject used by instance.
35 // For out-of-process, the InstanceSO might be deleted after the instance was
47 // instance is destroyed. If the renderer is being shut down, too much happens
60 i->instance()->AddPostCondition(
69 // with out-of-process. That would mean that the instance
71 pp::Var ret = test_instance_->instance()->ExecuteScript(
75 // comment in InstanceSO's constructor for an explanation. Also, instance()
119 REGISTER_TEST_CASE(Instance);
121 TestInstance::TestInstance(TestingInstance* instance) : TestCase(instance) {
    [all...]
  /external/e2fsprogs/tests/defaults/
e_script 12 instance=`echo $test_name | sed -e 's/e_\([^_]*\)_\(.*\)/\2/'`
31 cat $SRCDIR/progs/test_data/$instance.setup $SRCDIR/progs/test_data/test.$class \
47 unset EXPECT OUT class instance
  /external/jmonkeyengine/engine/src/core/com/jme3/util/
TempVars.java 45 * This returns an available instance of the TempVar class ensuring this
46 * particular instance is never used elsewhere in the mean time.
60 * the current instance and then the index is decremented.
80 * This instance of TempVars has been retrieved but not released yet.
88 * Acquire an instance of the TempVar class.
89 * You have to release the instance after use by calling the
94 * @return A TempVar instance
99 TempVars instance = stack.tempVars[stack.index]; local
101 if (instance == null) {
103 instance = new TempVars();
    [all...]
  /external/chromium_org/ppapi/proxy/
flash_resource.cc 54 PP_Instance instance,
56 : PluginResource(connection, instance),
69 PP_Var FlashResource::GetProxyForURL(PP_Instance instance,
80 void FlashResource::UpdateActivity(PP_Instance instance) {
84 PP_Bool FlashResource::SetCrashData(PP_Instance instance,
103 double FlashResource::GetLocalTimeZoneOffset(PP_Instance instance,
148 PP_Var FlashResource::GetSetting(PP_Instance instance,
181 void FlashResource::SetInstanceAlwaysOnTop(PP_Instance instance,
187 PP_Instance instance,
201 // The instance parameter isn't strictly necessary but we check that i
    [all...]
  /dalvik/vm/mterp/mips/
OP_NEW_INSTANCE.S 10 * Create a new instance of a class.
12 # new-instance vAA, class /* BBBB */
  /external/chromium/chrome/common/
json_schema_validator_unittest_base.h 32 Value* instance, DictionaryValue* schema,
36 Value* instance, DictionaryValue* schema,
  /external/chromium_org/base/memory/
memory_pressure_listener.cc 18 New(void* instance) {
22 instance);
  /external/chromium_org/chrome/browser/chromeos/drive/
fileapi_worker_unittest.cc 24 // Returns the |instance| as is.
25 FileSystemInterface* GetFileSystem(FileSystemInterface* instance) {
26 return instance;
  /external/chromium_org/chrome/browser/nacl_host/
nacl_host_message_filter.cc 103 int instance,
105 Send(new NaClViewMsg_EnsurePnaclInstalledReply(instance, success));
109 int instance,
115 int instance) {
118 this, instance),
120 this, instance));
191 void NaClHostMessageFilter::OnTranslationFinished(int instance, bool success) {
193 render_process_id_, instance, success);
  /external/chromium_org/chrome/browser/policy/cloud/
user_cloud_policy_manager_factory.h 27 // invokes CreateForProfile() explicitly, takes ownership, and the instance
36 // Returns an instance of the UserCloudPolicyManagerFactory singleton.
39 // Returns the UserCloudPolicyManager instance associated with |profile|.
42 // Creates an instance for |profile|. Note that the caller is responsible for
43 // managing the lifetime of the instance. Subsequent calls to GetForProfile()
44 // will return the created instance as long as it lives.
73 void Register(Profile* profile, UserCloudPolicyManager* instance);
74 void Unregister(Profile* profile, UserCloudPolicyManager* instance);
  /external/chromium_org/chrome/common/json_schema/
json_schema_validator_unittest_base.h 34 base::Value* instance,
39 base::Value* instance,
  /external/chromium_org/chrome/renderer/pepper/
pepper_flash_fullscreen_host.cc 19 PP_Instance instance,
21 : ResourceHost(host->GetPpapiHost(), instance, resource),
  /external/chromium_org/content/browser/renderer_host/pepper/
pepper_gamepad_host.h 27 PP_Instance instance,
34 PP_Instance instance,
pepper_printing_host.cc 18 PP_Instance instance,
21 : ResourceHost(host, instance, resource),
pepper_renderer_connection.cc 93 PP_Instance instance,
106 if (host->IsValidInstance(instance)) {
112 host, instance, params.pp_resource(), external_path));
119 instance,
165 PP_Instance instance,
169 in_process_host_->AddInstance(instance, data);
173 PP_Instance instance) {
174 in_process_host_->DeleteInstance(instance);
  /external/chromium_org/content/child/npapi/
webplugin_delegate_impl_android.cc 18 PluginInstance* instance)
23 instance_(instance),
  /external/chromium_org/content/renderer/browser_plugin/
browser_plugin_bindings.h 22 // BrowserPluginBindings instance. This way, we can use an NPObject to allow
32 explicit BrowserPluginBindings(BrowserPlugin* instance);
37 BrowserPlugin* instance() const { return instance_; } function in class:content::BrowserPluginBindings

Completed in 2382 milliseconds

<<21222324252627282930>>