HomeSort by relevance Sort by last modified time
    Searched refs:instance (Results 176 - 200 of 798) sorted by null

1 2 3 4 5 6 78 91011>>

  /hardware/ril/mock-ril/src/cpp/
protobuf_v8.cpp 191 reflection->GetRepeated##TYPE(instance, field, index) : \
192 reflection->Get##TYPE(instance, field))
194 static Handle<Value> ToJs(const Message& instance,
199 DBG("Type::ToJs(instance, refelction, field, message_type) E:");
239 Handle<Object> ToJs(const Message& instance) const {
241 const Reflection* reflection = instance.GetReflection();
242 const Descriptor* descriptor = instance.GetDescriptor();
250 if (repeated && !reflection->FieldSize(instance, field)) {
254 if (!repeated && !reflection->HasField(instance, field)) {
265 int size = reflection->FieldSize(instance, field)
    [all...]
  /frameworks/base/tools/layoutlib/create/tests/com/android/tools/layoutlib/create/
DelegateClassAdapterTest.java 72 // create an instance of the class that will be modified
291 * instance methods via reflection.
345 public int callGet(Object instance, int a, long b) throws Exception {
346 Method m = instance.getClass().getMethod("get",
349 Object result = m.invoke(instance, new Object[] { a, b });
357 public int callGet_Original(Object instance, int a, long b) throws Exception {
358 Method m = instance.getClass().getMethod("get_Original",
361 Object result = m.invoke(instance, new Object[] { a, b });
369 public <T> T callMethod(Object instance, String methodName, boolean makePublic) throws Exception {
370 Method m = instance.getClass().getDeclaredMethod(methodName, (Class<?>[])null)
    [all...]
  /external/bluetooth/glib/gobject/
gtype.h 291 * process of creating an instance (object) of this type.
422 * @instance_size: the size of the instance structure.
442 * @instance: Location of a #GTypeInstance structure.
444 * Checks if @instance is a valid #GTypeInstance structure,
451 #define G_TYPE_CHECK_INSTANCE(instance) (_G_TYPE_CHI ((GTypeInstance*) (instance)))
454 * @instance: Location of a #GTypeInstance structure.
458 * Checks that @instance is an instance of the type identified by @g_type
459 * and issues a warning if this is not the case. Returns @instance casted
    [all...]
  /external/chromium/chrome/browser/chromeos/login/
registration_screen.h 37 SiteInstance* instance) {
39 instance,
  /external/webkit/Source/WebCore/platform/graphics/android/
BaseLayerAndroid.cpp 75 ClassTracker::instance()->increment("BaseLayerAndroid");
83 ClassTracker::instance()->decrement("BaseLayerAndroid");
133 / TilesManager::instance()->tileWidth();
135 / TilesManager::instance()->tileHeight();
200 TilesManager::instance()->removePaintOperationsForPage(tiledPage, false);
337 TilesManager::instance()->videoLayerManager()->deleteUnusedTextures();
341 if (TilesManager::instance()->layerTexturesRemain()) {
355 ClassTracker::instance()->show();
BaseTileTexture.cpp 57 TilesManager::instance()->getSharedTextureMode())
65 TilesManager::instance()->transferQueue()->initSharedSurfaceTextures(w, h);
68 ClassTracker::instance()->increment("BaseTileTexture");
79 ClassTracker::instance()->decrement("BaseTileTexture");
113 TilesManager::instance()->scheduleOperation(operation);
247 m_ownTextureTileInfo.m_inverted = TilesManager::instance()->invertedScreen();
263 (info->m_inverted == TilesManager::instance()->invertedScreen()))
269 baseTile->scale(), baseTile->painter(), TilesManager::instance()->invertedScreen());
TiledTexture.h 57 ClassTracker::instance()->increment("TiledTexture");
63 ClassTracker::instance()->decrement("TiledTexture");
TexturesGenerator.cpp 107 TilesManager::instance()->transferQueue()->interruptTransferQueue(true);
125 TilesManager::instance()->markGeneratorAsReady();
196 TilesManager::instance()->transferQueue()->interruptTransferQueue(false);
  /external/webkit/Tools/DumpRenderTree/TestNetscapePlugIn/
PluginObject.h 90 extern void pluginLog(NPP instance, const char* format, ...);
91 extern void pluginLogWithArguments(NPP instance, const char* format, va_list args);
  /frameworks/base/tests/ImfTest/src/com/android/imftest/samples/
ButtonActivity.java 39 final ButtonActivity instance = this; local
50 InputMethodManager imm = InputMethodManager.getInstance(instance);
  /development/ndk/sources/android/native_app_glue/
android_native_app_glue.c 330 android_app_free((struct android_app*)activity->instance);
335 android_app_set_activity_state((struct android_app*)activity->instance, APP_CMD_START);
340 android_app_set_activity_state((struct android_app*)activity->instance, APP_CMD_RESUME);
344 struct android_app* android_app = (struct android_app*)activity->instance;
369 android_app_set_activity_state((struct android_app*)activity->instance, APP_CMD_PAUSE);
374 android_app_set_activity_state((struct android_app*)activity->instance, APP_CMD_STOP);
378 struct android_app* android_app = (struct android_app*)activity->instance;
384 struct android_app* android_app = (struct android_app*)activity->instance;
391 android_app_write_cmd((struct android_app*)activity->instance,
397 android_app_set_window((struct android_app*)activity->instance, window)
    [all...]
  /external/webkit/Source/WebCore/bridge/qt/
qt_instance.cpp 50 QtRuntimeObject(ExecState*, JSGlobalObject*, PassRefPtr<Instance>);
57 QtInstance* instance = static_cast<QtInstance*>(getInternalInstance()); local
58 if (instance)
59 instance->markAggregate(markStack);
73 QtRuntimeObject::QtRuntimeObject(ExecState* exec, JSGlobalObject* globalObject, PassRefPtr<Instance> instance)
74 : RuntimeObject(exec, globalObject, WebCore::deprecatedGetDOMStructure<QtRuntimeObject>(exec), instance)
80 : Instance(rootObject)
121 foreach (QtInstance* instance, cachedInstances.values(o))
122 if (instance->rootObject() == rootObject)
343 const QtInstance* instance = static_cast<const QtInstance*>(inst); local
370 const QtInstance* instance = static_cast<const QtInstance*>(inst); local
    [all...]
  /dalvik/hit/src/com/android/hit/
State.java 103 public final void addInstance(long id, Instance instance) {
104 mCurrentHeap.addInstance(id, instance);
111 public final Instance findReference(long id) {
113 Instance instance = heap.getInstance(id); local
115 if (instance != null) {
116 return instance;
120 // Couldn't find an instance of a class, look for a class object
151 "+------------------ instance counts for heap: " + heap.mName)
    [all...]
Queries.java 45 * parent object, this will give you an Instance.
50 * in question, this will give you an Instance.
135 public static Instance[] instancesOf(State state, String baseClassName) {
143 Instance[] instances = new Instance[theClass.mInstances.size()];
152 public static Instance[] allInstancesOf(State state, String baseClassName) {
165 ArrayList<Instance> instanceList = new ArrayList<Instance>();
171 Instance[] result = new Instance[instanceList.size()]
    [all...]
  /external/webkit/Source/WebCore/page/
GeolocationPositionCache.cpp 47 GeolocationPositionCache* GeolocationPositionCache::instance() function in class:WebCore::GeolocationPositionCache
49 DEFINE_STATIC_LOCAL(GeolocationPositionCache*, instance, (0));
50 if (!instance)
51 instance = new GeolocationPositionCache();
52 return instance;
  /external/webkit/Source/WebKit/android/plugins/
PluginWidgetAndroid.cpp 83 PLUGIN_LOG("%p Deleting Plugin", m_pluginView->instance());
110 PLUGIN_LOG("%p Initialized Plugin", m_pluginView->instance());
132 PLUGIN_LOG("%p PluginBounds (%d,%d,%d,%d)", m_pluginView->instance(),
245 NPP instance = m_pluginView->instance(); local
249 pkg->pluginFuncs()->event(instance, &event)) {
290 m_pluginView->instance(), displayPlugin,
297 NPP instance = m_pluginView->instance(); local
300 pkg->pluginFuncs()->getvalue(instance, kJavaSurface_ANPGetValue
333 NPP instance = m_pluginView->instance(); local
611 NPP instance = m_pluginView->instance(); local
    [all...]
  /sdk/ddms/libs/ddmuilib/src/com/android/ddmuilib/
ImageLoader.java 37 * when getting the instance. Instances are cached and associated to the class passed to
57 * Private constructor, creating an instance associated with a class.
68 * Returns the {@link ImageLoader} instance to load images from ddmuilib.jar
82 * class instance, and since the loader will also cache the loaded images, it is recommended
87 ImageLoader instance = mInstances.get(theClass); local
88 if (instance == null) {
89 instance = new ImageLoader(theClass);
90 mInstances.put(theClass, instance);
93 return instance;
  /external/chromium/chrome/common/extensions/docs/examples/api/tabs/inspector/
jstemplate_compiled.js 793 * function will be inserted into the template instance being
811 * insertion into the currently processed template instance.
972 var instance = domGetAttribute(template, ATT_instance);
974 if (instance) {
975 if (instance.charAt(0) == '*') {
976 instance = parseInt10(instance.substr(1));
979 instance = parseInt10(instance);
990 if (!instance) {
    [all...]
  /frameworks/media/libvideoeditor/vss/mcs/src/
M4MCS_API.c 161 M4OSA_ERR H264MCS_Getinstance( NSWAVC_MCS_t ** instance )
204 *instance = (NSWAVC_MCS_t *)p_bs;
740 NSWAVC_MCS_t *instance; local
762 instance = (NSWAVC_MCS_t *)ainstance;
843 NSWAVCMCS_initBitstream(&instance->encbs);
845 instance->encbs.streamBuffer = outbuff + outbuffpos + 1;
862 instance->frame_count = 0;
863 instance->POC_lsb = 0;
873 NSWAVCMCS_uExpVLC(&instance->encbs, first_mb_in_slice);
876 NSWAVCMCS_uExpVLC(&instance->encbs, slice_type)
1750 NSWAVC_MCS_t *instance; local
    [all...]
  /external/qemu/distrib/sdl-1.2.12/src/audio/
SDL_audiodev.c 77 int exists, instance; local
80 instance = 1;
83 "%s%d", audiodev, instance++);
  /external/webkit/Source/WebKit/win/
WebNavigationData.cpp 86 WebNavigationData* instance = new WebNavigationData(url, title, request, response, hasSubstituteData, clientRedirectSource); local
87 instance->AddRef();
88 return instance;
WebResource.cpp 60 WebResource* instance = new WebResource(memoryStream.get(), response.url(), response.mimeType(), response.textEncodingName(), String()); local
61 instance->AddRef();
62 return instance;
  /frameworks/base/core/java/android/util/
Xml.java 106 return XmlSerializerFactory.instance.newSerializer();
116 static final XmlPullParserFactory instance; field in class:Xml.XmlSerializerFactory
119 instance = XmlPullParserFactory.newInstance(TYPE, null);
  /development/host/windows/usb/api/
AdbWinApi.cpp 101 extern "C" BOOL WINAPI DllMain(HINSTANCE instance,
  /development/samples/BrowserPlugin/jni/audio/
AudioPlugin.h 33 NPP instance; member in struct:SoundPlay

Completed in 1363 milliseconds

1 2 3 4 5 6 78 91011>>