HomeSort by relevance Sort by last modified time
    Searched refs:imageElement (Results 1 - 3 of 3) sorted by null

  /external/libgdx/gdx/src/com/badlogic/gdx/maps/tiled/
TmxMapLoader.java 235 Element imageElement = tileset.getChildByName("image");
236 if (imageElement != null) {
248 Element imageElement = tileset.getChildByName("image");
249 if (imageElement != null) {
344 Element imageElement = element.getChildByName("image");
345 if (imageElement != null) {
346 imageSource = imageElement.getAttribute("source");
347 imageWidth = imageElement.getIntAttribute("width", 0);
348 imageHeight = imageElement.getIntAttribute("height", 0);
360 Element imageElement = element.getChildByName("image")
    [all...]
AtlasTmxMapLoader.java 313 Element imageElement = element.getChildByName("image");
314 if (imageElement != null) {
315 imageSource = imageElement.getAttribute("source");
316 imageWidth = imageElement.getIntAttribute("width", 0);
317 imageHeight = imageElement.getIntAttribute("height", 0);
329 Element imageElement = element.getChildByName("image");
330 if (imageElement != null) {
331 imageSource = imageElement.getAttribute("source");
332 imageWidth = imageElement.getIntAttribute("width", 0);
333 imageHeight = imageElement.getIntAttribute("height", 0)
    [all...]
  /packages/apps/UnifiedEmail/assets/
script.js 516 function attachImageLoadListener(imageElement) {
519 var originalSrc = imageElement.src;
520 imageElement.src = '';
521 imageElement.onload = imageOnLoad;
522 imageElement.src = originalSrc;
562 function blockImage(imageElement) {
563 var src = imageElement.src;
566 imageElement.setAttribute(BLOCKED_SRC_ATTR, src);
567 imageElement.src = "data:";

Completed in 39 milliseconds