HomeSort by relevance Sort by last modified time
    Searched refs:SEPARATOR (Results 26 - 50 of 158) sorted by null

12 3 4 5 6 7

  /external/chromium_org/v8/test/webkit/
string-trim.js 57 {s : '\u2028', t : 'LINE SEPARATOR'},
58 {s : '\u2029', t : 'PARAGRAPH SEPARATOR'},
  /prebuilts/eclipse/mavenplugins/tycho/tycho-dependencies-m2repo/org/eclipse/tycho/tycho-compiler-jdt/0.20.0/
tycho-compiler-jdt-0.20.0.jar 
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/configuration/
ActivityMenuListener.java 99 MenuItem separator = new MenuItem(menu, SWT.SEPARATOR); local
128 MenuItem separator = new MenuItem(menu, SWT.SEPARATOR); local
ConfigurationMenuListener.java 166 MenuItem configSeparator = new MenuItem(menu, SWT.SEPARATOR);
217 MenuItem separator = new MenuItem(menu, SWT.SEPARATOR); local
246 MenuItem separator = new MenuItem(menu, SWT.SEPARATOR); local
TargetMenuListener.java 92 MenuItem separator = new MenuItem(menu, SWT.SEPARATOR); local
ConfigurationChooser.java 214 ToolItem separator2 = new ToolItem(toolBar, SWT.SEPARATOR);
220 ToolItem separator3 = new ToolItem(toolBar, SWT.SEPARATOR);
227 ToolItem separator4 = new ToolItem(toolBar, SWT.SEPARATOR);
233 ToolItem separator5 = new ToolItem(toolBar, SWT.SEPARATOR);
246 ToolItem separator6 = new ToolItem(toolBar, SWT.SEPARATOR);
257 ToolItem separator7 = new ToolItem(rightToolBar, SWT.SEPARATOR);
    [all...]
  /external/pdfium/core/src/fxcodec/fx_zlib/zlib_v128/
fx_zlib_trees.c 324 # define SEPARATOR(i, last, width) \
340 static_ltree[i].Len, SEPARATOR(i, L_CODES+1, 5));
346 static_dtree[i].Len, SEPARATOR(i, D_CODES-1, 5));
352 SEPARATOR(i, DIST_CODE_LEN-1, 20));
359 SEPARATOR(i, MAX_MATCH-MIN_MATCH, 20));
365 SEPARATOR(i, LENGTH_CODES-1, 20));
371 SEPARATOR(i, D_CODES-1, 10));
    [all...]
  /external/qemu/distrib/zlib-1.2.8/
trees.c 324 # define SEPARATOR(i, last, width) \
340 static_ltree[i].Len, SEPARATOR(i, L_CODES+1, 5));
346 static_dtree[i].Len, SEPARATOR(i, D_CODES-1, 5));
352 SEPARATOR(i, DIST_CODE_LEN-1, 20));
359 SEPARATOR(i, MAX_MATCH-MIN_MATCH, 20));
365 SEPARATOR(i, LENGTH_CODES-1, 20));
371 SEPARATOR(i, D_CODES-1, 10));
    [all...]
  /external/zlib/src/
trees.c 324 # define SEPARATOR(i, last, width) \
340 static_ltree[i].Len, SEPARATOR(i, L_CODES+1, 5));
346 static_dtree[i].Len, SEPARATOR(i, D_CODES-1, 5));
352 SEPARATOR(i, DIST_CODE_LEN-1, 20));
359 SEPARATOR(i, MAX_MATCH-MIN_MATCH, 20));
365 SEPARATOR(i, LENGTH_CODES-1, 20));
371 SEPARATOR(i, D_CODES-1, 10));
    [all...]
  /external/chromium_org/chrome/renderer/pepper/
pepper_flash_menu_host.cc 64 item.type = content::MenuItem::SEPARATOR;
  /external/chromium_org/ui/views/controls/menu/
menu.cc 88 if (type == SEPARATOR)
menu.h 61 // Whether or not an item is a separator.
117 SEPARATOR
191 // Adds a separator to this menu
menu_item_view.cc 127 if (GetType() == SEPARATOR)
179 case SEPARATOR:
242 if (type == SEPARATOR) {
310 gfx::ImageSkia(), SEPARATOR, ui::NORMAL_SEPARATOR);
    [all...]
menu_item_view.h 83 SEPARATOR,
189 // Adds a separator to this menu
439 // Type of menu. NOTE: MenuItemView doesn't itself represent SEPARATOR,
  /packages/providers/ContactsProvider/src/com/android/providers/contacts/
HanziToPinyin.java 42 * Separator between target string for each source char
44 public static final String SEPARATOR = " ";
  /external/chromium_org/chrome/browser/extensions/
context_menu_matcher.cc 51 // items in the menu, and the last item is not a separator add a separator.
204 // a separator. The converse case is handled below.
208 last_type = MenuItem::SEPARATOR;
236 // Auto-append a separator if needed.
241 } else if (item->type() == MenuItem::SEPARATOR) {
menu_manager.h 105 SEPARATOR
  /external/chromium_org/third_party/zlib/
trees.c 329 # define SEPARATOR(i, last, width) \
345 static_ltree[i].Len, SEPARATOR(i, L_CODES+1, 5));
351 static_dtree[i].Len, SEPARATOR(i, D_CODES-1, 5));
357 SEPARATOR(i, DIST_CODE_LEN-1, 20));
364 SEPARATOR(i, MAX_MATCH-MIN_MATCH, 20));
370 SEPARATOR(i, LENGTH_CODES-1, 20));
376 SEPARATOR(i, D_CODES-1, 10));
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/gle2/
LayoutActionBar.java 25 import com.android.ide.common.api.RuleAction.Separator;
167 if (!(itemActions.get(0) instanceof RuleAction.Separator)) {
235 } else if (!(prevAction instanceof RuleAction.Separator)) {
260 // Must be a separator, or a label (which we insert for nested widgets)
261 assert (style & SWT.SEPARATOR) != 0 || !item.getText().isEmpty() : item;
272 // add a separator at the end of these groups in case there are no more
273 // actions at the end so that we don't have a trailing separator)
285 if (action instanceof Separator) {
312 /** Add a separator to the toolbar, unless there already is one there at the end already */
315 if (n > 0 && (toolBar.getItem(n - 1).getStyle() & SWT.SEPARATOR) == 0)
316 ToolItem separator = new ToolItem(toolBar, SWT.SEPARATOR); local
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/wizards/templates/
NewTemplatePage.java 208 //Label projectSeparator = new Label(container, SWT.SEPARATOR | SWT.HORIZONTAL);
236 if (type == Parameter.Type.SEPARATOR) {
237 Label separator = new Label(container, SWT.SEPARATOR | SWT.HORIZONTAL); local
238 separator.setLayoutData(new GridData(SWT.FILL, SWT.TOP, true, false, 3, 1));
375 case SEPARATOR:
392 Label separator = new Label(parent, SWT.SEPARATOR | SWT.HORIZONTAL); local
395 separator.setLayoutData(separatorData);
612 if (parameter.type == Parameter.Type.SEPARATOR) {
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/common/layout/
BaseViewRule.java     [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/assetstudio/
ChooseAssetTypePage.java 81 Label separator = new Label(container, SWT.SEPARATOR | SWT.HORIZONTAL); local
84 separator.setLayoutData(gdSeparator);
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/wizards/newproject/
ImportedProject.java 144 if (c != IPath.DEVICE_SEPARATOR && c != IPath.SEPARATOR && c != '\\') {
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/wizards/newxmlfile/
ChooseConfigurationPage.java 105 Label separator = new Label(composite, SWT.SEPARATOR | SWT.HORIZONTAL); local
108 separator.setLayoutData(gdSeparator);
  /sdk/eclipse/plugins/com.android.ide.eclipse.ddms/src/com/android/ide/eclipse/ddms/preferences/
LogCatPreferencePage.java 82 Label l = new Label(getFieldEditorParent(), SWT.SEPARATOR | SWT.HORIZONTAL);

Completed in 1149 milliseconds

12 3 4 5 6 7