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

1 2 3

  /external/mksh/src/
check.pl 589 $why = '';
593 $why .= "\ttest timed out (limit of $test{'time-limit'} seconds)\n";
609 $why .=
618 $why .= $tmp;
626 $why .= $tmp;
633 $why .= $tmp;
662 $why = "\tDescription"
664 . $why;
672 print $why if $verbose;
754 local($why) = ''
    [all...]
  /external/clang/tools/scan-build/
set-xcode-analyzer 56 except IOError, why:
57 print " (-) Cannot update file:", why, "\n"
58 except OSError, why:
59 print " (-) Cannot update file:", why, "\n"
  /external/kernel-headers/original/linux/
jbd.h 280 #define J_EXPECT(expr, why...) J_ASSERT(expr)
281 #define J_EXPECT_BH(bh, expr, why...) J_ASSERT_BH(bh, expr)
282 #define J_EXPECT_JH(jh, expr, why...) J_ASSERT_JH(jh, expr)
284 #define __journal_expect(expr, why...) \
290 printk(KERN_ERR why "\n"); \
294 #define J_EXPECT(expr, why...) __journal_expect(expr, ## why)
295 #define J_EXPECT_BH(bh, expr, why...) __journal_expect(expr, ## why)
296 #define J_EXPECT_JH(jh, expr, why...) __journal_expect(expr, ## why
    [all...]
  /external/chromium/testing/gmock/include/gmock/
gmock-spec-builders.h 174 ::std::ostream* what, ::std::ostream* why) = 0;
    [all...]
  /frameworks/base/services/java/com/android/server/power/
Notifier.java 459 int why = WindowManagerPolicy.OFF_BECAUSE_OF_USER; local
462 why = WindowManagerPolicy.OFF_BECAUSE_OF_ADMIN;
465 why = WindowManagerPolicy.OFF_BECAUSE_OF_TIMEOUT;
469 EventLog.writeEvent(EventLogTags.POWER_SCREEN_STATE, 0, why, 0, 0);
471 mPolicy.screenTurnedOff(why);
  /external/zlib/src/examples/
fitblk.c 62 local void quit(char *why)
64 fprintf(stderr, "fitblk abort: %s\n", why);
  /dalvik/vm/
Thread.cpp 419 static const char* getSuspendCauseStr(SuspendCause why)
421 switch (why) {
447 static void lockThreadSuspend(const char* who, SuspendCause why)
481 self->threadId, who, getSuspendCauseStr(why));
493 self->threadId, who, getSuspendCauseStr(why));
    [all...]
Thread.h 371 void dvmSuspendAllThreads(SuspendCause why);
372 void dvmResumeAllThreads(SuspendCause why);
  /external/netperf/
netcpu_kstat10.c 100 print_unexpected_statistic_warning(char *who, char *what, char *why)
102 if (why) {
108 why,
  /system/core/cpio/
mkbootfs.c 26 void die(const char *why, ...)
30 va_start(ap, why);
32 vfprintf(stderr, why, ap);
  /external/chromium/testing/gmock/src/
gmock-spec-builders.cc 379 ::std::stringstream why; member in namespace:testing::internal
388 &ss, &why);
418 ss << "\n" << why.str();
  /external/antlr/antlr-3.4/runtime/Ruby/lib/antlr3/tree/
debug.rb 154 =begin This actually differs with reset in CommonTreeNodeStream -- why is this one blank?
  /external/strace/
proc.c 230 tprintf(", why=");
231 printxval(proc_status_why, status.why, "S_???");
  /hardware/msm7k/librpc/
rpc.c 92 if (!XDR_SEND_ENUM(xdr, &rejreply->u.why))
  /ndk/sources/host-tools/sed-4.2.1/sed/
sed.h 191 void bad_prog P_((const char *why));
  /frameworks/base/policy/src/com/android/internal/policy/impl/keyguard/
KeyguardViewMediator.java 582 * @param why either {@link WindowManagerPolicy#OFF_BECAUSE_OF_USER},
586 public void onScreenTurnedOff(int why) {
589 if (DEBUG) Log.d(TAG, "onScreenTurnedOff(" + why + ")");
609 } else if (why == WindowManagerPolicy.OFF_BECAUSE_OF_TIMEOUT
610 || (why == WindowManagerPolicy.OFF_BECAUSE_OF_USER && !lockImmediately)) {
612 } else if (why == WindowManagerPolicy.OFF_BECAUSE_OF_PROX_SENSOR) {
    [all...]
  /external/valgrind/main/coregrind/m_debuginfo/
readdwarf.c 2140 Int why = 0; local
    [all...]
  /external/e2fsprogs/lib/ext2fs/
tdbtool.c 182 static void terror(const char *why)
184 printf("%s\n", why);
  /external/v8/tools/
consarray.js 34 * That's why we avoid copying memory and insead build a linked list
  /external/webkit/LayoutTests/fast/url/script-tests/
file-http-base.js 32 // seem to be a strong argument for why allowing it here would be bad, so
file.js 32 // seem to be a strong argument for why allowing it here would be bad, so
  /external/webkit/Source/WebCore/dom/
ScriptExecutionContext.cpp 240 void ScriptExecutionContext::suspendActiveDOMObjects(ActiveDOMObject::ReasonForSuspension why)
247 iter->first->suspend(why);
  /frameworks/base/core/java/android/view/
WindowManagerPolicy.java     [all...]
  /hardware/msm7k/librpc/rpc/
types.h 300 auth_stat why; /* why authentication did not work */ member in union:rpc_denied_reply::__anon20797
  /external/ceres-solver/docs/
helloworld.tex 71 Starting from a $x=5$, the solver in two iterations goes to 10~\footnote{Actually the solver ran for three iterations, and it was by looking at the value returned by the linear solver in the third iteration, it observed that the update to the parameter block was too small and declared convergence. Ceres only prints out the display at the end of an iteration, and terminates as soon as it detects convergence, which is why you only see two iterations here and not three.}. The careful reader will note that this is a linear problem and one linear solve should be enough to get the optimal value. The default configuration of the solver is aimed at non-linear problems, and for reasons of simplicity we did not change it in this example. It is indeed possible to obtain the solution to this problem using Ceres in one iteration. Also note that the solver did get very close to the optimal function value of 0 in the very first iteration. We will discuss these issues in greater detail when we talk about convergence and parameter settings for Ceres.

Completed in 1684 milliseconds

1 2 3