HomeSort by relevance Sort by last modified time
    Searched refs:LOGGER (Results 1 - 25 of 60) sorted by null

1 2 3

  /packages/apps/Exchange/exchange2/src/com/android/exchange/utility/
FileLogger.java 28 private static FileLogger LOGGER = null;
34 LOGGER = new FileLogger();
35 return LOGGER;
68 if (LOGGER == null) {
69 LOGGER = new FileLogger();
70 log("Logger", "\r\n\r\n --- New Log ---");
107 LOGGER = new FileLogger();
  /external/jmonkeyengine/engine/src/blender/com/jme3/scene/plugins/blender/textures/
ImageLoader.java 40 import java.util.logging.Logger;
49 private static final Logger LOGGER = Logger.getLogger(ImageLoader.class.getName());
80 LOGGER.warning("Image could not be loaded by none of available loaders!");
104 LOGGER.info("Unable to load image using AWT loader!");
111 LOGGER.info("Unable to load image using DDS loader!");
118 LOGGER.info("Unable to load image using TGA loader!");
  /external/jmonkeyengine/engine/src/blender/com/jme3/scene/plugins/blender/constraints/
ConstraintAction.java 8 import java.util.logging.Logger;
15 private static final Logger LOGGER = Logger.getLogger(ConstraintAction.class.getName());
40 LOGGER.log(Level.WARNING, "'Action' constraint NOT implemented!");
ConstraintChildOf.java 8 import java.util.logging.Logger;
15 private static final Logger LOGGER = Logger.getLogger(ConstraintChildOf.class.getName());
40 LOGGER.log(Level.WARNING, "ChildOf constraint NOT implemented!");
ConstraintClampTo.java 8 import java.util.logging.Logger;
15 private static final Logger LOGGER = Logger.getLogger(ConstraintClampTo.class.getName());
41 LOGGER.log(Level.INFO, "'Clamp to' not yet implemented! Curves not yet implemented!", name);
ConstraintDampTrack.java 4 import java.util.logging.Logger;
16 private static final Logger LOGGER = Logger.getLogger(ConstraintDampTrack.class.getName());
41 LOGGER.log(Level.WARNING, "'Damp Track' constraint NOT implemented!");
ConstraintFollowPath.java 8 import java.util.logging.Logger;
15 private static final Logger LOGGER = Logger.getLogger(ConstraintFollowPath.class.getName());
40 LOGGER.log(Level.INFO, "'Follow path' not implemented! Curves not yet implemented!");
ConstraintLockTrack.java 8 import java.util.logging.Logger;
15 private static final Logger LOGGER = Logger.getLogger(ConstraintLockTrack.class.getName());
41 LOGGER.log(Level.WARNING, "'Lock track' constraint NOT implemented!");
ConstraintMinMax.java 8 import java.util.logging.Logger;
15 private static final Logger LOGGER = Logger.getLogger(ConstraintMinMax.class.getName());
40 LOGGER.log(Level.WARNING, "'Min max' constraint NOT implemented!");
ConstraintPivot.java 4 import java.util.logging.Logger;
16 private static final Logger LOGGER = Logger.getLogger(ConstraintPivot.class.getName());
42 LOGGER.log(Level.WARNING, "'Pivot' constraint NOT implemented!");
ConstraintPython.java 8 import java.util.logging.Logger;
15 private static final Logger LOGGER = Logger.getLogger(ConstraintPython.class.getName());
40 LOGGER.log(Level.WARNING, "'Python' constraint NOT implemented!");
ConstraintRigidBodyJoint.java 8 import java.util.logging.Logger;
15 private static final Logger LOGGER = Logger.getLogger(ConstraintRigidBodyJoint.class.getName());
40 LOGGER.log(Level.WARNING, "'Rigid body joint' constraint NOT implemented!");
ConstraintSplineInverseKinematic.java 4 import java.util.logging.Logger;
16 private static final Logger LOGGER = Logger.getLogger(ConstraintSplineInverseKinematic.class.getName());
42 LOGGER.log(Level.WARNING, "'Splie IK' constraint NOT implemented!");
ConstraintStretchTo.java 8 import java.util.logging.Logger;
15 private static final Logger LOGGER = Logger.getLogger(ConstraintStretchTo.class.getName());
40 LOGGER.log(Level.WARNING, "'Stretch to' constraint NOT implemented!");
ConstraintTransform.java 8 import java.util.logging.Logger;
15 private static final Logger LOGGER = Logger.getLogger(ConstraintAction.class.getName());
40 LOGGER.log(Level.WARNING, "'Transform' constraint NOT implemented!");
  /external/jmonkeyengine/engine/src/blender/com/jme3/scene/plugins/blender/
BlenderModelLoader.java 43 import java.util.logging.Logger;
51 private static final Logger LOGGER = Logger.getLogger(BlenderModelLoader.class.getName());
65 LOGGER.log(Level.INFO, "{0}: {1}--> {2}", new Object[]{((Node) object).getName(), ((Node) object).getLocalTranslation().toString(), ((Node) object).getParent() == null ? "null" : ((Node) object).getParent().getName()});
77 LOGGER.log(Level.SEVERE, e.getMessage(), e);
  /external/libphonenumber/java/src/com/android/i18n/phonenumbers/
MetadataManager.java 31 import java.util.logging.Logger;
44 private static final Logger LOGGER = Logger.getLogger(MetadataManager.class.getName());
62 LOGGER.log(Level.WARNING, e.toString());
79 LOGGER.log(Level.WARNING, e.toString());
  /external/libphonenumber/java/test/com/android/i18n/phonenumbers/
ExampleNumbersTest.java 30 import java.util.logging.Logger;
39 private static final Logger LOGGER = Logger.getLogger(ExampleNumbersTest.class.getName());
74 LOGGER.log(Level.SEVERE, "Failed validation for " + exampleNumber.toString());
80 LOGGER.log(Level.SEVERE, "Wrong type for " +
83 LOGGER.log(Level.WARNING, "Expected types: ");
85 LOGGER.log(Level.WARNING, type.toString());
168 LOGGER.log(Level.SEVERE, e.toString());
172 LOGGER.log(Level.SEVERE, "Number " + exampleNumber.toString(
    [all...]
  /external/jmonkeyengine/engine/src/blender/com/jme3/scene/plugins/blender/textures/blending/
TextureBlenderFactory.java 4 import java.util.logging.Logger;
16 private static final Logger LOGGER = Logger.getLogger(TextureBlenderFactory.class.getName());
70 LOGGER.log(Level.WARNING, "Image type not yet supported for blending: {0}. Returning a blender that does not change the texture.", format);
  /external/v8/test/cctest/
test-log.cc 23 using v8::internal::Logger;
46 LOGGER->TearDown();
57 temp_file_ = LOGGER->TearDown();
104 LOGGER->StringEvent("test-start", "");
106 LOGGER->StringEvent("test-profiler-start", "");
114 LOGGER->StringEvent("test-profiler-stop", "");
117 LOGGER->StringEvent("test-profiler-start-2", "");
125 LOGGER->StringEvent("test-profiler-stop-2", "");
126 LOGGER->StringEvent("test-stop", "");
361 LOGGER->LogCompiledFunctions()
    [all...]
  /external/jmonkeyengine/engine/src/blender/com/jme3/scene/plugins/blender/cameras/
CameraHelper.java 10 import java.util.logging.Logger;
18 private static final Logger LOGGER = Logger.getLogger(CameraHelper.class.getName());
66 LOGGER.log(Level.WARNING, "Unknown camera type: {0}. Perspective camera is being used!", type);
97 LOGGER.log(Level.WARNING, "Unknown camera type: {0}. Perspective camera is being used!", type);
  /external/jmonkeyengine/engine/src/blender/com/jme3/scene/plugins/blender/lights/
LightHelper.java 47 import java.util.logging.Logger;
55 private static final Logger LOGGER = Logger.getLogger(LightHelper.class.getName());
82 LOGGER.log(Level.WARNING, "'Sun' lamp is not supported in jMonkeyEngine.");
99 LOGGER.log(Level.WARNING, "'Hemi' lamp is not supported in jMonkeyEngine.");
  /external/jmonkeyengine/engine/src/blender/com/jme3/scene/plugins/blender/particles/
ParticlesHelper.java 18 import java.util.logging.Logger;
21 private static final Logger LOGGER = Logger.getLogger(ParticlesHelper.class.getName());
119 LOGGER.warning("Neither object nor group particles supported yet! Using point representation instead!");//TODO: support groups and aobjects
123 LOGGER.warning("Lines not yet supported! Using point representation instead!");//TODO: support lines
145 LOGGER.warning("Default shape used! Unknown emitter shape value ('from' parameter: " + from + ')');
182 LOGGER.warning("Boids and Keyed particles physic not yet supported! Empty influencer used!");
  /external/jmonkeyengine/engine/src/blender/com/jme3/scene/plugins/blender/modifiers/
ObjectAnimationModifier.java 6 import java.util.logging.Logger;
23 private static final Logger LOGGER = Logger.getLogger(ObjectAnimationModifier.class.getName());
66 LOGGER.log(Level.WARNING, "Armature modifier is invalid! Cannot be applied to: {0}", node.getName());
  /external/libphonenumber/java/test/com/android/i18n/phonenumbers/geocoding/
MappingFileProviderTest.java 32 import java.util.logging.Logger;
41 private static final Logger LOGGER = Logger.getLogger(MappingFileProviderTest.class.getName());
71 LOGGER.log(Level.SEVERE, e.getMessage());

Completed in 975 milliseconds

1 2 3