HomeSort by relevance Sort by last modified time
    Searched defs:id (Results 151 - 175 of 6491) sorted by null

1 2 3 4 5 67 8 91011>>

  /prebuilts/misc/darwin-x86_64/sdl2/include/SDL2/
SDL_touch.h 46 SDL_FingerID id; member in struct:SDL_Finger
52 /* Used as the device ID for mouse events simulated with touch input */
64 * \brief Get the touch ID with the given index, or 0 if the index is invalid.
  /prebuilts/misc/windows/sdl2/i686-w64-mingw32/include/SDL2/
SDL_touch.h 46 SDL_FingerID id; member in struct:SDL_Finger
52 /* Used as the device ID for mouse events simulated with touch input */
64 * \brief Get the touch ID with the given index, or 0 if the index is invalid.
  /prebuilts/misc/windows/sdl2/include/
SDL_touch.h 46 SDL_FingerID id; member in struct:SDL_Finger
52 /* Used as the device ID for mouse events simulated with touch input */
64 * \brief Get the touch ID with the given index, or 0 if the index is invalid.
  /prebuilts/misc/windows/sdl2/x86_64-w64-mingw32/include/SDL2/
SDL_touch.h 46 SDL_FingerID id; member in struct:SDL_Finger
52 /* Used as the device ID for mouse events simulated with touch input */
64 * \brief Get the touch ID with the given index, or 0 if the index is invalid.
  /prebuilts/ndk/r16/sources/cxx-stl/llvm-libc++/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);
  /prebuilts/ndk/r16/sources/cxx-stl/llvm-libc++/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...]
  /prebuilts/ndk/r16/sources/cxx-stl/llvm-libc++/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
  /prebuilts/ndk/r16/sources/cxx-stl/llvm-libc++/test/std/localization/locales/locale/locale.members/
combine.pass.cpp 62 static std::locale::id id; member in struct:my_facet
65 std::locale::id my_facet::id; member in class:my_facet
  /prebuilts/ndk/r16/sources/cxx-stl/llvm-libc++/test/std/localization/locales/locale.global.templates/
use_facet.pass.cpp 24 static std::locale::id id; member in struct:my_facet
32 std::locale::id my_facet::id; member in class:my_facet
  /prebuilts/ndk/r16/sources/cxx-stl/llvm-libc++/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());
  /prebuilts/ndk/r16/sources/cxx-stl/llvm-libc++/test/std/utilities/memory/allocator.traits/allocator.traits.members/
select_on_container_copy_construction.pass.cpp 31 int id; member in struct:A
32 explicit A(int i = 0) : id(i) {}
41 int id; member in struct:B
42 explicit B(int i = 0) : id(i) {}
54 assert(std::allocator_traits<A<int> >::select_on_container_copy_construction(a).id == 0);
58 assert(std::allocator_traits<A<int> >::select_on_container_copy_construction(a).id == 0);
63 assert(std::allocator_traits<B<int> >::select_on_container_copy_construction(b).id == 100);
67 assert(std::allocator_traits<B<int> >::select_on_container_copy_construction(b).id == 100);
  /prebuilts/ndk/r16/sources/third_party/shaderc/third_party/spirv-tools/source/
id_descriptor.cpp 53 const uint32_t id = inst.words[operand.offset]; local
54 const auto it = id_to_descriptor_.find(id);
  /packages/apps/Car/Radio/src/com/android/car/radio/storage/
RadioDatabase.java 60 default void delete(@NonNull ProgramSelector.Identifier id) {
61 delete(id.getType(), id.getValue());
94 * Removes a favorite by primary id of its {@link ProgramSelector}.
  /external/glide/library/src/main/java/com/bumptech/glide/load/engine/
EngineKey.java 16 private final String id; field in class:EngineKey
30 public EngineKey(String id, Key signature, int width, int height, ResourceDecoder cacheDecoder,
33 this.id = id;
47 originalKey = new OriginalKey(id, signature);
63 if (!id.equals(engineKey.id)) {
102 hashCode = id.hashCode();
120 .append(id)
142 messageDigest.update(id.getBytes(STRING_CHARSET_NAME))
    [all...]
  /frameworks/support/v7/appcompat/src/androidTest/java/androidx/appcompat/app/
AppCompatMenuItemShortcutsTest.java 68 assertEquals(mActivity.getMenuItemIdTracker(), R.id.single_modifier);
76 assertEquals(mActivity.getMenuItemIdTracker(), R.id.multiple_modifiers);
  /art/compiler/optimizing/
ssa_test.cc 72 int id = 0; local
75 it.Current()->SetId(id++);
78 it.Current()->SetId(id++);
  /art/runtime/jdwp/
object_registry.h 48 // The corresponding id, so we only need one map lookup in Add.
49 JDWP::ObjectId id; member in struct:art::ObjectRegistryEntry
84 template<typename T> T Get(JDWP::ObjectId id, JDWP::JdwpError* error)
86 if (id == 0) {
90 return down_cast<T>(InternalGet(id, error));
95 void DisableCollection(JDWP::ObjectId id)
98 void EnableCollection(JDWP::ObjectId id)
101 bool IsCollected(JDWP::ObjectId id)
104 void DisposeObject(JDWP::ObjectId id, uint32_t reference_count)
109 jobject GetJObject(JDWP::ObjectId id) REQUIRES_SHARED(Locks::mutator_lock_) REQUIRES(!lock_)
    [all...]
  /art/runtime/
monitor_pool.cc 74 // Eagerly compute id.
123 // Pull out the id which was preinitialized.
124 MonitorId id = mon_uninitialized->monitor_id_; local
127 Monitor* monitor = new(mon_uninitialized) Monitor(self, owner, obj, hash_code, id);
136 // Keep the monitor id. Don't trust it's not cleared.
137 MonitorId id = monitor->monitor_id_; local
147 // Rewrite monitor id.
148 monitor->monitor_id_ = id;
  /art/test/169-threadgroup-jni/
jni_daemon_thread.cc 40 jmethodID id = env->GetStaticMethodID(klass.get(), "runFromNative", "()V"); local
41 CHECK(id != nullptr);
43 env->CallStaticVoidMethod(klass.get(), id);
  /art/test/923-monitors/
monitors.cc 32 static jlong MonitorToLong(jrawMonitorID id) {
33 return static_cast<jlong>(reinterpret_cast<uintptr_t>(id));
42 jrawMonitorID id; local
43 jvmtiError result = jvmti_env->CreateRawMonitor("dummy", &id);
47 return MonitorToLong(id);
  /bionic/libc/kernel/uapi/linux/iio/
events.h 24 __u64 id; member in struct:iio_event_data
  /bionic/libc/kernel/uapi/linux/netfilter/
xt_cgroup.h 24 __u32 id; member in struct:xt_cgroup_info_v0
  /bionic/libc/kernel/uapi/linux/netfilter_bridge/
ebt_vlan.h 28 __u16 id; member in struct:ebt_vlan_info
  /bionic/libc/kernel/uapi/linux/
stm.h 29 char id[0]; member in struct:stp_policy_id

Completed in 635 milliseconds

1 2 3 4 5 67 8 91011>>