/external/icu/icu4c/source/i18n/unicode/ |
region.h | 196 char id[4]; member in class:Region
|
/external/libcxx/test/std/algorithms/alg.modifying.operations/alg.reverse/ |
reverse.pass.cpp | 46 int id[] = {0, 1, 2, 3}; local 47 const unsigned sd = sizeof(id)/sizeof(id[0]); 48 std::reverse(Iter(id), Iter(id+sd)); 49 assert(id[0] == 3); 50 assert(id[1] == 2); 51 assert(id[2] == 1); 52 assert(id[3] == 0);
|
/external/libcxx/test/std/algorithms/alg.sorting/alg.set.operations/includes/ |
includes.pass.cpp | 33 int id[] = {3, 3, 3, 3}; local 34 const unsigned sd = sizeof(id)/sizeof(id[0]); ((void)sd); 47 assert(std::includes(Iter1(ia), Iter1(ia+sa), Iter2(id), Iter2(id+1))); 48 assert(std::includes(Iter1(ia), Iter1(ia+sa), Iter2(id), Iter2(id+2))); 49 assert(std::includes(Iter1(ia), Iter1(ia+sa), Iter2(id), Iter2(id+3))); 50 assert(!std::includes(Iter1(ia), Iter1(ia+sa), Iter2(id), Iter2(id+4))) [all...] |
includes_comp.pass.cpp | 34 int id[] = {3, 3, 3, 3}; local 35 const unsigned sd = sizeof(id)/sizeof(id[0]); ((void)sd); 48 assert(std::includes(Iter1(ia), Iter1(ia+sa), Iter2(id), Iter2(id+1), std::less<int>())); 49 assert(std::includes(Iter1(ia), Iter1(ia+sa), Iter2(id), Iter2(id+2), std::less<int>())); 50 assert(std::includes(Iter1(ia), Iter1(ia+sa), Iter2(id), Iter2(id+3), std::less<int>())); 51 assert(!std::includes(Iter1(ia), Iter1(ia+sa), Iter2(id), Iter2(id+4), std::less<int>())) [all...] |
/external/libcxx/test/std/depr/depr.lib.binders/ |
test_func.h | 21 explicit test_func(int id) : id_(id) {} 23 int id() const {return id_;} function in class:test_func
|
/external/libcxx/test/std/localization/locales/locale/locale.members/ |
combine.pass.cpp | 59 static std::locale::id id; member in struct:my_facet 62 std::locale::id my_facet::id; member in class:my_facet
|
/external/libcxx/test/std/localization/locales/locale.global.templates/ |
use_facet.pass.cpp | 22 static std::locale::id id; member in struct:my_facet 30 std::locale::id my_facet::id; member in class:my_facet
|
/external/libcxx/test/std/thread/thread.threads/thread.thread.class/thread.thread.constr/ |
copy.fail.cpp | 58 std::thread::id id = t0.get_id(); local 60 assert(t1.get_id() == id); 61 assert(t0.get_id() == std::thread::id());
|
/external/libcxx/test/std/utilities/memory/allocator.traits/allocator.traits.members/ |
select_on_container_copy_construction.pass.cpp | 29 int id; member in struct:A 30 explicit A(int i = 0) : id(i) {} 39 int id; member in struct:B 40 explicit B(int i = 0) : id(i) {} 52 assert(std::allocator_traits<A<int> >::select_on_container_copy_construction(a).id == 0); 56 assert(std::allocator_traits<A<int> >::select_on_container_copy_construction(a).id == 0); 61 assert(std::allocator_traits<B<int> >::select_on_container_copy_construction(b).id == 100); 65 assert(std::allocator_traits<B<int> >::select_on_container_copy_construction(b).id == 100);
|
/external/libcxx/test/std/utilities/tuple/tuple.tuple/tuple.cnstr/ |
const_Types.pass.cpp | 30 NoValueCtor() : id(++count) {} 31 NoValueCtor(NoValueCtor const & other) : id(other.id) { ++count; } 40 int id; member in struct:NoValueCtor 102 assert(std::get<1>(t).id == 1);
|
/external/libmtp/examples/ |
delfile.c | 45 uint32_t id = parse_path (path,files,folders); local 47 if (id > 0) { 48 printf("Deleting %s which has item_id:%d\n",path,id); 50 ret = LIBMTP_Delete_Object(device, id); 83 uint32_t id; local 88 // Sanity check song ID 89 id = strtoul(argv[i], &endptr, 10); 92 id = 0; 96 id = parse_path (argv[i],files,folders); 98 id = 0 [all...] |
getplaylist.c | 53 uint32_t id; local 58 // We need file ID 60 fprintf(stderr, "Just a playlist ID is required\n"); 64 // Sanity check playlist ID 65 id = strtoul(argv[1], &endptr, 10); 69 } else if ( ! id ) { 70 fprintf(stderr, "bad playlist id %u\n", id); 81 playlist = LIBMTP_Get_Playlist(device,id);
|
/external/llvm/utils/lit/lit/ |
LitTestCase.py | 19 def id(self): member in class:LitTestCase
|
/external/lzma/C/ |
XzEnc.h | 15 UInt32 id;
member in struct:__anon19188
|
/external/opencv3/3rdparty/libjasper/ |
jas_getopt.c | 67 * $Id: jas_getopt.c,v 1.2 2008-05-26 09:40:52 vp153 Exp $ 96 for (opt = opts; opt->id >= 0 && opt->name; ++opt) { 107 int id; local 134 id = opt->id; 145 id = opt->id; 161 return id;
|
/external/opencv3/3rdparty/libjasper/jasper/ |
jas_getopt.h | 67 * $Id: jas_getopt.h,v 1.2 2008-05-26 09:41:51 vp153 Exp $ 96 int id; member in struct:__anon20811
|
jas_tvp.h | 65 * $Id: jas_tvp.h,v 1.2 2008-05-26 09:41:51 vp153 Exp $ 89 int id; member in struct:__anon20839 90 /* The ID for the tag. */
|
/external/opencv3/3rdparty/openexr/IlmThread/ |
IlmThreadWin32.cpp | 87 unsigned id; local 88 _thread = (HANDLE)::_beginthreadex (0, 0, &threadLoop, this, 0, &id);
|
/external/proguard/src/proguard/evaluation/value/ |
IdentifiedDoubleValue.java | 24 * This DoubleValue represents a double value that is identified by a unique ID. 31 private final int id; field in class:IdentifiedDoubleValue 35 * Creates a new double value with the given ID. 37 public IdentifiedDoubleValue(ValueFactory valuefactory, int id) 40 this.id = id; 51 this.id == ((IdentifiedDoubleValue)object).id; 59 id; 65 return "d"+id; [all...] |
IdentifiedFloatValue.java | 24 * This FloatValue represents a float value that is identified by a unique ID. 31 private final int id; field in class:IdentifiedFloatValue 35 * Creates a new float value with the given ID. 37 public IdentifiedFloatValue(ValueFactory valuefactory, int id) 40 this.id = id; 51 this.id == ((IdentifiedFloatValue)object).id; 59 id; 65 return "f"+id; [all...] |
IdentifiedIntegerValue.java | 24 * This IntegerValue represents a integer value that is identified by a unique ID. 31 private final int id; field in class:IdentifiedIntegerValue 35 * Creates a new integer value with the given ID. 37 public IdentifiedIntegerValue(ValueFactory valuefactory, int id) 40 this.id = id; 51 this.id == ((IdentifiedIntegerValue)object).id; 59 id; 65 return "i"+id; [all...] |
IdentifiedLongValue.java | 24 * This LongValue represents a long value that is identified by a unique ID. 31 private final int id; field in class:IdentifiedLongValue 35 * Creates a new long value with the given ID. 37 public IdentifiedLongValue(ValueFactory valuefactory, int id) 40 this.id = id; 51 this.id == ((IdentifiedLongValue)object).id; 59 id; 65 return "l"+id; [all...] |
/external/protobuf/examples/ |
add_person.cc | 11 cout << "Enter person ID number: "; 12 int id; local 13 cin >> id; local 14 person->set_id(id);
|
/external/robolectric/v1/src/main/java/com/xtremelabs/robolectric/shadows/ |
SerializedFragmentState.java | 9 public final int id; field in class:SerializedFragmentState 15 id = fragment.getId();
|
/external/snakeyaml/src/test/java/examples/jodatime/ |
MyBean.java | 21 private String id; field in class:MyBean 25 return id; 28 public void setId(String id) { 29 this.id = id;
|