HomeSort by relevance Sort by last modified time
    Searched defs:log (Results 526 - 550 of 963) sorted by null

<<21222324252627282930>>

  /packages/apps/Email/src/org/apache/james/mime4j/
MimeStreamParser.java 53 private static final Log log = LogFactory.getLog(MimeStreamParser.class); field in class:MimeStreamParser
160 // if (log.isWarnEnabled()) {
161 // log.warn("Line " + rootStream.getLineNumber()
178 log.warn("base64 encoded message/rfc822 detected");
182 log.warn("quoted-printable encoded message/rfc822 detected");
250 // if (curr == -1 && log.isWarnEnabled()) {
251 // log.warn("Line " + rootStream.getLineNumber()
298 if (!valid && log.isWarnEnabled()) {
299 log.warn("Line " + startLineNumber
    [all...]
  /packages/apps/Exchange/exchange2/src/com/android/exchange/
AbstractSyncService.java 30 import android.util.Log;
206 Log.e(TAG, str, e);
208 Log.e(TAG, str + e);
211 FileLogger.log(e);
217 * If user logging is active, we concatenate any arguments and log them using Log.d
218 * We also check for file logging, and log appropriately
219 * @param strings strings to concatenate and log
233 Log.d(TAG, logText);
235 FileLogger.log(TAG, logText)
    [all...]
  /packages/apps/Phone/src/com/android/phone/
CallerInfoCache.java 32 import android.util.Log;
113 if (DBG) log("Start refreshing cache.");
120 if (VDBG) log("CacheAsyncTask#onPostExecute()");
127 if (VDBG) log("CacheAsyncTask#onCanceled()");
161 if (DBG) log("init()");
175 if (DBG) log("startAsyncCache");
178 Log.w(LOG_TAG, "Previous cache task is remaining.");
189 if (DBG) log("setRepeatingCacheUpdateAlarm");
203 if (VDBG) log("refreshCacheEntry() started");
255 Log.d(LOG_TAG, "New cache size: " + newNumberToEntry.size())
334 private static void log(String msg) { method in class:CallerInfoCache
    [all...]
EditFdnContactScreen.java 39 import android.util.Log;
120 if (DBG) log("onActivityResult request:" + requestCode + " result:" + resultCode);
134 if (DBG) log("onActivityResult: cancelled.");
143 if (DBG) log("onActivityResult: cancelled.");
149 Log.w(LOG_TAG,"onActivityResult: bad contact data, no results found.");
273 if (DBG) log("addContact");
296 if (DBG) log("updateContact");
365 if (DBG) log("handleResult: success!");
369 if (DBG) log("handleResult: failed!");
431 if (DBG) log("onInsertComplete")
448 private void log(String msg) { method in class:EditFdnContactScreen
    [all...]
EmergencyCallHelper.java 35 import android.util.Log;
79 if (DBG) log("EmergencyCallHelper constructor...");
101 Log.wtf(TAG, "handleMessage: unexpected message: " + msg);
132 if (DBG) log("startEmergencyCallFromAirplaneModeSequence('" + number + "')...");
143 if (DBG) log("startSequenceInternal(): msg = " + msg);
153 if (DBG) log("- startSequenceInternal: Got mNumber: '" + mNumber + "'");
167 if (DBG) log("- startSequenceInternal: acquiring wake lock");
202 if (DBG) log("onServiceStateChanged()... new state = " + state);
218 if (DBG) log("onServiceStateChanged: ok to call!");
241 if (DBG) log("onServiceStateChanged: not ready to call yet, keep waiting...")
542 private static void log(String msg) { method in class:EmergencyCallHelper
    [all...]
FdnSetting.java 26 import android.util.Log;
129 if (DBG) log("updatePINChangeState positive=" + positiveResult
267 log("Handle EVENT_PIN2_CHANGE_COMPLETE");
367 if (DBG) log("resetPinChangeState");
378 if (DBG) log("resetPinChangeStateForPUK2");
489 private void log(String msg) { method in class:FdnSetting
490 Log.d(LOG_TAG, "FdnSetting: " + msg);
NetworkSetting.java 37 import android.util.Log;
93 if (DBG) log("hideProgressPanel");
99 if (DBG) log("manual network selection: failed!");
102 if (DBG) log("manual network selection: succeeded!");
107 if (DBG) log("hideProgressPanel");
116 // this exception, and Log it.
117 Log.w(LOG_TAG, "[NetworksList] Fail to dismiss auto select dialog", e);
123 if (DBG) log("automatic network selection: failed!");
126 if (DBG) log("automatic network selection: succeeded!");
150 if (DBG) log("connection created, binding local service.")
475 private void log(String msg) { method in class:NetworkSetting
    [all...]
Ringer.java 35 import android.util.Log;
78 Log.wtf(LOG_TAG, "init() called multiple times! sInstance = " + sInstance);
101 if(DBG) Log.d(LOG_TAG, "updateRingerContextAfterRadioTechnologyChange...");
148 if (DBG) log("ring()...");
164 if (DBG) log("- starting vibrator...");
171 if (DBG) log("skipping ring because volume is zero");
187 log("delaying ring by " + (mFirstRingStartTime - mFirstRingEventTime));
217 if (DBG) log("stopRing()...");
237 if (DBG) log("- stopRing: null mRingHandler!");
241 if (DBG) log("- stopRing: cleaning up vibrator thread...")
351 private static void log(String msg) { method in class:Ringer
    [all...]
  /packages/screensavers/PhotoTable/src/com/android/dreams/phototable/
PhotoCarousel.java 24 import android.util.Log;
115 log("fling with " + vX);
213 log("too small: FIT_CENTER");
216 log("orientations match: CENTER_CROP");
219 log("orientations do not match: CENTER_INSIDE");
223 log("no tag!");
300 private void log(String message) { method in class:PhotoCarousel
302 Log.i(TAG, message);
PhotoSource.java 26 import android.util.Log;
81 log(TAG, "type is " + type); method
121 log(TAG, "filling queue"); method
124 log(TAG, "queue contains: " + mImageQueue.size() + " items."); method
128 log(TAG, "decoding a picasa resource to " + longSide + ", " + shortSide); method
158 log(TAG, "decoding photo resource to " + longSide + ", " + shortSide); method
171 log(TAG, "I see bounds of " + rawLongSide + ", " + rawShortSide); method
186 log(TAG, "decoding with inSampleSize " + options.inSampleSize); method
197 log(TAG, "still too big, scaling down by " + ratio); method
207 log(TAG, "rotated by " + data.orientation + ": fixing") method
222 log(TAG, "returning bitmap " + image.getWidth() + ", " + image.getHeight()); method
230 log(TAG, "Stream decoding failed with no error" + method
234 log(TAG, "OUT OF MEMORY: " + ome); method
237 log(TAG, "file not found: " + fnf); method
240 log(TAG, "i\/o exception: " + ioe); method
248 log(TAG, "close fail: " + t.toString()); method
259 protected static void log(String tag, String message) { method in class:PhotoSource
    [all...]
PhotoTouchListener.java 20 import android.util.Log;
92 log("fling " + dX + ", " + dY);
110 final float n = (float) Math.max(1.0, (- Math.log(v) / Math.log(mBeta)));
153 log("primary went up!");
177 log("move " + mDX + ", " + mDY);
234 log("action cancel!");
241 private static void log(String message) { method in class:PhotoTouchListener
243 Log.i(TAG, message);
  /prebuilts/gcc/darwin-x86/arm/arm-eabi-4.6/lib/gcc/arm-eabi/4.6.x-google/include/
tgmath.h 118 #define log(z) __TGMATH_CPLX(z, log, clog) macro
  /prebuilts/gcc/darwin-x86/arm/arm-eabi-4.7/lib/gcc/arm-eabi/4.7/include/
tgmath.h 118 #define log(z) __TGMATH_CPLX(z, log, clog) macro
  /prebuilts/gcc/darwin-x86/host/i686-apple-darwin-4.2.1/lib/gcc/i686-apple-darwin10/4.2.1/include/
tgmath.h 129 #define log(z) __TGMATH_CPLX(z, log, clog) macro
  /prebuilts/gcc/darwin-x86/host/i686-apple-darwin-4.2.1/lib/gcc/i686-apple-darwin11/4.2.1/include/
tgmath.h 129 #define log(z) __TGMATH_CPLX(z, log, clog) macro
  /prebuilts/gcc/linux-x86/arm/arm-eabi-4.6/lib/gcc/arm-eabi/4.6.x-google/include/
tgmath.h 118 #define log(z) __TGMATH_CPLX(z, log, clog) macro
  /prebuilts/gcc/linux-x86/arm/arm-eabi-4.7/lib/gcc/arm-eabi/4.7/include/
tgmath.h 118 #define log(z) __TGMATH_CPLX(z, log, clog) macro
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.4.3/
build-hardy-toolchain.sh 393 log () { function
409 log () { function
423 TMPLOG=$BUILD_DIR/build.log
618 log "Trying to load $SRCFILE"
664 log "Could not find filename for package $1"
696 $HOST_CC -o $BUILD_DIR/conftest.o -c $BUILD_DIR/conftest.c > $BUILD_DIR/conftest.log 2>&1
1010 log "cloning $GIT_BASE/$1"
1013 log "cloning $GITPREFIX/$1.git"
1019 log "checking out $GIT_BRANCH branch of $1.git"
1030 (printf "%-32s " "toolchain/$1.git: " && git log -1 --format=oneline) >> $
    [all...]
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.4.3/sysroot/usr/include/
tgmath.h 293 #define log(Val) __TGMATH_UNARY_REAL_IMAG (Val, log, clog) macro
305 /* Return log(1 + X). */
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.6/lib/gcc/i686-linux/4.6.x-google/include-fixed/
tgmath.h 302 #define log(Val) __TGMATH_UNARY_REAL_IMAG (Val, log, clog) macro
314 /* Return log(1 + X). */
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.6/sysroot/usr/include/
tgmath.h 293 #define log(Val) __TGMATH_UNARY_REAL_IMAG (Val, log, clog) macro
305 /* Return log(1 + X). */
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.7-4.6/lib/gcc/x86_64-linux/4.6.x-google/include-fixed/
tgmath.h 302 #define log(Val) __TGMATH_UNARY_REAL_IMAG (Val, log, clog) macro
314 /* Return log(1 + X). */
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.7-4.6/sysroot/usr/include/
tgmath.h 293 #define log(Val) __TGMATH_UNARY_REAL_IMAG (Val, log, clog) macro
305 /* Return log(1 + X). */
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/
AdtUtils.java 621 AdtPlugin.log(e, null);
623 AdtPlugin.log(e, null);
    [all...]
SourceRevealer.java 162 AdtPlugin.log(e, null);
197 AdtPlugin.log(e, null);

Completed in 1924 milliseconds

<<21222324252627282930>>