HomeSort by relevance Sort by last modified time
    Searched defs:id (Results 726 - 750 of 5937) sorted by null

<<21222324252627282930>>

  /external/icu/icu4c/source/common/
locutil.cpp 67 LocaleUtility::canonicalLocaleString(const UnicodeString* id, UnicodeString& result)
69 if (id == NULL) {
79 result = *id;
111 // This code does a proper full level 2 canonicalization of id.
123 if (id != 0) {
124 int32_t buflen = id->length() + 8; // space for NUL
128 U_ASSERT(id->extract(0, INT32_MAX, buf, buflen) < buflen);
143 LocaleUtility::initLocaleFromName(const UnicodeString& id, Locale& result)
147 if (id.isBogus() || id.length() >= BUFLEN)
232 const UChar* id = uenum_unext(uenum, NULL, &status); local
    [all...]
servlkf.cpp 62 UnicodeString id; local
63 key.currentID(id);
64 return supported->get(id) != NULL;
77 const UnicodeString& id = *((const UnicodeString*)elem->key.pointer); local
79 result.remove(id);
81 result.put(id, (void*)this, status); // this is dummy non-void marker used for set semantics
91 LocaleKeyFactory::getDisplayName(const UnicodeString& id, const Locale& locale, UnicodeString& result) const {
94 // assume if this is called on us, we support some fallback of this id
95 // if (isSupportedID(id, status)) {
97 LocaleUtility::initLocaleFromName(id, loc)
    [all...]
  /external/icu/icu4c/source/i18n/
wintzimpl.cpp 118 UnicodeString id = UnicodeString(icuid, length); local
119 TimeZone *tz = TimeZone::createTimeZone(id);
  /external/icu/icu4c/source/layout/
IndicRearrangementProcessor.cpp 73 le_int32 ia, ib, ic, id, ix, x; local
99 id = glyphStorage.getCharIndex(lastGlyph, success);
110 glyphStorage.setCharIndex(firstGlyph, id, success);
116 id = glyphStorage.getCharIndex(lastGlyph, success);
121 glyphStorage.setCharIndex(firstGlyph, id, success);
171 id = glyphStorage.getCharIndex(lastGlyph, success);
185 glyphStorage.setCharIndex(firstGlyph + 1, id, success);
192 id = glyphStorage.getCharIndex(lastGlyph, success);
205 glyphStorage.setCharIndex(firstGlyph, id, success);
215 id = glyphStorage.getCharIndex(lastGlyph, success)
    [all...]
  /external/iproute2/ip/
iplink_vlan.c 24 "Usage: ... vlan [ protocol VLANPROTO ] id VLANID"
87 __u16 id, proto; local
95 } else if (matches(*argv, "id") == 0) {
97 if (get_u16(&id, *argv, 0))
98 invarg("id is invalid", *argv);
99 addattr_l(n, 1024, IFLA_VLAN_ID, &id, 2);
220 fprintf(f, "id %u ", rta_getattr_u16(tb[IFLA_VLAN_ID]));
241 .id = "vlan",
ipmroute.c 198 char *id = NULL; local
222 invarg("table id value is invalid\n", *argv);
228 id = *argv;
245 if (id) {
248 if ((idx = ll_name_to_index(id)) == 0) {
249 fprintf(stderr, "Cannot find device \"%s\"\n", id);
  /external/iproute2/tc/
tc_util.h 24 const char *id; member in struct:qdisc_util
36 char id[16]; member in struct:filter_util
44 char id[16]; member in struct:action_util
53 char id[16]; member in struct:exec_util
  /external/iproute2/tipc/
msg.c 37 int *id = data; local
43 *id = mnl_attr_get_u16(tb[CTRL_ATTR_FAMILY_ID]);
158 "Unable to get TIPC nl family id (module loaded?)\n");
  /external/ipsec-tools/src/racoon/
localconf.c 136 char *id; local
139 id = racoon_calloc(1, 1 + id0->l - sizeof(struct ipsecdoi_id_b));
140 if (id == NULL) {
145 memcpy(id, id0->v + sizeof(struct ipsecdoi_id_b),
147 id[id0->l - sizeof(struct ipsecdoi_id_b)] = '\0';
149 key = privsep_getpsk(id, id0->l - sizeof(struct ipsecdoi_id_b));
152 if (id)
153 racoon_free(id);
  /external/iptables/extensions/
libip6t_hbh.c 26 {.name = "hbh-len", .id = O_HBH_LEN, .type = XTTYPE_UINT32,
29 {.name = "hbh-opts", .id = O_HBH_OPTS, .type = XTTYPE_STRING},
36 unsigned long int id; local
39 id = strtoul(idstr,&ep,0) ;
45 if ( id == ULONG_MAX && errno == ERANGE ) {
54 return id;
107 switch (cb->entry->id) {
libxt_devgroup.c 27 {.name = "src-group", .id = O_SRC_GROUP, .type = XTTYPE_STRING,
29 {.name = "dst-group", .id = O_DST_GROUP, .type = XTTYPE_STRING,
73 unsigned int id, mask; local
76 switch (cb->entry->id) {
78 devgroup_parse_groupspec(cb->arg, &id, &mask);
79 info->src_group = id;
86 devgroup_parse_groupspec(cb->arg, &id, &mask);
87 info->dst_group = id;
97 print_devgroup(unsigned int id, unsigned int mask, int numeric)
102 printf("0x%x/0x%x", id, mask)
    [all...]
  /external/jacoco/org.jacoco.core/src/org/jacoco/core/data/
ExecutionData.java 25 private final long id; field in class:ExecutionData
34 * @param id
41 public ExecutionData(final long id, final String name,
43 this.id = id;
52 * @param id
59 public ExecutionData(final long id, final String name, final int probeCount) {
60 this.id = id;
72 return id;
    [all...]
ExecutionDataReader.java 95 * Reads a block of data identified by the given id. Subclasses may
136 final String id = in.readUTF(); local
139 sessionInfoVisitor.visitSessionInfo(new SessionInfo(id, start, dump));
146 final long id = in.readLong(); local
149 executionDataVisitor.visitClassExecution(new ExecutionData(id, name,
  /external/jacoco/org.jacoco.core/src/org/jacoco/core/internal/analysis/
ClassCoverageImpl.java 25 private final long id; field in class:ClassCoverageImpl
38 * @param id
41 * <code>true</code>, if class id does not match with execution
50 public ClassCoverageImpl(final String name, final long id,
54 this.id = id;
92 return id;
  /external/jemalloc/test/unit/
ql.c 11 char id; member in struct:list_s
52 entries[i].id = 'a' + i;
63 assert_c_eq(ql_first(head)->id, entries[0].id, "Element id mismatch");
64 assert_c_eq(ql_last(head, link)->id, entries[nentries-1].id,
65 "Element id mismatch");
69 assert_c_eq(t->id, entries[i].id, "Element id mismatch")
    [all...]
  /external/jmdns/src/javax/jmdns/impl/tasks/
DNSTask.java 86 int id = newOut.getId(); local
89 newOut.setId(id);
118 int id = newOut.getId(); local
121 newOut.setId(id);
149 int id = newOut.getId(); local
152 newOut.setId(id);
179 int id = newOut.getId(); local
182 newOut.setId(id);
211 int id = newOut.getId(); local
214 newOut.setId(id);
    [all...]
  /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/kernel-headers/original/uapi/linux/
virtio_console.h 62 __virtio32 id; /* Port number */ member in struct:virtio_console_control
  /external/libavc/common/
ih264_buf_mgr.c 239 WORD32 id; local
255 for(id = 0; id < BUF_MGR_MAX_CNT; id++)
257 ps_buf_mgr->au4_status[id] = 0;
258 ps_buf_mgr->apv_ptr[id] = NULL;
297 /* Check if buffer ID is within allowed range */
306 /* Check if the current ID is being used to hold some other buffer */
338 * Pointer to the id of the free buffer
349 WORD32 id; local
396 WORD32 id; local
641 WORD32 id; local
    [all...]
  /external/libcap-ng/libcap-ng-0.7/utils/
pscap.c 136 int id; local
138 &id, &euid);
  /external/libchrome/base/task/
cancelable_task_tracker.cc 96 TaskId id = next_id_; local
100 Bind(&CancelableTaskTracker::Untrack, weak_factory_.GetWeakPtr(), id);
112 Track(id, flag);
113 return id;
121 TaskId id = next_id_; local
129 Bind(&CancelableTaskTracker::Untrack, weak_factory_.GetWeakPtr(), id),
141 Track(id, flag);
142 return id;
145 void CancelableTaskTracker::TryCancel(TaskId id) {
148 hash_map<TaskId, CancellationFlag*>::const_iterator it = task_flags_.find(id);
    [all...]
  /external/libchrome/sandbox/win/src/
interception_internal.h 34 InterceptorId id; member in struct:sandbox::FunctionInfo
  /external/libcxx/src/
mutex.cpp 168 pthread_t id = pthread_self(); local
170 if (pthread_equal(id, __id_))
180 __id_ = id;
186 pthread_t id = pthread_self(); variable
188 if (lk.owns_lock() && (__count_ == 0 || pthread_equal(id, __id_)))
193 __id_ = id;
  /external/libcxx/test/std/algorithms/alg.modifying.operations/alg.unique/
unique.pass.cpp 49 int id[] = {0, 0, 1}; local
50 const unsigned sd = sizeof(id)/sizeof(id[0]);
51 r = std::unique(Iter(id), Iter(id+sd));
52 assert(base(r) == id + 2);
53 assert(id[0] == 0);
54 assert(id[1] == 1);
122 Ptr id[3]; local
123 id[2].reset(&one)
    [all...]
unique_copy.pass.cpp 51 const int id[] = {0, 0, 1}; local
52 const unsigned sd = sizeof(id)/sizeof(id[0]);
54 r = std::unique_copy(InIter(id), InIter(id+sd), OutIter(jd));

Completed in 1756 milliseconds

<<21222324252627282930>>