Searched defs:primary (Results 1 - 25 of 44) sorted by relevance

12

/external/webkit/Source/WebCore/html/
H A DDataGridColumn.cpp36 void DataGridColumn::setPrimary(bool primary) argument
38 if (m_primary != primary) {
39 m_primary = primary;
H A DDataGridColumnList.cpp65 DataGridColumn* DataGridColumnList::add(const String& id, const String& label, const String& type, bool primary, unsigned short sortable) argument
67 return add(DataGridColumn::create(id, label, type, primary, sortable).get());
72 if (column->primary())
116 if (col->primary())
H A DHTMLDataGridColElement.cpp63 m_column = DataGridColumn::create(getIdAttribute(), label(), type(), primary(), sortable());
143 bool HTMLDataGridColElement::primary() const function in class:WebCore::HTMLDataGridColElement
148 void HTMLDataGridColElement::setPrimary(bool primary) argument
150 setAttribute(primaryAttr, primary ? "" : 0);
165 column()->setPrimary(primary());
H A DDataGridColumn.h42 static PassRefPtr<DataGridColumn> create(const String& columnID, const String& label, const String& type, bool primary, unsigned short sortable) argument
44 return adoptRef(new DataGridColumn(columnID, label, type, primary, sortable));
62 bool primary() const { return m_primary; } function in class:WebCore::DataGridColumn
83 DataGridColumn(const String& columnID, const String& label, const String& type, bool primary, unsigned short sortable) argument
88 , m_primary(primary)
/external/smack/src/org/xbill/DNS/tests/
H A Dprimary.java8 public class primary { class
12 System.out.println("usage: primary [-t] [-a | -i] origin file");
/external/libsepol/tests/
H A Dtest-linker-types.c36 * - primary is set correctly
63 * - alias in base of primary type in base, no modules
64 * - alias in base optional of primary type in base, no modules
65 * - alias in base optional of primary type in base optional
66 * - alias in module of primary type in base
67 * - alias in module optional of primary type in base
68 * - alias in module optional of primary type in base optional
69 * - alias in module of primary type in module
70 * - alias in module optional of primary type in module
71 * - alias in module optional of primary typ
100 test_type_datum(policydb_t * p, char *id, unsigned int *decls, int len, unsigned int primary) argument
[all...]
H A Dtest-common.c91 if (!d->primary)
152 type_datum_t *type, *primary; local
156 primary = hashtab_search(p->p_types.table, primary_id);
159 CU_ASSERT_PTR_NOT_NULL(primary);
161 if (type && primary) {
170 my_value = primary->s.value;
172 my_primary = primary->s.value;
173 CU_ASSERT_NOT_EQUAL(type->s.value, primary->s.value);
179 CU_ASSERT(type->primary == my_primary);
242 CU_ASSERT(attr->primary
[all...]
/external/bison/lib/
H A Dfd-hook.c34 execute_close_hooks (const struct fd_hook *remaining_list, gl_close_fn primary, argument
39 return primary (fd);
42 primary, fd);
46 execute_all_close_hooks (gl_close_fn primary, int fd) argument
48 return execute_close_hooks (anchor.private_next, primary, fd);
52 execute_ioctl_hooks (const struct fd_hook *remaining_list, gl_ioctl_fn primary, argument
57 return primary (fd, request, arg);
60 primary, fd, request, arg);
64 execute_all_ioctl_hooks (gl_ioctl_fn primary, argument
67 return execute_ioctl_hooks (anchor.private_next, primary, f
[all...]
/external/guava/guava/src/com/google/common/collect/
H A DCompoundOrdering.java30 CompoundOrdering(Comparator<? super T> primary, argument
33 = ImmutableList.<Comparator<? super T>>of(primary, secondary);
/external/qemu/distrib/sdl-1.2.15/src/video/directfb/
H A DSDL_DirectFB_yuv.c57 /* we don't want the primary */
257 IDirectFBDisplayLayer *primary = HIDDEN->layer; local
260 primary->GetConfiguration (primary, &conf);
/external/smack/src/org/jivesoftware/smackx/filetransfer/
H A DFaultTolerantNegotiator.java39 * The fault tolerant negotiator takes two stream negotiators, the primary and the secondary
40 * negotiator. If the primary negotiator fails during the stream negotiaton process, the second
51 public FaultTolerantNegotiator(Connection connection, StreamNegotiator primary, argument
53 this.primaryNegotiator = primary;
155 String[] primary = primaryNegotiator.getNamespaces();
158 String[] namespaces = new String[primary.length + secondary.length];
159 System.arraycopy(primary, 0, namespaces, 0, primary.length);
160 System.arraycopy(secondary, 0, namespaces, primary.length, secondary.length);
/external/apache-http/src/org/apache/commons/codec/language/
H A DDoubleMetaphone.java1032 private StringBuffer primary = new StringBuffer(getMaxCodeLen()); field in class:DoubleMetaphone.DoubleMetaphoneResult
1045 public void append(char primary, char alternate) { argument
1046 appendPrimary(primary);
1051 if (this.primary.length() < this.maxLength) {
1052 this.primary.append(value);
1067 public void append(String primary, String alternate) { argument
1068 appendPrimary(primary);
1073 int addChars = this.maxLength - this.primary.length();
1075 this.primary.append(value);
1077 this.primary
[all...]
/external/icu4c/i18n/
H A Ducoleitr.cpp248 uint64_t primary = 0, secondary = 0, tertiary = 0, quaternary = 0; local
263 primary = ucol_primaryOrder(ce);
267 // **** That means that we need 24 bits for the primary ****
273 // **** the primary is... ****
274 if ((elems->pce->toShift && elems->pce->variableTop > ce && primary != 0)
275 || (elems->pce->isShifted && primary == 0)) {
277 if (primary == 0) {
282 quaternary = primary;
285 primary = secondary = tertiary = 0;
295 return primary << 4
[all...]
H A Ducol_tok.cpp158 /* primary ignorable). */
286 U_STRING_DECL(suboption_11, "primary", 7);
320 [last primary ignorable] largest CE for primary ignorable
458 U_STRING_INIT(suboption_11, "primary", 7);
1575 uint32_t primary = (baseCE & UCOL_PRIMARYMASK) | ((baseContCE & UCOL_PRIMARYMASK) >> 16); local
1576 uint32_t raw = uprv_uca_getRawFromImplicit(primary);
1615 // if it's a bigger difference (we asked for secondary and got primary), we
1642 // before a is a primary difference.
1927 if(sourceToken->strength == UCOL_PRIMARY) { /* primary strengt
2023 uint32_t primary = (baseCE & UCOL_PRIMARYMASK) | ((baseContCE & UCOL_PRIMARYMASK) >> 16); local
[all...]
/external/dnsmasq/src/
H A Ddhcp.c22 struct in_addr relay, primary; member in struct:iface_param
238 parm.primary = iface_addr;
416 context->local = param->primary;
938 /* use primary (first) address */
/external/checkpolicy/
H A Dmodule_compiler.c307 type_datum_t *declare_type(unsigned char primary, unsigned char isattr) argument
333 typdatum->primary = primary;
338 if (typdatum->primary) {
535 dest_typdatum->primary = 1;
953 type->primary = 1;
/external/qemu/distrib/sdl-1.2.15/src/video/windib/
H A DSDL_dibvideo.c1347 RECT primary; member in struct:__anon11557
1360 data->primary = mrect[0];
1389 int primary_w = data.primary.right - data.primary.left;
1390 int primary_h = data.primary.bottom - data.primary.top;
1392 new_x = data.primary.left + (primary_w - this->screen->w)/2;
1393 new_y = data.primary.top + (primary_h - this->screen->h)/2;
1429 RECT primary; member in struct:__anon11558
1446 data->primary
[all...]
/external/v8/src/
H A Dstub-cache.cc77 // Compute the primary entry.
79 Entry* primary = entry(primary_, primary_offset); local
80 Code* old_code = primary->value;
82 // If the primary entry has useful data in it, we retire it to the
85 Map* old_map = primary->map;
87 int seed = PrimaryOffset(primary->key, old_flags, old_map);
88 int secondary_offset = SecondaryOffset(primary->key, old_flags, seed);
90 *secondary = *primary;
93 // Update primary cache.
94 primary
[all...]
/external/icu4c/test/cintltst/
H A Dcitertst.c1098 getSingleCEValue(char *primary, char *secondary, char *tertiary, argument
1106 char *primend = primary+4;
1113 if (uprv_strlen(primary) > 4) {
1128 primvalue = (*primary!='\0')?uprv_strtoul(primary, &primend, 16):0;
1165 char primary[100]; local
1180 primarycount = readElement(&pStartCP, primary, ',', status);
1185 ces[count ++] = getSingleCEValue(primary, secondary, tertiary, status);
1194 value |= ((hex2num(*(primary + 4 * CEi)) & 0xF) << 28);
1195 value |= ((hex2num(*(primary
1543 uint32_t primary, p1, p2, secondary, tertiary; local
[all...]
/external/mdnsresponder/mDNSShared/
H A Ddnssd_clientstub.c121 // When using kDNSServiceFlagsShareConnection, there is one primary _DNSServiceOp_t, and zero or more subordinates
122 // For the primary, the 'next' field points to the first subordinate, and its 'next' field points to the next, and so on.
123 // For the primary, the 'primary' field is NULL; for subordinates the 'primary' field points back to the associated primary
130 DNSServiceOp *primary; // For shared connection member in struct:_DNSServiceRef_t
315 * non-zero for calls that can't receive an immediate error return value on their primary
391 x->primary = NULL;
435 if (!DNSServiceRefValid(*ref) || (*ref)->op != connection_request || (*ref)->primary)
[all...]
H A Duds_daemon.c133 request_state *primary; // If this operation is on a shared socket, pointer to primary member in struct:request_state
140 // Note: On a shared connection these fields in the primary structure, including hdr, are re-used
321 // Now, if this request_state is not subordinate to some other primary, close file descriptor and discard replies
322 if (!req->primary)
386 // If our request is sharing a connection, then we append our reply_state onto the primary's list
389 request_state *r = req->primary ? req->primary : req;
944 if ((*req)->primary == request)
948 if (tmp->primary
[all...]
/external/kernel-headers/original/linux/
H A Dpci.h238 unsigned char primary; /* number of primary bridge */ member in struct:pci_bus
/external/libsepol/include/sepol/policydb/
H A Dpolicydb.h169 uint32_t primary; /* primary name? can be set to primary value if below is TYPE_ */ member in struct:type_datum
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
H A Dorg.eclipse.update.configurator_3.3.100.v20100512.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...
H A Dorg.apache.commons.codec_1.3.0.v20100518-1140.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...

Completed in 2294 milliseconds

12