Searched refs:primary (Results 1 - 25 of 85) sorted by relevance

1234

/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 DHTMLDataGridColElement.idl37 attribute boolean primary; // Whether or not this is the primary column of the tree (this will be where the disclosure triangle and connecting tree lines will display)
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)
H A DDataGridColumn.idl45 attribute boolean primary; // Whether or not this is the primary column of the tree (this will be where the disclosure triangle and connecting tree lines will display)
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 DDataGridColumnList.idl39 DataGridColumn add(in DOMString id, in DOMString label, in DOMString type, in boolean primary, in unsigned short sortable);
H A DHTMLDataGridColElement.h54 bool primary() const;
H A DDataGridColumnList.h36 DataGridColumn* add(const String& id, const String& label, const String& type, bool primary, unsigned short sortable);
/external/llvm/examples/OCaml-Kaleidoscope/Chapter2/
H A Dtoken.ml11 (* primary *)
H A Dparser.ml12 (* primary
50 * ::= ('+' primary)* *)
63 (* Parse the primary expression after the binary operator. *)
86 * ::= primary binoprhs *)
/external/llvm/examples/OCaml-Kaleidoscope/Chapter3/
H A Dtoken.ml11 (* primary *)
H A Dparser.ml12 (* primary
50 * ::= ('+' primary)* *)
63 (* Parse the primary expression after the binary operator. *)
86 * ::= primary binoprhs *)
/external/llvm/examples/OCaml-Kaleidoscope/Chapter4/
H A Dtoken.ml11 (* primary *)
H A Dparser.ml12 (* primary
50 * ::= ('+' primary)* *)
63 (* Parse the primary expression after the binary operator. *)
86 * ::= primary binoprhs *)
/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/llvm/examples/OCaml-Kaleidoscope/Chapter5/
H A Dtoken.ml11 (* primary *)
/external/llvm/examples/OCaml-Kaleidoscope/Chapter6/
H A Dtoken.ml11 (* primary *)
/external/llvm/examples/OCaml-Kaleidoscope/Chapter7/
H A Dtoken.ml11 (* primary *)
/external/libsepol/tests/
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...]
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...]
/external/antlr/antlr-3.4/runtime/Perl5/tools/
H A Dport.pl190 The primary language target for ANTLR is Java. The Perl 5 port only follows
191 this primary target language. This brings up the problem to follow the
192 changes made to the primary target, by knowing I<what> has changed and I<how>.
197 primary files have changed (C<port status>). The revision control software
/external/antlr/antlr-3.4/runtime/Ruby/test/functional/ast-output/
H A Dconstruction.rb214 : (primary->primary) // set return tree to just primary
219 | '.' p=primary
245 : primary^
249 : ids+=primary! (','! ids+=primary!)* {$res = $ids.map { |id| id.text }}
253 : ids+=primary (','! ids+=primary)*
291 : t=primary
[all...]
/external/checkpolicy/
H A Dmodule_compiler.h34 type_datum_t *declare_type(unsigned char primary, unsigned char isattr);
/external/dexmaker/src/dx/java/com/android/dx/dex/code/
H A DStdCatchBuilder.java220 int primary = block.getPrimarySuccessor();
228 if (((primary == -1) && (succSize != catchSize))
229 || ((primary != -1) &&
231 || (primary != successors.get(catchSize))))) {
233 * Blocks that throw are supposed to list their primary

Completed in 254 milliseconds

1234