/external/guava/guava-gwt/src-super/com/google/common/base/super/com/google/common/base/ |
Splitter.java | 39 * <p>Here is the most basic example of {@code Splitter} usage: <pre> {@code 41 * Splitter.on(',').split("foo,bar")}</pre> 46 * <p>By default {@code Splitter}'s behavior is very simplistic: <pre> {@code 48 * Splitter.on(',').split("foo,,bar, quux")}</pre> 51 * Notice that the splitter does not assume that you want empty strings removed, 55 * private static final Splitter MY_SPLITTER = Splitter.on(',') 66 * <p><b>Warning: splitter instances are always immutable</b>; a configuration 68 * is invoked on! You must store and use the new splitter instance returned by 73 * Splitter splitter = Splitter.on('/') [all...] |
/external/chromium/chrome/browser/resources/shared/js/cr/ui/table/ |
table_splitter.js | 6 * @fileoverview This implements a splitter element which can be used to resize 9 * Each splitter is associated with certain column and resizes it when dragged. 14 const Splitter = cr.ui.Splitter; 17 * Creates a new table splitter element. 20 * @extends {Splitter} 25 __proto__: Splitter.prototype, 35 Splitter.prototype.decorate.call(this); 37 this.classList.add('table-header-splitter'); 41 * Handles start of the splitter dragging [all...] |
table_header.js | 101 // splitter should use CSS for background image. 102 var splitter = new TableSplitter({table: this.table_}); 103 splitter.columnIndex = i; 107 splitter.style.left = rtl ? 100 - leftPercent + '%' : leftPercent + '%'; 109 this.headerInner_.appendChild(splitter);
|
/external/chromium_org/ui/webui/resources/js/cr/ui/table/ |
table_splitter.js | 6 * @fileoverview This implements a splitter element which can be used to resize 9 * Each splitter is associated with certain column and resizes it when dragged. 14 /** @const */ var Splitter = cr.ui.Splitter; 17 * Creates a new table splitter element. 20 * @extends {Splitter} 25 __proto__: Splitter.prototype, 35 Splitter.prototype.decorate.call(this); 37 this.classList.add('table-header-splitter'); 41 * Handles start of the splitter dragging [all...] |
table_header.js | 63 this.placeSplitters_(this.querySelectorAll('.table-header-splitter')); 116 // splitter should use CSS for background image. 117 var splitter = new TableSplitter({table: this.table_}); 118 splitter.columnIndex = i; 119 splitter.addEventListener('dblclick', 122 this.headerInner_.appendChild(splitter); 123 splitters.push(splitter); 182 * to a splitter starts dragging. 193 var splitters = this.querySelectorAll('.table-header-splitter'); 207 // Splitter itself shouldn't handle this event [all...] |
/packages/apps/UnifiedEmail/src/com/android/mail/lib/base/ |
Splitter.java | 39 * <p>Here is the most basic example of {@code Splitter} usage: <pre> {@code 41 * Splitter.on(',').split("foo,bar")}</pre> 46 * <p>By default {@code Splitter}'s behavior is very simplistic: <pre> {@code 48 * Splitter.on(',').split("foo,,bar, quux")}</pre> 51 * Notice that the splitter does not assume that you want empty strings removed, 55 * private static final Splitter MY_SPLITTER = Splitter.on(',') 66 * <p><b>Warning: splitter instances are always immutable</b>; a configuration 68 * is invoked on! You must store and use the new splitter instance returned by 73 * Splitter splitter = Splitter.on('/') [all...] |
/packages/apps/UnifiedEmail/src/com/google/android/mail/common/base/ |
Splitter.java | 39 * <p>Here is the most basic example of {@code Splitter} usage: <pre> {@code 41 * Splitter.on(',').split("foo,bar")}</pre> 46 * <p>By default {@code Splitter}'s behavior is very simplistic: <pre> {@code 48 * Splitter.on(',').split("foo,,bar, quux")}</pre> 51 * Notice that the splitter does not assume that you want empty strings removed, 55 * private static final Splitter MY_SPLITTER = Splitter.on(',') 66 * <p><b>Warning: splitter instances are always immutable</b>; a configuration 68 * is invoked on! You must store and use the new splitter instance returned by 73 * Splitter splitter = Splitter.on('/') [all...] |
/external/chromium_org/chrome/browser/resources/sync_internals/ |
node_browser.js | 6 cr.ui.decorate('#sync-node-splitter', cr.ui.Splitter);
|
search.js | 8 cr.ui.decorate('#sync-results-splitter', cr.ui.Splitter);
|
search.html | 9 <div id="sync-results-splitter"></div>
|
/external/guava/guava/src/com/google/common/base/ |
Splitter.java | 42 * <p>Here is the most basic example of {@code Splitter} usage: <pre> {@code 44 * Splitter.on(',').split("foo,bar")}</pre> 49 * <p>By default {@code Splitter}'s behavior is very simplistic: <pre> {@code 51 * Splitter.on(',').split("foo,,bar, quux")}</pre> 54 * Notice that the splitter does not assume that you want empty strings removed, 58 * private static final Splitter MY_SPLITTER = Splitter.on(',') 69 * <p><b>Warning: splitter instances are always immutable</b>; a configuration 71 * is invoked on! You must store and use the new splitter instance returned by 76 * Splitter splitter = Splitter.on('/') [all...] |
/external/chromium/chrome/browser/resources/shared/js/cr/ui/ |
splitter.js | 6 * @fileoverview This implements a splitter element which can be used to resize 9 * The parent of the splitter should be an hbox (display: -webkit-box) with at 10 * least one previous element sibling. The splitter controls the width of the 15 * <div class=splitter></div> 24 // right of the splitter. 56 * Creates a new splitter element. 61 var Splitter = cr.ui.define('div'); 63 Splitter.prototype = { 75 * Starts the dragging of the splitter. Adds listeners for mouse move and 76 * mouse up events and calls splitter drag start handler [all...] |
/external/guava/guava-tests/test/com/google/common/base/ |
SplitterTest.java | 41 private static final Splitter COMMA_SPLITTER = Splitter.on(','); 59 Iterable<String> letters = Splitter.on('.').split(simple); 88 Iterable<String> testCharacteringMotto = Splitter.on('-').split( 95 Iterable<String> testCharacteringMotto = Splitter 104 Iterable<String> letters = Splitter.on('.') 111 Iterable<String> letters = Splitter.on('.').trimResults() 118 Iterable<String> letters = Splitter.on('.') 124 Iterable<String> nothing = Splitter.on('.').split(""); 129 ASSERT.that(Splitter.on('.').omitEmptyStrings().split("")).isEmpty() [all...] |
/external/chromium_org/ui/webui/resources/js/cr/ui/ |
splitter.js | 6 * @fileoverview This implements a splitter element which can be used to resize 9 * The parent of the splitter should be an hbox (display: -webkit-box) with at 10 * least one previous element sibling. The splitter controls the width of the 15 * <div class=splitter></div> 24 // right of the splitter. 56 * Creates a new splitter element. 61 var Splitter = cr.ui.define('div'); 63 Splitter.prototype = { 77 * Starts the dragging of the splitter. Adds listeners for mouse or touch 78 * events and calls splitter drag start handler [all...] |
/external/guava/guava-tests/test/com/google/common/net/ |
HttpHeadersTest.java | 21 import com.google.common.base.Splitter; 52 private static final Splitter SPLITTER = Splitter.on('_'); 62 for (String part : SPLITTER.split(constantName)) {
|
/external/chromium_org/third_party/JSON/JSON-2.59/t/ |
19_incr.t | 17 sub splitter { 38 splitter +JSON->new , ' ["x\\"","\\u1000\\\\n\\nx",1,{"\\\\" :5 , "": "x"}]'; 39 splitter +JSON->new , '[ "x\\"","\\u1000\\\\n\\nx" , 1,{"\\\\ " :5 , "": " x"} ] '; 40 splitter +JSON->new->allow_nonref, '"test"'; 41 splitter +JSON->new->allow_nonref, ' "5" '; 91 sub splitter { 108 splitter +JSON->new , ' ["x\\"","\\u1000\\\\n\\nx",1,{"\\\\" :5 , "": "x"}]'; 109 splitter +JSON->new , '[ "x\\"","\\u1000\\\\n\\nx" , 1,{"\\\\ " :5 , "": " x"} ] '; 110 splitter +JSON->new->allow_nonref, '"test"'; 111 splitter +JSON->new->allow_nonref, ' "5" ' [all...] |
/external/chromium/chrome/browser/resources/sync_internals/ |
sync_node_browser.html | 13 <div id="sync-node-splitter"></div> 66 cr.ui.decorate('#sync-node-splitter', cr.ui.Splitter);
|
sync_node_browser.css | 33 #sync-node-splitter { 41 html[os=win] #sync-node-splitter {
|
/packages/inputmethods/PinyinIME/res/xml/ |
skb_sym2.xml | 26 <keys splitter="|" labels="~|±|×|÷|?|°|<|>|{|}"/> 30 <keys splitter="|" labels="©|£|?|^|®"/> 34 <keys splitter="|" labels="_|="/> 52 <keys splitter=" " labels="+ | \\ ?"/>
|
skb_sym1.xml | 26 <keys splitter="|" labels="1|2|3|4|5|6|7|8|9|0" 31 <keys splitter="|" labels="\@|#"/> 35 <keys splitter="|" labels="%|"|*"/> 43 <keys splitter="|" labels="(|)"/>
|
skb_qwerty.xml | 28 <keys splitter="|" labels="Q|W|E|R|T|Y|U|I|O|P" 33 <keys splitter="|" labels="A|S|D|F|G|H|J|K|L" 52 <keys splitter="|" labels="Z|X|C|V|B|N|M"
|
/external/chromium_org/chrome/browser/resources/net_internals/ |
main.css | 16 /* This class is used to create the splitter widget in 18 .vertical-splitter { 27 .touch .vertical-splitter {
|
events_view.html | 50 <!-- Splitter Box: This is a handle to resize the vertical divider --> 51 <div id=events-view-splitter-box class=vertical-splitter></div>
|
/external/chromium_org/ui/views/controls/ |
single_split_view_listener.h | 13 // splitter moves.
|
/external/chromium/chrome/browser/chromeos/login/ |
user_image_view.cc | 33 // Color for splitter separating contents from OK button. 35 // Height for the splitter. 42 kSplitterRow, // Place for the splitter. 47 views::View* splitter = new views::View(); local 48 splitter->set_background(views::Background::CreateSolidBackground(color)); 49 return splitter; 131 // Splitter. 154 // Set height for splitter view explicitly otherwise it's set to 0
|