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

1 2 3 4

  /external/clang/test/CXX/basic/basic.lookup/basic.lookup.qual/namespace.qual/
p2.cpp 17 namespace Numbers {
29 double n = Numbers::zero; // expected-error {{reference to 'zero' is ambiguous}}
30 Numbers::f(n); // expected-error{{call to 'f' is ambiguous}}
31 Numbers::f(i);
32 Numbers::f(f);
35 namespace Numbers {
49 Numbers::Number n = Numbers::zero;
50 Numbers::f(n); // expected-error {{no matching function for call to 'f'}}
51 Numbers::g(n)
    [all...]
  /external/swiftshader/third_party/subzero/src/
IceRangeSpec.cpp 15 /// number X. The X:Y form indicates a range of numbers greater than or equal
85 if (Last >= D->Numbers.size())
86 D->Numbers.resize(Last + 1);
87 D->Numbers.set(First, Last);
139 if (Number < Excludes.Numbers.size() && Excludes.Numbers[Number])
147 if (Number < Includes.Numbers.size() && Includes.Numbers[Number])
IceRangeSpec.h 41 // Set of numbers explicitly provided.
42 llvm::BitVector Numbers;
45 // number that might be matched against, and we can't make the Numbers
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/sysroot/usr/include/
term.h 193 #define columns CUR Numbers[0]
194 #define init_tabs CUR Numbers[1]
195 #define lines CUR Numbers[2]
196 #define lines_of_memory CUR Numbers[3]
197 #define magic_cookie_glitch CUR Numbers[4]
198 #define padding_baud_rate CUR Numbers[5]
199 #define virtual_terminal CUR Numbers[6]
200 #define width_status_line CUR Numbers[7]
201 #define num_labels CUR Numbers[8]
202 #define label_height CUR Numbers[9
    [all...]
  /external/clang/test/Sema/
statements.c 46 enum Numbers { kOne, kTwo, kThree, kFour};
47 int test12(enum Numbers num) {
  /external/clang/test/SemaTemplate/
alias-templates.cpp 151 template <typename T, T... Numbers>
154 template <unsigned int... Numbers>
155 using MyNumberTuple = NumberTuple<unsigned int, Numbers...>;
157 template <typename U, unsigned int... Numbers>
158 void foo(U&&, MyNumberTuple<Numbers...>);
160 template <typename U, unsigned int... Numbers>
161 void bar(U&&, NumberTuple<unsigned int, Numbers...>);
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Tools/pybench/
Setup.py 39 from Numbers import *
  /external/python/cpython2/Tools/pybench/
Setup.py 39 from Numbers import *
  /external/python/cpython3/Tools/pybench/
Setup.py 39 from Numbers import *
  /external/swiftshader/third_party/LLVM/unittests/ADT/
TwineTest.cpp 34 TEST(TwineTest, Numbers) {
  /external/protobuf/js/binary/
encoder.js 144 // which is always set for negative numbers.
211 * Writes a 8-bit unsigned integer to the buffer. Numbers outside the range
223 * Writes a 16-bit unsigned integer to the buffer. Numbers outside the
236 * Writes a 32-bit unsigned integer to the buffer. Numbers outside the
252 * Writes a 64-bit unsigned integer to the buffer. Numbers outside the
267 * Writes a 8-bit integer to the buffer. Numbers outside the range
279 * Writes a 16-bit integer to the buffer. Numbers outside the range
292 * Writes a 32-bit integer to the buffer. Numbers outside the range
308 * Writes a 64-bit integer to the buffer. Numbers outside the range
323 * Writes a single-precision floating point value to the buffer. Numbers
    [all...]
writer.js 47 * for all numbers. BinaryWriter does not make any special effort to preserve
438 * Writes an int32 field to the buffer. Numbers outside the range [-2^31,2^31)
452 * Writes an int32 field represented as a string to the buffer. Numbers outside
467 * Writes an int64 field to the buffer. Numbers outside the range [-2^63,2^63)
494 * Writes a uint32 field to the buffer. Numbers outside the range [0,2^32)
508 * Writes a uint32 field represented as a string to the buffer. Numbers outside
523 * Writes a uint64 field to the buffer. Numbers outside the range [0,2^64)
550 * Writes a sint32 field to the buffer. Numbers outside the range [-2^31,2^31)
564 * Writes a sint64 field to the buffer. Numbers outside the range [-2^63,2^63)
578 * Writes a fixed32 field to the buffer. Numbers outside the range [0,2^32
    [all...]
  /external/llvm/unittests/ADT/
TwineTest.cpp 35 TEST(TwineTest, Numbers) {
  /prebuilts/go/darwin-x86/src/math/big/
prime_test.go 54 // Arnault, "Rabin-Miller Primality Test: Composite Numbers Which Pass It",
  /prebuilts/go/linux-x86/src/math/big/
prime_test.go 54 // Arnault, "Rabin-Miller Primality Test: Composite Numbers Which Pass It",
  /prebuilts/go/darwin-x86/src/math/
floor.go 85 // Numbers with larger exponents are returned unchanged since they
116 // - Large numbers without fractional components, infinity, and NaN are unchanged.
  /prebuilts/go/darwin-x86/src/runtime/
utf8.go 7 // Numbers fundamental to the encoding.
  /prebuilts/go/linux-x86/src/math/
floor.go 85 // Numbers with larger exponents are returned unchanged since they
116 // - Large numbers without fractional components, infinity, and NaN are unchanged.
  /prebuilts/go/linux-x86/src/runtime/
utf8.go 7 // Numbers fundamental to the encoding.
  /external/llvm/unittests/Support/
YAMLIOTest.cpp 1060 std::vector<MyNumber> numbers; member in struct:NameAndNumbers
1071 io.mapRequired("numbers", nn.numbers);
1109 map.numbers.push_back(10);
1110 map.numbers.push_back(-30);
1111 map.numbers.push_back(1024);
1136 EXPECT_EQ(map2.numbers.size(), 3UL);
1137 EXPECT_EQ(10, map2.numbers[0]);
1138 EXPECT_EQ(-30, map2.numbers[1]);
1139 EXPECT_EQ(1024, map2.numbers[2])
1153 MyNumberFlowSequence numbers = { 12, 1, -512 }; local
    [all...]
  /external/pdfium/xfa/fxfa/fm2js/
cxfa_fmlexer_unittest.cpp 19 TEST(CXFA_FMLexerTest, Numbers) {
  /libcore/ojluni/src/main/java/java/io/
StreamTokenizer.java 35 * stream tokenizer can recognize identifiers, numbers, quoted
213 * <li>Numbers are parsed.
390 * Specifies that numbers should be parsed by this tokenizer. The
  /external/tensorflow/tensorflow/core/lib/strings/
strcat_test.cc 372 TEST(Numbers, TestFunctionsMovedOverFromNumbersMain) { TestFastPrints(); }
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/
sdpblb.h     [all...]
  /prebuilts/go/darwin-x86/src/html/template/
js_test.go 80 // Numbers precede div ops.

Completed in 681 milliseconds

1 2 3 4