HomeSort by relevance Sort by last modified time
    Searched defs:id (Results 276 - 300 of 5510) sorted by null

<<11121314151617181920>>

  /external/chromium_org/third_party/webrtc/system_wrappers/source/
thread_unittest.cc 25 unsigned int id = 42; local
26 ASSERT_TRUE(thread->Start(id));
42 unsigned int id = 42; local
43 ASSERT_TRUE(thread->Start(id));
  /external/chromium_org/third_party/webrtc/test/channel_transport/
udp_socket_wrapper_unittest.cc 52 int32_t id = 42; local
55 UdpSocketManager* mgr = UdpSocketManager::Create(id, threads);
57 UdpSocketWrapper::CreateSocket(id,
  /external/chromium_org/third_party/webrtc/voice_engine/test/auto_test/fakes/
fake_external_transport.cc 34 unsigned int id; local
35 thread_->Start(id);
  /external/clang/test/Analysis/inlining/
InlineObjCInstanceMethod.h 10 } *id; typedef in typeref:struct:objc_object
11 @protocol NSObject - (BOOL)isEqual:(id)object; @end
13 +(id)alloc;
14 +(id)new;
15 -(id)init;
16 -(id)autorelease;
17 -(id)copy;
19 -(id)retain;
  /external/clang/test/SemaCXX/
generic-selection.cpp 6 id = _Generic(T(), // expected-error {{controlling expression type 'char' not compatible with any generic association type}} enumerator in enum:A::__anon23131
13 static_assert(A<int>::id == 1, "fail");
14 static_assert(A<float>::id == 2, "fail");
15 static_assert(A<double, double>::id == 3, "fail");
23 id = _Generic(T(), enumerator in enum:B::__anon23132
  /external/eigen/doc/special_examples/
Tutorial_sparse_example_details.cpp 8 void insertCoefficient(int id, int i, int j, double w, std::vector<T>& coeffs,
14 if(i==-1 || i==n) b(id) -= w * boundary(j); // constrained coefficient
15 else if(j==-1 || j==n) b(id) -= w * boundary(i); // constrained coefficient
16 else coeffs.push_back(T(id,id1,w)); // unknown coefficient
27 int id = i+j*n; local
28 insertCoefficient(id, i-1,j, -1, coefficients, b, boundary);
29 insertCoefficient(id, i+1,j, -1, coefficients, b, boundary);
30 insertCoefficient(id, i,j-1, -1, coefficients, b, boundary);
31 insertCoefficient(id, i,j+1, -1, coefficients, b, boundary);
32 insertCoefficient(id, i,j, 4, coefficients, b, boundary)
    [all...]
  /external/glide/library/src/main/java/com/bumptech/glide/load/model/stream/
StreamByteArrayLoader.java 11 * no simple/quick way to generate an id from the bytes themselves, so subclass must include an id.
14 private String id; field in class:StreamByteArrayLoader
20 public StreamByteArrayLoader(String id) {
21 this.id = id;
26 return new ByteArrayFetcher(model, id);
  /external/icu/icu4c/source/i18n/unicode/
region.h 196 char id[4]; member in class:Region
  /external/iproute2/ip/
ip_common.h 59 const char *id; member in struct:link_util
  /external/libcxx/test/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/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]);
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]);
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/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/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/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());
move.pass.cpp 59 std::thread::id id = t0.get_id(); local
61 assert(t1.get_id() == id);
62 assert(t0.get_id() == std::thread::id());
  /external/libcxx/test/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/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/lldb/test/benchmarks/expression/
main.cpp 23 int id; member in class:Data
26 id(i),
47 printf("data[%d] = %d (%d, %d)\n", j, ptr[j]->id, ptr[j]->point.x, ptr[j]->point.y);
  /external/lldb/test/functionalities/non-overlapping-index-variable-i/
main.cpp 23 int id; member in class:Data
26 id(i),
47 printf("data[%d] = %d (%d, %d)\n", i, ptr[i]->id, ptr[i]->point.x, ptr[i]->point.y);
  /external/llvm/utils/lit/lit/
LitTestCase.py 19 def id(self): member in class:LitTestCase
  /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...]

Completed in 3056 milliseconds

<<11121314151617181920>>