HomeSort by relevance Sort by last modified time
    Searched refs:id (Results 601 - 625 of 20383) sorted by null

<<21222324252627282930>>

  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/sysroot/usr/include/linux/netfilter/
xt_LED.h 7 char id[27]; /* Unique ID for this trigger in the LED class */ member in struct:xt_led_info
xt_realm.h 7 __u32 id; member in struct:xt_realm_info
  /prebuilts/ndk/r16/sources/cxx-stl/llvm-libc++/test/std/depr/depr.auto.ptr/auto.ptr/
AB.h 19 explicit A(int id) : id_(id) {++count;}
32 explicit B(int id) : A(id) {++count;}
  /prebuilts/ndk/r16/sources/cxx-stl/llvm-libc++/test/std/thread/thread.threads/thread.thread.class/thread.thread.constr/
default.pass.cpp 24 assert(t.get_id() == std::thread::id());
  /prebuilts/ndk/r16/sources/cxx-stl/llvm-libc++/test/std/thread/thread.threads/thread.thread.class/thread.thread.id/
thread_id.pass.cpp 30 std::thread::id id1;
31 std::thread::id id2 = std::this_thread::get_id();
32 typedef std::hash<std::thread::id> H;
33 static_assert((std::is_same<typename H::argument_type, std::thread::id>::value), "" );
  /bionic/libc/bionic/
sys_msg.cpp 34 int msgctl(int id, int cmd, msqid_ds* buf) {
41 return syscall(SYS_msgctl, id, cmd, buf);
43 return syscall(SYS_ipc, MSGCTL, id, cmd, 0, buf, 0);
55 ssize_t msgrcv(int id, void* msg, size_t n, long type, int flags) {
57 return syscall(SYS_msgrcv, id, msg, n, type, flags);
59 return syscall(SYS_ipc, IPCCALL(1, MSGRCV), id, n, flags, msg, type);
63 int msgsnd(int id, const void* msg, size_t n, int flags) {
65 return syscall(SYS_msgsnd, id, msg, n, flags);
67 return syscall(SYS_ipc, MSGSND, id, n, flags, msg, 0);
  /bionic/libm/upstream-freebsd/lib/msun/src/
s_atanf.c 52 int32_t ix,hx,id; local
65 id = -1;
70 id = 0; x = ((float)2.0*x-one)/((float)2.0+x);
72 id = 1; x = (x-one)/(x+one);
76 id = 2; x = (x-(float)1.5)/(one+(float)1.5*x);
78 id = 3; x = -(float)1.0/x;
87 if (id<0) return x - x*(s1+s2);
89 z = atanhi[id] - ((x*(s1+s2) - atanlo[id]) - x);
  /device/google/contexthub/firmware/external/freebsd/lib/msun/src/
s_atanf.c 52 int32_t ix,hx,id; local
65 id = -1;
70 id = 0; x = ((float)2.0*x-one)/((float)2.0+x);
72 id = 1; x = (x-one)/(x+one);
76 id = 2; x = (x-(float)1.5)/(one+(float)1.5*x);
78 id = 3; x = -(float)1.0/x;
87 if (id<0) return x - x*(s1+s2);
89 z = atanhi[id] - ((x*(s1+s2) - atanlo[id]) - x);
  /external/clang/test/Index/
complete-method-decls.m 5 - (id)abc;
6 - (id)initWithInt:(int)x;
7 - (id)initWithTwoInts:(inout int)x second:(int)y;
9 - (id)getSelf;
13 + (id)alloc;
17 - (id)init;
22 - (id)initWithInt:(int)x;
24 - (id)getSelf;
29 - (id)categoryFunction:(int)x;
34 - (id)init { return self;
    [all...]
  /external/conscrypt/openjdk/src/test/java/org/conscrypt/
MockSessionBuilder.java 29 private byte[] id; field in class:MockSessionBuilder
36 MockSessionBuilder id(byte[] id) { method in class:MockSessionBuilder
37 this.id = id;
68 byte[] id = this.id == null ? host.getBytes(UTF_8) : this.id;
69 when(session.getId()).thenReturn(id);
  /external/google-breakpad/src/processor/
disassembler_x86.cc 98 if (dest->data.expression.base.id == bad_register_.id)
102 if (dest->data.reg.id == bad_register_.id)
122 dest->data.expression.base.id == bad_register_.id)
125 src->data.expression.base.id == bad_register_.id)
132 dest->data.expression.base.id == bad_register_.id) ||
    [all...]
  /external/jacoco/org.jacoco.report.test/src/org/jacoco/report/internal/
NormalizedFileNamesTest.java 34 String id = "Foo-bar_$15.class"; local
35 assertEquals(id, nfn.getFileName(id));
40 String id = "A/b C;"; local
41 assertEquals("A_b_C_", nfn.getFileName(id));
47 String id = new String("Example.html"); local
48 assertSame(id, nfn.getFileName(id));
49 assertSame(id, nfn.getFileName(new String("Example.html")));
  /external/jsilver/src/com/google/streamhtmlparser/impl/
InternalState.java 51 private final int id; field in class:InternalState
55 * @param id the integer identiifer for this state, guaranteed to be unique
57 private InternalState(String name, int id) {
59 Preconditions.checkArgument(id >= FIRST_ID);
60 Preconditions.checkArgument(id <= MAX_ID);
62 this.id = id;
70 id = 0;
81 * @return {@code int} id of that state.
84 return id;
    [all...]
  /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/skia/src/gpu/mtl/
GrMtlRenderTarget.h 52 id<MTLTexture> renderTexture,
53 id<MTLTexture> resolveTexture);
57 id<MTLTexture> renderTexture);
75 id<MTLTexture> fRenderTexture;
76 id<MTLTexture> fResolveTexture;
82 id<MTLTexture> renderTexture,
83 id<MTLTexture> resolveTexture);
88 id<MTLTexture> renderTexture);
93 id<MTLTexture> renderTexture,
  /external/skqp/src/gpu/mtl/
GrMtlRenderTarget.h 52 id<MTLTexture> renderTexture,
53 id<MTLTexture> resolveTexture);
57 id<MTLTexture> renderTexture);
72 id<MTLTexture> fRenderTexture;
73 id<MTLTexture> fResolveTexture;
79 id<MTLTexture> renderTexture,
80 id<MTLTexture> resolveTexture);
85 id<MTLTexture> renderTexture);
90 id<MTLTexture> renderTexture,
  /external/snakeyaml/src/test/java/org/yaml/snakeyaml/emitter/template/
MyBean.java 27 private String id; field in class:MyBean
54 return id;
57 public void setId(String id) {
58 this.id = id;
65 if (!id.equals(bean.id)) {
85 return id.hashCode();
90 return id;
  /packages/apps/Car/Dialer/src/com/android/car/dialer/
CallLogViewHolder.java 44 icon = v.findViewById(R.id.icon);
45 iconContainer = v.findViewById(R.id.icon_container);
46 title = v.findViewById(R.id.title);
47 text = v.findViewById(R.id.text);
48 card = v.findViewById(R.id.call_log_card);
49 callType = v.findViewById(R.id.call_type);
50 callTypeIconsView = v.findViewById(R.id.call_type_icons);
51 smallIcon = v.findViewById(R.id.small_icon);
52 container = v.findViewById(R.id.container);
  /packages/apps/SettingsIntelligence/src/com/android/settings/intelligence/suggestions/eligibility/
ProviderEligibilityChecker.java 33 public static boolean isEligible(Context context, String id, ResolveInfo info) {
34 return isSystemApp(id, info)
35 && isEnabledInMetadata(context, id, info);
38 private static boolean isSystemApp(String id, ResolveInfo info) {
45 Log.i(TAG, id + " is not system app, not eligible for suggestion");
50 private static boolean isEnabledInMetadata(Context context, String id, ResolveInfo info) {
58 Log.i(TAG, id + " requires unsupported resource " + isSupportedResource);
62 Log.w(TAG, "Cannot find resources for " + id, e);
65 Log.w(TAG, "Cannot find resources for " + id, e);
  /packages/apps/TV/partner_support/src/com/google/android/tv/partner/support/
AutoValue_EpgInput.java 28 private final long id; field in class:AutoValue_EpgInput
33 long id,
36 this.id = id;
49 return id;
65 + "id=" + id + ", "
78 return (this.id == that.getId())
89 h$ ^= (int) ((id >>> 32) ^ id);
    [all...]
AutoValue_Lineup.java 32 private final String id; field in class:AutoValue_Lineup
38 String id,
42 if (id == null) {
43 throw new NullPointerException("Null id");
45 this.id = id;
56 return id;
78 + "id=" + id + ", "
92 return (this.id.equals(that.getId())
    [all...]
  /packages/services/Car/tests/carservice_unit_test/src/com/android/car/
VmsPublishersInfoTest.java 41 int id = mVmsPublishersInfo.getIdForInfo(MOCK_INFO_0); local
42 assertEquals(0, id);
44 byte[] info = mVmsPublishersInfo.getPublisherInfo(id);
48 // Test one info sanity - wrong ID fails.
50 int id = mVmsPublishersInfo.getIdForInfo(MOCK_INFO_0); local
51 assertEquals(0, id);
54 byte[] info = mVmsPublishersInfo.getPublisherInfo(id + 1);
75 // Test same info twice get the same ID.
77 int id = mVmsPublishersInfo.getIdForInfo(MOCK_INFO_0); local
78 assertEquals(0, id);
    [all...]
  /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);
  /device/linaro/bootloader/arm-trusted-firmware/drivers/arm/gic/v3/
gicv3_helpers.c 18 * interrupt `id`, 32 interrupt IDs at a time.
20 unsigned int gicd_read_igrpmodr(uintptr_t base, unsigned int id)
22 unsigned n = id >> IGRPMODR_SHIFT;
28 * interrupt `id`, 32 interrupt IDs at a time.
30 void gicd_write_igrpmodr(uintptr_t base, unsigned int id, unsigned int val)
32 unsigned n = id >> IGRPMODR_SHIFT;
37 * Accessor to get the bit corresponding to interrupt ID
40 unsigned int gicd_get_igrpmodr(uintptr_t base, unsigned int id)
42 unsigned bit_num = id & ((1 << IGRPMODR_SHIFT) - 1);
43 unsigned int reg_val = gicd_read_igrpmodr(base, id);
    [all...]
  /packages/apps/DocumentsUI/src/com/android/documentsui/selection/
Selection.java 75 * @param id
78 public boolean contains(@Nullable String id) {
79 return mSelection.contains(id) || mProvisionalSelection.contains(id);
116 for (String id: mProvisionalSelection) {
119 if (!newSelection.contains(id) && !mSelection.contains(id)) {
120 delta.put(id, false);
124 for (String id: mSelection) {
127 if (!newSelection.contains(id)) {
144 String id = entry.getKey(); local
    [all...]

Completed in 1177 milliseconds

<<21222324252627282930>>