Searched defs:I1 (Results 1 - 25 of 54) sorted by relevance

123

/external/clang/test/CodeCompletion/
H A Dnamespace.cpp5 namespace I1 { } namespace in namespace:N2
6 namespace I4 = I1;
8 namespace I1 { } namespace in namespace:N2
12 // CHECK-CC1: I1
H A Dnamespace-alias.cpp8 namespace I1 { } namespace in namespace:N2
9 namespace I4 = I1;
11 namespace I1 { } namespace in namespace:N2
15 // CHECK-CC1: I1
H A Dusing-namespace.cpp8 namespace I1 { } namespace in namespace:N2
9 namespace I4 = I1;
11 namespace I1 { } namespace in namespace:N2
16 // CHECK-CC1: I1
H A Dusing.cpp8 namespace I1 { } namespace in namespace:N2
9 namespace I4 = I1;
11 namespace I1 { } namespace in namespace:N2
18 // CHECK-CC1: I1
/external/libcxx/test/std/iterators/stream.iterators/istream.iterator/
H A Dtypes.pass.cpp28 typedef std::istream_iterator<double> I1; typedef
29 static_assert((std::is_convertible<I1,
32 static_assert((std::is_same<I1::char_type, char>::value), "");
33 static_assert((std::is_same<I1::traits_type, std::char_traits<char> >::value), "");
34 static_assert((std::is_same<I1::istream_type, std::istream>::value), "");
/external/libcxx/test/std/iterators/stream.iterators/istreambuf.iterator/
H A Dtypes.pass.cpp32 typedef std::istreambuf_iterator<char> I1; typedef
33 static_assert((std::is_convertible<I1,
36 static_assert((std::is_same<I1::char_type, char>::value), "");
37 static_assert((std::is_same<I1::traits_type, std::char_traits<char> >::value), "");
38 static_assert((std::is_same<I1::int_type, I1::traits_type::int_type>::value), "");
39 static_assert((std::is_same<I1::streambuf_type, std::streambuf>::value), "");
40 static_assert((std::is_same<I1::istream_type, std::istream>::value), "");
/external/libcxx/test/std/iterators/stream.iterators/ostream.iterator/
H A Dtypes.pass.cpp28 typedef std::ostream_iterator<double> I1; typedef
29 static_assert((std::is_convertible<I1,
31 static_assert((std::is_same<I1::char_type, char>::value), "");
32 static_assert((std::is_same<I1::traits_type, std::char_traits<char> >::value), "");
33 static_assert((std::is_same<I1::ostream_type, std::ostream>::value), "");
/external/libcxx/test/std/iterators/stream.iterators/ostreambuf.iterator/
H A Dtypes.pass.cpp29 typedef std::ostreambuf_iterator<char> I1; typedef
30 static_assert((std::is_convertible<I1,
32 static_assert((std::is_same<I1::char_type, char>::value), "");
33 static_assert((std::is_same<I1::traits_type, std::char_traits<char> >::value), "");
34 static_assert((std::is_same<I1::streambuf_type, std::streambuf>::value), "");
35 static_assert((std::is_same<I1::ostream_type, std::ostream>::value), "");
/external/clang/test/CXX/basic/basic.lookup/basic.lookup.qual/
H A Dp6-0x.cpp8 typedef int I1, I2; typedef
14 q->I1::~I2();
H A Dp6.cpp8 typedef int I1, I2; typedef
14 q->I1::~I2();
/external/clang/test/CXX/class/class.nest/
H A Dp3.cpp11 class I1;
13 class I1 { }; class in class:example::E
/external/clang/test/SemaCXX/
H A Dms-interface.cpp3 __interface I1 {
5 I1();
7 ~I1();
13 // expected-error@+1 {{nested class I1::(anonymous) is not permitted within an interface type}}
44 __interface I4 : I1, I2 { variable
50 // expected-error@+1 {{interface type cannot inherit from non-public 'interface I1'}}
51 __interface I5 : private I1 {
/external/clang/test/CXX/special/class.inhctor/
H A Delsewhere.cpp18 struct I1 : B1 { struct in inherits:B1
29 struct D1 : I1 {
/external/clang/test/Sema/
H A Dcompound-literal.c30 struct Incomplete* I1 = &(struct Incomplete){1, 2, 3}; // expected-error {{variable has incomplete type}} variable in typeref:struct:Incomplete
H A Dms_bitfield_layout.c234 typedef struct I1 { struct
237 } I1; typedef in typeref:struct:I1
239 // CHECK: Type: struct I1
264 sizeof(I1) +
/external/guava/guava-tests/benchmark/com/google/common/base/
H A DObjectsBenchmark.java30 private static final Integer I1 = -1; field in class:ObjectsBenchmark
76 dummy += Objects.hashCode(D0, I1, S3, I2, S0);
/external/lldb/test/functionalities/data-formatter/data-formatter-script/
H A Dmain.cpp31 i_am_cooler(int I1, int I2, float F1, float F2, char C1, char C2) : argument
32 first_cool(I1,F1,C1),
/external/llvm/unittests/ADT/
H A DAPIntTest.cpp838 uint64_t I1 = 0x1800001; local
839 APInt A1(64, I1);
/external/clang/test/CodeGenCXX/
H A Dhomogeneous-aggregates.cpp36 struct I1 : Base2 {}; struct in inherits:Base2
39 struct D5 : I1, I2, I3 {}; // homogeneous aggregate
/external/google-breakpad/src/common/
H A Dtest_assembler_unittest.cc744 #define I1(a) { a } macro
818 ASSERT_BYTES(contents, I1(42));
866 ASSERT_BYTES(contents, I1(0xd0));
916 ASSERT_BYTES(contents, I1(42));
980 ASSERT_BYTES(contents, I1(0xd0));
1610 ASSERT_BYTES(contents, I1(42));
/external/lldb/test/functionalities/data-formatter/data-formatter-cpp/
H A Dmain.cpp59 i_am_cooler(int I1, int I2, float F1, float F2, char C1, char C2) : argument
60 first_cool(I1,F1,C1),
/external/llvm/lib/IR/
H A DInstruction.cpp261 static bool haveSameSpecialState(const Instruction *I1, const Instruction *I2, argument
263 assert(I1->getOpcode() == I2->getOpcode() &&
266 if (const LoadInst *LI = dyn_cast<LoadInst>(I1))
272 if (const StoreInst *SI = dyn_cast<StoreInst>(I1))
278 if (const CmpInst *CI = dyn_cast<CmpInst>(I1))
280 if (const CallInst *CI = dyn_cast<CallInst>(I1))
284 if (const InvokeInst *CI = dyn_cast<InvokeInst>(I1))
288 if (const InsertValueInst *IVI = dyn_cast<InsertValueInst>(I1))
290 if (const ExtractValueInst *EVI = dyn_cast<ExtractValueInst>(I1))
292 if (const FenceInst *FI = dyn_cast<FenceInst>(I1))
[all...]
/external/ppp/pppd/
H A Dmd4.c46 #define I1 0xefcdab89 macro
109 MDp->buffer[1] = I1;
/external/valgrind/cachegrind/
H A Dcg_sim.c167 static cache_t2 I1; variable
172 cachesim_initcache(I1c, &I1);
181 if (cachesim_ref_is_miss(&I1, a, size)) {
193 UWord block = a >> I1.line_size_bits;
194 UInt I1_set = block & I1.sets_min_1;
197 if (cachesim_setref_is_miss(&I1, I1_set, block)) {
228 if (I1.line_size_bits != LL.line_size_bits) return False;
229 block1 = a >> I1.line_size_bits;
230 block2 = (a+size-1) >> I1.line_size_bits;
/external/clang/lib/StaticAnalyzer/Checkers/
H A DIdenticalExprChecker.cpp314 Expr::const_child_iterator I1 = Expr1->child_begin();
316 while (I1 != Expr1->child_end() && I2 != Expr2->child_end()) {
317 if (!*I1 || !*I2 || !isIdenticalStmt(Ctx, *I1, *I2, IgnoreSideEffects))
319 ++I1;
324 if (I1 != Expr1->child_end())
418 CompoundStmt::const_body_iterator I1 = CompStmt1->body_begin();
420 while (I1 != CompStmt1->body_end() && I2 != CompStmt2->body_end()) {
421 if (!isIdenticalStmt(Ctx, *I1, *I2, IgnoreSideEffects))
423 ++I1;
449 llvm::APInt I1 = IntLit1->getValue(); local
[all...]

Completed in 6987 milliseconds

123