HomeSort by relevance Sort by last modified time
    Searched refs:primary (Results 1 - 25 of 197) sorted by null

1 2 3 4 5 6 7 8

  /external/webkit/Source/WebCore/html/
DataGridColumn.cpp 36 void DataGridColumn::setPrimary(bool primary)
38 if (m_primary != primary) {
39 m_primary = primary;
HTMLDataGridColElement.idl 37 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)
DataGridColumn.h 42 static PassRefPtr<DataGridColumn> create(const String& columnID, const String& label, const String& type, bool primary, unsigned short sortable)
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)
88 , m_primary(primary)
DataGridColumn.idl 45 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)
DataGridColumnList.cpp 65 DataGridColumn* DataGridColumnList::add(const String& id, const String& label, const String& type, bool primary, unsigned short sortable)
67 return add(DataGridColumn::create(id, label, type, primary, sortable).get());
72 if (column->primary())
116 if (col->primary())
HTMLDataGridColElement.cpp 63 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)
150 setAttribute(primaryAttr, primary ? "" : 0);
165 column()->setPrimary(primary());
HTMLDataGridColElement.h 54 bool primary() const;
  /external/bison/lib/
fd-hook.h 48 execute_close_hooks (REMAINING_LIST, PRIMARY, FD) as a fallback. */
50 gl_close_fn primary,
53 execute_ioctl_hooks (REMAINING_LIST, PRIMARY, FD, REQUEST, ARG) as a
56 gl_ioctl_fn primary,
62 execute_close_hooks (REMAINING_LIST, PRIMARY, FD)
65 and PRIMARY is the "primary" method for close(). */
67 gl_close_fn primary,
70 /* Execute the close hooks in REMAINING_LIST, with PRIMARY as "primary" method
    [all...]
fd-hook.c 34 execute_close_hooks (const struct fd_hook *remaining_list, gl_close_fn primary,
39 return primary (fd);
42 primary, fd);
46 execute_all_close_hooks (gl_close_fn primary, int fd)
48 return execute_close_hooks (anchor.private_next, primary, fd);
52 execute_ioctl_hooks (const struct fd_hook *remaining_list, gl_ioctl_fn primary,
57 return primary (fd, request, arg);
60 primary, fd, request, arg);
64 execute_all_ioctl_hooks (gl_ioctl_fn primary,
67 return execute_ioctl_hooks (anchor.private_next, primary, fd, request, arg)
    [all...]
  /hardware/libhardware_legacy/audio/
audio_policy.conf 17 # For instance, "primary" corresponds to audio.primary.<device>.so.
18 # The "primary" module is mandatory and must include at least one output with
27 primary {
29 primary {
38 primary {
  /device/asus/grouper/
audio_policy.conf 13 # For instance, "primary" corresponds to audio.primary.<device>.so.
14 # The "primary" module is mandatory and must include at least one output with
23 primary {
25 primary {
34 primary {
  /device/ti/panda/audio/
audio_policy.conf 13 # for instance, "primary" corresponds to audio.primary.<device>.so.
14 # the "primary" module is mandatory and must include at least one output with
23 primary {
25 primary {
34 primary {
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/common/layout/
DialerFilterRule.java 49 INode primary = node.appendChild(FQCN_EDIT_TEXT); local
50 primary.setAttribute(ANDROID_URI, ATTR_TEXT, "Primary");
51 primary.setAttribute(ANDROID_URI, ATTR_ID, "@android:id/primary"); //$NON-NLS-1$
52 primary.setAttribute(ANDROID_URI, ATTR_LAYOUT_BELOW,
54 primary.setAttribute(ANDROID_URI, ATTR_LAYOUT_WIDTH, fillParent);
  /dalvik/dx/src/com/android/dx/cf/code/
LocalsArraySet.java 40 * The primary LocalsArray represents the locals as seen from
44 private final OneLocalsArray primary; field in class:LocalsArraySet
61 primary = new OneLocalsArray(maxLocals);
66 * Constructs an instance with the specified primary and secondaries set.
68 * @param primary {@code non-null;} primary locals to use
72 public LocalsArraySet(OneLocalsArray primary,
74 super(primary.getMaxLocals() > 0);
76 this.primary = primary;
    [all...]
  /device/generic/goldfish/audio/
Android.mk 20 LOCAL_MODULE := audio.primary.goldfish
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/properties/
XmlPropertyComposite.java 40 public XmlPropertyComposite(XmlProperty primary, XmlProperty[] properties) {
42 primary.getEditor(),
43 primary.getFactory(),
44 primary.getNode(),
45 primary.getDescriptor());
  /device/asus/flo/
audio_policy.conf 13 # For instance, "primary" corresponds to audio.primary.<device>.so.
14 # The "primary" module is mandatory and must include at least one output with
23 primary {
25 primary {
48 primary {
  /device/samsung/manta/
audio_policy.conf 13 # For instance, "primary" corresponds to audio.primary.<device>.so.
14 # The "primary" module is mandatory and must include at least one output with
23 primary {
25 primary {
48 primary {
  /device/samsung/tuna/audio/
audio_policy.conf 13 # For instance, "primary" corresponds to audio.primary.<device>.so.
14 # The "primary" module is mandatory and must include at least one output with
23 primary {
25 primary {
48 primary {
  /external/llvm/examples/OCaml-Kaleidoscope/Chapter2/
token.ml 11 (* primary *)
  /external/llvm/examples/OCaml-Kaleidoscope/Chapter3/
token.ml 11 (* primary *)
  /external/llvm/examples/OCaml-Kaleidoscope/Chapter4/
token.ml 11 (* primary *)
  /external/smack/src/org/jivesoftware/smackx/filetransfer/
FaultTolerantNegotiator.java 39 * 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,
53 this.primaryNegotiator = primary;
155 String[] primary = primaryNegotiator.getNamespaces(); local
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);
  /device/lge/mako/
audio_policy.conf 13 # For instance, "primary" corresponds to audio.primary.<device>.so.
14 # The "primary" module is mandatory and must include at least one output with
23 primary {
25 primary {
48 primary {
  /build/target/board/generic_x86/
device.mk 31 audio.primary.goldfish

Completed in 1851 milliseconds

1 2 3 4 5 6 7 8