HomeSort by relevance Sort by last modified time
    Searched refs:two (Results 51 - 75 of 643) sorted by null

1 23 4 5 6 7 8 91011>>

  /external/chromium_org/third_party/icu/source/test/intltest/
listformattertest.h 45 UnicodeString two,
52 UnicodeString two,
61 const UnicodeString two; member in class:ListFormatterTest
  /external/clang/test/CXX/over/over.over/
p2-resolve-single-template-id.cpp 30 void two() { } // expected-note 2 {{possible target for call}} function in namespace:DontAllowUnresolvedOverloadedExpressionInAnUnusedExpression
31 void two(int) { } // expected-note 2 {{possible target for call}} function in namespace:DontAllowUnresolvedOverloadedExpressionInAnUnusedExpression
38 two; // expected-error{{reference to overloaded function could not be resolved; did you mean to call it with no arguments?}}
47 two; // expected-error{{reference to overloaded function could not be resolved; did you mean to call it with no arguments?}}
61 void two() { }; //expected-note 5{{candidate}} function
62 void two(int) { }; //expected-note 5{{candidate}} function
84 { static_cast<void>(two); } // expected-error {{address of overloaded function 'two' cannot be static_cast to type 'void'}}
85 { (void)(two); } // expected-error {{address of overloaded function 'two' cannot be cast to type 'void'}
    [all...]
  /external/icu/icu4c/source/test/intltest/
listformattertest.h 45 UnicodeString two,
52 UnicodeString two,
61 const UnicodeString two; member in class:ListFormatterTest
  /external/lldb/test/functionalities/data-formatter/data-formatter-script/
main.cpp 40 i_am_cool two(4,2.71,'G');
42 i_am_cool* twoptr = &two;
48 two.integer = 1;
  /external/clang/test/SemaCXX/
cxx0x-initializer-references.cpp 4 struct two { char c[2]; }; struct
58 two f(const B&);
64 two g(const B&);
66 static_assert(sizeof(g({1})) == sizeof(two), "bad overload resolution");
69 two h(const A&);
71 static_assert(sizeof(h({1, 2})) == sizeof(two), "bad overload resolution");
warn-shadow.cpp 8 namespace two { namespace in namespace:one
20 using namespace one::two;
26 int j; // expected-warning {{declaration shadows a variable in namespace 'one::two'}}
cxx0x-initializer-scalars.cpp 4 struct two { char c[2]; }; struct
78 two overloaded(double);
81 static_assert(sizeof(overloaded({0.0})) == sizeof(two), "bad overload");
111 two f(int);
  /art/test/005-annotations/src/android/test/anno/
FullyNoted.java 21 @AnnoFancyParameter(factor=3.7879912899761) long two)
30 @AnnoFancyParameter(factor=3.7879912899761) long two)
  /external/clang/test/CXX/special/class.temporary/
p1.cpp 45 typedef char two[2]; typedef in namespace:test2
48 two &meta(...);
  /external/compiler-rt/lib/builtins/x86_64/
floatundisf.S 17 two: label
35 mulss REL_ADDR(two), %xmm0
  /external/chromium_org/third_party/skia/include/pathops/
SkPathOps.h 17 * The logical operations that can be performed when combining two paths.
21 kIntersect_PathOp, //!< intersect the two paths
22 kUnion_PathOp, //!< union (inclusive-or) the two paths
23 kXOR_PathOp, //!< exclusive-or the two paths
37 @param two The second operand (for difference, the subtrahend)
42 bool SK_API Op(const SkPath& one, const SkPath& two, SkPathOp op, SkPath* result);
  /external/chromium_org/tools/clang/plugins/tests/
virtual_methods.cpp 35 ConcreteVirtualMethodsInImplementation two; local
  /external/chromium_org/third_party/skia/gm/
pathopsinverse.cpp 37 SkColor blend(SkColor one, SkColor two) {
42 canvas.drawColor(two);
62 SkPath one, two; variable
73 two.reset();
74 two.setFillType(twoF);
75 two.addRect(40, 40, 100, 100);
81 canvas->drawPath(two, fTwoPaint);
82 canvas->drawPath(two, fOutlinePaint);
87 Op(one, two, (SkPathOp) op, &result);
  /external/chromium_org/v8/test/mjsunit/
array-functions-prototype.js 35 var proto = { length:3, 0:'zero', 1:'one', 2:'two' }
42 Array.prototype[2] = 'two';
60 var array = ['zero', , 'two'];
76 assertEquals('two', array[1]);
77 assertEquals('two', nonArray[1]);
79 assertEquals('two', array[2]);
80 assertEquals('two', nonArray[2]);
91 var array = ['zero', , 'two'];
109 assertEquals('two', array[3]);
110 assertEquals('two', nonArray[3])
    [all...]
  /external/guava/guava-tests/test/com/google/common/cache/
CacheStatsTest.java 62 CacheStats two = new CacheStats(53, 47, 43, 41, 37, 31); local
64 CacheStats diff = two.minus(one);
78 assertEquals(new CacheStats(0, 0, 0, 0, 0, 0), one.minus(two));
83 CacheStats two = new CacheStats(53, 47, 41, 39, 37, 35); local
85 CacheStats sum = two.plus(one);
99 assertEquals(sum, one.plus(two));
LocalLoadingCacheTest.java 113 Object two = new Object(); local
114 cache.getUnchecked(two);
154 Object two = new Object(); local
155 assertSame(one, map.replace(one, two));
159 assertTrue(map.replace(one, two, three));
163 assertNull(map.putIfAbsent(two, three));
164 assertSame(three, map.remove(two));
166 assertNull(map.put(one, two));
170 Maps.immutableEntry(three, one), Maps.immutableEntry(one, two));
174 ASSERT.that(values).hasContentsAnyOrder(one, two);
196 Object two = new Object(); local
213 Object two = new Object(); local
    [all...]
  /external/chromium_org/third_party/skia/src/pathops/
SkIntersections.cpp 64 int SkIntersections::insert(double one, double two, const SkDPoint& pt) {
74 if (one == oldOne && two == oldTwo) {
77 if (more_roughly_equal(oldOne, one) && more_roughly_equal(oldTwo, two)) {
80 || (precisely_zero(two) && !precisely_zero(oldTwo))
81 || (precisely_equal(two, 1) && !precisely_equal(oldTwo, 1))) {
83 fT[1][index] = two;
115 fT[1][index] = two;
120 void SkIntersections::insertNear(double one, double two, const SkDPoint& pt1, const SkDPoint& pt2) {
122 SkASSERT(two == 0 || two == 1)
    [all...]
  /external/chromium_org/third_party/skia/src/utils/
SkBase64.cpp 32 #if defined _WIN32 && _MSC_VER >= 1300 // disable 'two', etc. may be used without having been initialized
77 int two = 0; local
81 two = bytes[1];
82 one |= two >> 4;
83 two = (uint8_t) (two << 4);
85 two |= three >> 2;
88 SkASSERT(one < 256 && two < 256 && three < 256);
95 *dst = (unsigned char) two;
  /external/clang/test/CodeGenCXX/
cp-blocks-linetables.cpp 17 zero, one, two, three, four enumerator in enum:numbers
29 __block enum numbers y = two;
  /external/chromium_org/third_party/skia/experimental/Intersection/
QuadraticParameterization.h 6 bool implicit_match(const QuadImplicitForm& two) const;
EdgeWalker_Test.h 14 //extern int comparePaths(const SkPath& one, const SkPath& two);
15 extern int comparePaths(const SkPath& one, const SkPath& two, SkBitmap& bitmap);
16 extern void comparePathsTiny(const SkPath& one, const SkPath& two);
17 extern bool drawAsciiPaths(const SkPath& one, const SkPath& two,
  /art/runtime/
utf-inl.h 30 // two- or three-byte encoding
31 uint8_t two = *(*utf8_data_in)++; local
33 // two-byte encoding
34 return ((one & 0x1f) << 6) | (two & 0x3f);
38 return ((one & 0x0f) << 12) | ((two & 0x3f) << 6) | (three & 0x3f);
  /external/apache-harmony/security/src/test/api/java/org/apache/harmony/security/tests/java/security/
TimestampTest.java 65 Timestamp two = new Timestamp(now, cpath); local
68 assertTrue(one.equals(two));
69 assertTrue(two.equals(one));
  /external/chromium_org/tools/clang/plugins/
ChromeClassTester.cpp 20 bool starts_with(const std::string& one, const std::string& two) {
21 return one.compare(0, two.size(), two) == 0;
24 std::string lstrip(const std::string& one, const std::string& two) {
25 if (starts_with(one, two))
26 return one.substr(two.size());
30 bool ends_with(const std::string& one, const std::string& two) {
31 if (two.size() > one.size())
34 return one.compare(one.size() - two.size(), two.size(), two) == 0
    [all...]
  /external/chromium_org/third_party/WebKit/Source/build/scripts/
in_file.py 100 def _merge_entries(self, one, two):
103 if key not in two:
104 self._fatal("Expected key '%s' not found in entry: %s" % (key, two))
105 if one[key] and two[key]:
107 val_two = two[key]
120 merged[key] = two[key]

Completed in 719 milliseconds

1 23 4 5 6 7 8 91011>>