HomeSort by relevance Sort by last modified time
    Searched full:double (Results 1976 - 2000 of 10768) sorted by null

<<71727374757677787980>>

  /external/chromium/chrome/browser/first_run/
upgrade_util_linux.cc 19 double saved_last_modified_time_of_exe = 0;
37 double GetLastModifiedTimeOfExe() {
  /external/chromium/chrome/browser/policy/proto/
old_generic_format.proto 41 optional double double_value = 5;
46 repeated double double_array = 10;
  /external/chromium/chrome/browser/ui/cocoa/
floating_bar_backing_view.mm 44 // a double-click in the blank area should try to minimize, to be consistent
45 // with double-clicks on the contiguous tab strip area. (It'll fail and beep.)
  /external/chromium/chrome/browser/ui/cocoa/tabs/
tab_strip_view.mm 128 // YES if a double-click in the background of the tab strip minimizes the
135 // title bar double-clicks are properly detected even when the window is in the
141 // Trap double-clicks and make them miniaturize the browser window.
143 // Bail early if double-clicks are disabled.
152 // Double-clicks on Zoom/Close/Mininiaturize buttons shouldn't cause
155 // before (measured up-to-up) a double-click. Cocoa doesn't have a documented
156 // way of getting the proper interval (= (double-click-threshold) +
160 // detect double-clicks, but we're actually using Cocoa for that.)
  /external/chromium/chrome/common/
thumbnail_score.cc 14 const double ThumbnailScore::kThumbnailMaximumBoringness = 0.94;
16 const double ThumbnailScore::kThumbnailInterestingEnoughBoringness = 0.70;
17 const double ThumbnailScore::kThumbnailDegradePerHour = 0.01;
45 ThumbnailScore::ThumbnailScore(double score, bool clipping, bool top)
53 ThumbnailScore::ThumbnailScore(double score, bool clipping, bool top,
99 const double kThumbnailMinimumInterestingness =
101 double current_interesting_score = 1.0 - current.boring_score;
102 double replacement_interesting_score = 1.0 - replacement.boring_score;
  /external/chromium/testing/gmock/test/
gmock-internal-utils_test.cc 155 EXPECT_EQ(kFloatingPoint, GMOCK_KIND_OF_(double)); // NOLINT
156 EXPECT_EQ(kFloatingPoint, GMOCK_KIND_OF_(long double)); // NOLINT
180 EXPECT_TRUE((LosslessArithmeticConvertible<bool, double>::value));
225 EXPECT_FALSE((LosslessArithmeticConvertible<int, double>::value));
227 short, long double>::value)); // NOLINT
232 EXPECT_FALSE((LosslessArithmeticConvertible<double, bool>::value));
237 EXPECT_FALSE((LosslessArithmeticConvertible<double, Int64>::value));
238 EXPECT_FALSE((LosslessArithmeticConvertible<long double, int>::value));
243 EXPECT_TRUE((LosslessArithmeticConvertible<float, double>::value));
244 EXPECT_TRUE((LosslessArithmeticConvertible<float, long double>::value))
    [all...]
  /external/chromium/webkit/glue/
webcookie.h 20 const std::string& domain, const std::string& path, double expires,
37 double expires;
  /external/clang/test/ASTMerge/Inputs/
interface2.m 57 - (int)bar:(double)x;
79 - (double)honk:(int)a;
  /external/clang/test/CXX/dcl.dcl/dcl.spec/dcl.type/dcl.spec.auto/
p7.cpp 5 auto d = 0, e = 0.0; // expected-error {{'int' in declaration of 'd' and deduced as 'double' in declaration of 'e'}}
27 auto d = 0, // expected-error {{'auto' deduced as 'int' in declaration of 'd' and deduced as 'double' in declaration of 'f'}}
  /external/clang/test/CXX/expr/expr.unary/expr.sizeof/
p5-0x.cpp 26 template void init_me<int, float, double*>(int, float, double*);
  /external/clang/test/CXX/expr/
p9.cpp 6 long double &ldr = ld0;
9 double &dr = d0;
  /external/clang/test/CXX/special/class.init/class.base.init/
p8-0x.cpp 15 S(double) : a(n), b(n) {} // ok
26 U(double) : a(1), b('y') {} // desired-error {{at most one member of a union may be initialized}}
  /external/clang/test/CXX/temp/temp.spec/temp.expl.spec/
p16.cpp 37 void Test<T>::get<double>(double i) {} // expected-error{{cannot specialize (with 'template<>') a member of an unspecialized template}}
  /external/clang/test/CodeGen/
blocks.c 30 typedef double ftype(double);
struct-x86-darwin.c 2 // RUN: grep "STest1 = type { i32, \[4 x i16\], double }" %t1
13 struct STest1 {int x; short y[4]; double z; } st1;
  /external/clang/test/CodeGenObjC/
newproperty-nested-synthesis-1.m 14 @property double PropertyAtomic_double;
45 double PropertyAtomic_double;
  /external/clang/test/Index/
complete-synthesized.m 17 @property double prop4;
46 // CHECK: ObjCIvarDecl:{ResultType double}{TypedText _prop4} (37)
  /external/clang/test/Modules/
diamond.c 8 void test_diamond(int i, float f, double d, char c) {
13 bottom(&d); // expected-warning{{incompatible pointer types passing 'double *' to parameter of type 'char *'}}
  /external/clang/test/PCH/
variables.c 35 double z; // expected-error{{redefinition}}
37 double VeryHappy; // expected-error{{redefinition}}
  /external/clang/test/Sema/
arm-layout.c 6 struct s0 { char field0; double field1; };
13 struct s1 { char field0; long double field1; };
  /external/clang/test/SemaCXX/
cxx0x-compat.cpp 18 template inline void g<double>(double); // expected-warning {{explicit instantiation cannot be 'inline'}}
goto.cpp 4 double *end;
43 end = 1; // expected-error{{assigning to 'double *' from incompatible type 'int'}}
overload-member-call.cpp 17 static double& g(double); // expected-note 2 {{candidate function}}
24 double& d1 = g(0.0);
30 double& d1 = g(0.0);
34 double& d1 = g(0.0);
51 double& d1 = xp->g(0.0);
52 double& d2 = X::g(0.0);
81 void bar(double d); //expected-note {{candidate function not viable: 'this' argument has type 'const test1::A', but method is not marked const}}
  /external/clang/test/SemaObjC/
property-2.m 10 @property double PropertyAtomic_double;
41 double PropertyAtomic_double;
protocol-implementing-class-methods.m 8 - (void) : (double) arg; // expected-note {{method declared here}}
26 - (void) : (double) arg{}; // expected-warning {{category is implementing a method which will also be implemented by its primary class}}

Completed in 620 milliseconds

<<71727374757677787980>>