OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:collapsible
(Results
1 - 25
of
44
) sorted by null
1
2
/external/chromium_org/third_party/WebKit/Source/core/xml/
XMLViewer.js
138
var
collapsible
= createCollapsible();
140
collapsible
.expanded.start.appendChild(createTag(node, false, false));
142
nodeParentPairs.push({parentElement:
collapsible
.expanded.content, node: child});
143
collapsible
.expanded.end.appendChild(createTag(node, true, false));
145
collapsible
.collapsed.content.appendChild(createTag(node, false, false));
146
collapsible
.collapsed.content.appendChild(createText('...'));
147
collapsible
.collapsed.content.appendChild(createTag(node, true, false));
148
parentElement.appendChild(
collapsible
);
158
var
collapsible
= createCollapsible();
160
collapsible
.expanded.start.appendChild(createComment('<!--'))
[
all
...]
XMLViewer.css
35
div.
collapsible
> div.hidden {
50
.
collapsible
-content {
/packages/apps/UnifiedEmail/res/raw/
template_message.html
3
<div class="mail-message-content
collapsible
zoom-normal %s" style="display: %s; margin: 16px 0;">%s</div>
4
<div class="mail-message-footer spacer
collapsible
" style="display: %s; height: %spx;"></div>
/packages/experimental/LoaderApp/src/com/android/loaderapp/model/
Collapser.java
24
*
collapsible
should implement the
Collapsible
interface. The class also contains a utility
39
public interface
Collapsible
<T> {
45
* Collapses a list of
Collapsible
items into a list of collapsed items. Items are collapsed
46
* if {@link
Collapsible
#shouldCollapseWith(Object) return strue, and are collapsed
47
* through the {@Link
Collapsible
#collapseWith(Object)} function implemented by the data item.
49
* @param list ArrayList of Objects of type <T extends
Collapsible
<T>> to be collapsed.
51
public static <T extends
Collapsible
<T>> void collapseList(ArrayList<T> list) {
/packages/apps/ContactsCommon/src/com/android/contacts/common/
Collapser.java
24
*
collapsible
should implement the
Collapsible
interface. The class also contains a utility
45
public interface
Collapsible
<T> {
51
* Collapses a list of
Collapsible
items into a list of collapsed items. Items are collapsed
52
* if {@link
Collapsible
#shouldCollapseWith(Object)} returns true, and are collapsed
53
* through the {@Link
Collapsible
#collapseWith(Object)} function implemented by the data item.
55
* @param list List of Objects of type <T extends
Collapsible
<T>> to be collapsed.
57
public static <T extends
Collapsible
<T>> void collapseList(List<T> list) {
/packages/apps/UnifiedEmail/res/values-sw600dp-land/
constants.xml
18
<!-- Whether the list is
collapsible
in conversation view mode -->
/external/chromium_org/chrome/browser/resources/print_preview/
print_preview_animations.js
128
var toAnimate = el.querySelectorAll('.
collapsible
');
146
var toAnimate = el.querySelectorAll('.
collapsible
');
161
if (!div || !div.classList.contains('
collapsible
')) {
169
div.classList.add('
collapsible
');
print_preview.css
176
.
collapsible
{
180
.
collapsible
.visible {
186
.
collapsible
.closing {
/external/chromium/chrome/common/extensions/docs/css/
ApiRefStyles.css
889
#gc-
collapsible
{
902
.labs #gc-
collapsible
{
906
.depr #gc-
collapsible
{
910
#gc-
collapsible
.hover {
916
.labs #gc-
collapsible
.hover {
920
.depr #gc-
collapsible
.hover {
924
#gc-
collapsible
-arrow {
934
#gc-
collapsible
-arrow.collapsed {
1205
img.
collapsible
-control {
1213
img.
collapsible
-control.collapsible-plus
[
all
...]
/packages/apps/Contacts/src/com/android/contacts/quickcontact/
Action.java
29
public interface Action extends Collapser.
Collapsible
<Action> {
/frameworks/base/docs/html/google/gcm/
adv.jd
26
<li><a href="#
collapsible
">Send-to-Sync vs. Messages with Payload</a>
61
scheme. Messages are throttled on a per application and per <a href="#
collapsible
">collapse
62
key</a> basis (including non-
collapsible
messages). Each application
191
<h2 id="
collapsible
">Send-to-Sync vs. Messages with Payload</h2>
199
<p>But despite these similarities, messages can behave very differently depending on their particular settings. One major distinction between messages is whether they are collapsed (where each new message replaces the preceding message) or not collapsed (where each individual message is delivered). Every message sent in GCM is either a "send-to-sync" (
collapsible
) message or a "message with payload" (non-
collapsible
message). These concepts are described in more detail in the following sections.</p>
203
<p>A send-to-sync (
collapsible
) message is often a "tickle" that tells a mobile application to sync data from the server. For example, suppose you have an email application. When a user receives new email on the server, the server pings the mobile application with a "New mail" message. This tells the application to sync to the server to pick up the new email. The server might send this message multiple times as new mail continues to accumulate, before the application has had a chance to sync. But if the user has received 25 new emails, there's no need to preserve every "New mail" message. One is sufficient. Another example would be a sports application that updates users with the latest score. Only the most recent message is relevant, so it makes sense to have each new message replace the preceding message. </p>
209
<p>Unlike a send-to-sync message, every "message with payload" (non-
collapsible
message) is delivered. The payload the message contains can be up to 4kb. For example, here is a JSON-formatted message in an IM application in which spectators are discussing a sporting event:</p>
220
<p>A "message with payload" is not simply a "ping" to the mobile application to contact the server to fetch data. In the aforementioned IM application, for example, you would want to deliver every message, because every message has different content. To specify a non-
collapsible
message, you simply omit the <code>collapse_key</code> parameter. Thus GCM will send each message individually. Note that the order of delivery is not guaranteed.</p>
221
<p>GCM will store up to 100 non-
collapsible
messages. After that, all messages are discarded from GCM, and a new message is created that tells (…)
[
all
...]
index.jd
33
<p>A send-to-sync (
collapsible
) message is often a "tickle" that tells a mobile application to sync data from the server. For example, suppose you have an email application. When a user receives new email on the server, the server pings the mobile application with a "New mail" message. This tells the application to sync to the server to pick up the new email.
38
<p>Unlike a send-to-sync message, every "message with payload" (non-
collapsible
message) is delivered. The payload the message contains can be up to 4kb.
c2dm.jd
73
<dd>Apps can use "messages with payload" to deliver messages of up to 4 Kb. This would be useful in a chat application, for example. To use this feature, simply omit the <code>collapse_key</code> parameter and messages will not be collapsed. GCM will store up to 100 messages. If you exceed that number, all messages will be discarded but you will receive a special message. If an application receives this message, it needs to sync with the server. For more information, see <a href="adv.html#
collapsible
">Advanced Topics</a>.</dd>
/external/chromium_org/chrome/browser/ui/views/location_bar/
location_bar_layout.h
58
// non-
collapsible
and non-resizable decorations.
/cts/suite/cts/deviceTests/browserbench/assets/octane/js/
bootstrap-collapse.js
123
/*
COLLAPSIBLE
PLUGIN DEFINITION
143
/*
COLLAPSIBLE
DATA-API
/development/samples/ApiDemos/
_index.html
30
<li><a href="src/com/example/android/apis/view/SearchViewActionBar.html">
Collapsible
action
/external/clang/www/analyzer/
content.css
102
/* Collapsing Trees: http://dbtree.megalingo.com/web/demo/simple-
collapsible
-tree.cfm */
/frameworks/base/docs/html/design/patterns/
navigation-drawer.jd
151
Collapsible
navigation items are split. Use the left side for navigation and the right
156
<h4>
Collapsible
navigation items</h4>
162
<p> At launch, the initial state of the
collapsible
items is up to you. As a rule, all
163
top-level view entries of the navigation drawer should be visible. If you have many
collapsible
/packages/apps/UnifiedEmail/res/values/
constants.xml
58
<!-- Whether the list is
collapsible
in conversation view mode -->
/packages/apps/Dialer/src/com/android/dialer/interactions/
PhoneNumberInteraction.java
52
import com.android.contacts.common.Collapser.
Collapsible
;
80
/* package */ static class PhoneItem implements Parcelable,
Collapsible
<PhoneItem> {
/frameworks/support/v7/appcompat/src/android/support/v7/internal/view/menu/
MenuItemWrapperICS.java
255
// If the inflated Action View is support-
collapsible
, wrap it
/frameworks/base/docs/html/training/design-navigation/
multiple-sizes.jd
86
<p>A variation on the stretch strategy is to collapse the contents of the left pane when in portrait. This works quite well with master/detail panes where the left (master) pane contains easily
collapsible
list items. An example would be for a realtime chat application. In landscape, the left list could contain chat contact photos, names, and online statuses. In portrait, horizontal space could be collapsed by hiding contact names and only showing photos and online status indicator icons. Optionally also provide an expand control that allows the user to expand the left pane content to its larger width and vice versa.</p></li>
/frameworks/base/docs/html/training/search/
setup.jd
34
when there is room, or as a
collapsible
action, which displays the {@link
/frameworks/ex/common/java/com/android/common/widget/
GroupingListAdapter.java
32
* child. Groups are
collapsible
and collapsed by default.
/packages/experimental/LoaderApp/src/com/android/loaderapp/fragments/
ContactFragment.java
26
import com.android.loaderapp.model.Collapser.
Collapsible
;
528
public static class ViewEntry extends ContactEntryAdapter.Entry implements
Collapsible
<ViewEntry> {
Completed in 2362 milliseconds
1
2