/sdk/apps/DeviceConfig/src/com/example/android/deviceconfig/ |
MyActivity.java | 64 String separator = config.orientation == Configuration.ORIENTATION_PORTRAIT ? "\n" : ""; local 65 String foo = "keyboardHidden=" + separator; 75 foo += "\nhardKeyboardHidden=" + separator;
|
/sdk/eclipse/plugins/com.android.ide.eclipse.tests/src/com/android/ide/eclipse/tests/ |
AdtTestData.java | 41 /** The prefered directory separator to use. */ 96 if (!mOsRootDataPath.endsWith(File.separator) && !mOsRootDataPath.endsWith(DIR_SEP_STR)) { 97 sLogger.info("Fixing test_data env variable (does not end with path separator)");
|
/external/chromium_org/third_party/sqlite/src/tool/ |
shell1.test | 167 # -separator 'x' set output field separator (|) 169 catchcmd "-separator 'x' test.db" "" 172 catchcmd "-separator x test.db" "" 175 set res [catchcmd "-separator" ""] 178 [regexp {Error: missing argument for option: -separator} $res] 459 # list Values delimited by .separator string 607 # .separator STRING Change separator used by output mode and .import 609 catchcmd "test.db" ".separator" [all...] |
/external/chromium_org/v8/src/ |
string.js | 611 function StringSplit(separator, limit) { 619 // ECMA-262 says that if separator is undefined, the result should 621 if (IS_UNDEFINED(separator)) { 626 if (!IS_REGEXP(separator)) { 627 separator = TO_STRING_INLINE(separator); 631 var separator_length = separator.length; 633 // If the separator string is empty then return the elements in the subject. 636 var result = %StringSplit(subject, separator, limit); 643 // Separator is a regular expression [all...] |
/external/antlr/antlr-3.4/tool/src/main/resources/org/antlr/codegen/templates/CSharp2/ |
Dbg.stg | 48 "invalidRule", <grammar.allImportedRules:{rST | "<rST.name>"}; wrap="\n ", separator=", "> 100 <grammar.directDelegates:{g|<g:delegateName()> = new <g.recognizerName>( input, dbg, this.state, this<grammar.delegators:{g|, <g:delegateName()>}> );}; separator="\n"> 118 {g|<g:delegateName()> = new <g.recognizerName>( input, dbg, this.state, this<grammar.delegators:{g|, <g:delegateName()>}> );}; separator="\n"> 131 {g|<g:delegateName()> = new <g.recognizerName>( input, this, this.state<grammar.delegators:{g|, <g:delegateName()>}> );}; separator="\n"> 144 <grammar.directDelegates:{g|<g:delegateName()> = new <g.recognizerName>(input, dbg, this.state, this<grammar.delegators:{g|, <g:delegateName()>}>);}; separator="\n">
|
/external/antlr/antlr-3.4/tool/src/main/resources/org/antlr/codegen/templates/CSharp3/ |
Dbg.stg | 47 "invalidRule", <grammar.allImportedRules:{rST | "<rST.name>"}; wrap="\n ", separator=", "> 99 <grammar.directDelegates:{g|<g:delegateName()> = new <g.recognizerName>( input, dbg, this.state, this<grammar.delegators:{g|, <g:delegateName()>}> );}; separator="\n"> 117 {g|<g:delegateName()> = new <g.recognizerName>( input, dbg, this.state, this<grammar.delegators:{g|, <g:delegateName()>}> );}; separator="\n"> 130 {g|<g:delegateName()> = new <g.recognizerName>( input, this, this.state<grammar.delegators:{g|, <g:delegateName()>}> );}; separator="\n"> 143 <grammar.directDelegates:{g|<g:delegateName()> = new <g.recognizerName>(input, dbg, this.state, this<grammar.delegators:{g|, <g:delegateName()>}>);}; separator="\n">
|
/external/chromium_org/ash/system/user/ |
tray_user_unittest.cc | 67 // The separator between the tray users and the rest of the menu. 127 // We then add also the separator. 184 // will be one panel for each user plus one additional separator at the end. 206 // in user we should get a visible item. In addition, the separator should 218 // Check the visibility of the separator.
|
/external/chromium_org/chrome/browser/ui/cocoa/extensions/ |
media_galleries_dialog_cocoa.mm | 244 base::scoped_nsobject<NSBox> separator( 247 [separator setBoxType:NSBoxSeparator]; 248 [separator setBorderType:NSLineBorder]; 249 [separator setAlphaValue:0.2]; 250 [checkbox_container_ addSubview:separator];
|
/external/chromium_org/tools/win/link_limiter/ |
limiter.cc | 305 // * We search for this separator from the end of argv[0], so the exe name 321 size_t separator = shimmed_plus_pipename.rfind(L"__"); local 322 if (separator == tstring::npos) { 326 tstring shimmed_exe = shimmed_plus_pipename.substr(0, separator); 327 tstring base_pipename = shimmed_plus_pipename.substr(separator + 2);
|
/external/guava/guava/src/com/google/common/primitives/ |
UnsignedInts.java | 116 * {@code separator}. For example, {@code join("-", 1, 2, 3)} returns the string {@code "1-2-3"}. 118 * @param separator the text that should appear between consecutive values in the resulting 122 public static String join(String separator, int... array) { 123 checkNotNull(separator); 132 builder.append(separator).append(toString(array[i]));
|
/external/nist-sip/java/gov/nist/core/ |
GenericObjectList.java | 104 protected String separator; field in class:GenericObjectList 147 separator = ";"; 362 encoding.append(separator); 378 * Set the separator (for encoding the list) 385 separator = sep;
|
/packages/apps/Exchange/src/com/android/exchange/adapter/ |
AbstractSyncAdapter.java | 132 // Is this Operation a separator? (a good place to break up a large transaction) 254 * Callers MAY leave a dangling separator at the end of the list; note that the separators 265 // Nope; split into smaller chunks, demarcated by the separator operation 280 offset = count + 1; // Remember to add 1 for the separator! 291 // Check out what's left; if it's more than just a separator, apply the batch
|
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/configuration/ |
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
|
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/properties/ |
PropertySheetPage.java | 34 import org.eclipse.jface.action.Separator; 227 toolBarManager.add(new Separator()); 229 toolBarManager.add(new Separator()); 231 toolBarManager.add(new Separator()); 234 toolBarManager.add(new Separator());
|
/sdk/eclipse/plugins/com.android.ide.eclipse.ddms/src/com/android/ide/eclipse/ddms/views/ |
OldLogCatView.java | 39 import org.eclipse.jface.action.Separator; 331 menuManager.add(new Separator()); 333 menuManager.add(new Separator()); 341 toolBarManager.add(new Separator()); 345 toolBarManager.add(new Separator());
|
/external/chromium/base/ |
file_path.h | 14 // Separator / \, tolerant of / 92 // to do the same. Since Windows can use either / or \ as the separator, 114 // Windows-style drive letter support and pathname separator characters can be 143 // hierarchical paths. Each character in this array is a valid separator, 144 // but kSeparators[0] is treated as the canonical separator and will be used 251 // Returns a FilePath by appending a separator and the supplied path 253 // excessive separators if this object's path already ends with a separator. 271 // a separator character, or with two separator characters. On POSIX 272 // platforms, an absolute path begins with a separator character [all...] |
/libcore/luni/src/main/java/java/lang/ |
System.java | 92 lineSeparator = System.getProperty("line.separator"); 302 p.put("file.separator", "/"); 303 p.put("line.separator", "\n"); 304 p.put("path.separator", ":"); 367 * <tr><td>file.separator</td> <td>{@link java.io.File#separator}</td> <td>{@code /}</td></tr> 390 * <tr><td>line.separator</td> <td>The system line separator</td> <td>{@code \n}</td></tr> 396 * <tr><td>path.separator</td> <td>See {@link java.io.File#pathSeparator}</td> <td>{@code :}</td></tr> 492 * Returns the system's line separator. On Android, this is {@code "\n"}. The valu [all...] |
/external/chromium_org/chrome/browser/resources/quota_internals/ |
event_handler.js | 502 var separator = '========\n'; 505 separator + 507 separator + 509 separator + 511 separator + 513 separator + 515 separator +
|
/external/chromium_org/tools/metrics/histograms/ |
extract_histograms.py | 128 if fieldtrial.hasAttribute('separator'): 129 separator = fieldtrial.getAttribute('separator') 131 separator = '_' 146 return histogram_name + separator + group_name 154 'dot separator. Histogram name is %s, and Field Trial is %s' % 160 return cluster + group_name + separator + remainder
|
/libcore/json/src/test/java/org/json/ |
JSONTokenerTest.java | 305 assertNotClean("mongolian vowel separator", '\u180e'); 320 assertNotClean("line separator", '\u2028'); 321 assertNotClean("paragraph separator", '\u2029'); 327 assertNotClean("information separator 4", '\u001c'); 328 assertNotClean("information separator 3", '\u001d'); 329 assertNotClean("information separator 2", '\u001e'); 330 assertNotClean("information separator 1", '\u001f');
|
/packages/apps/Dialer/src/com/android/dialer/dialpad/ |
SmartDialNameMatcher.java | 214 // Found a separator before any part of the query was matched, so advance the 351 // find the next separator in the query string 359 // this means there is at least one character left after the separator 384 // found a separator, we skip this character and continue to the next one 387 // This means we found a separator before the start of a token, 392 // Otherwise this separator was found in the middle of a token being matched, 393 // so increase the separator count
|
/packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/utils/ |
DictionaryInfoUtils.java | 108 // This assumes '%' is fully available as a non-separator, normal 128 return context.getFilesDir() + File.separator + "dicts"; 135 return context.getFilesDir() + File.separator + "tmp"; 176 // An id is supposed to be in format category:locale, so splitting on the separator 187 final String absoluteDirectoryName = getWordListCacheDirectory(context) + File.separator 215 return getCacheDirectoryForLocale(locale, context) + File.separator + fileName; 220 // An id is supposed to be in format category:locale, so splitting on the separator
|
/sdk/eclipse/plugins/com.android.ide.eclipse.tests/unittests/com/android/ide/common/resources/platform/ |
AttributeInfoTest.java | 299 File attrsPath = new File(git, "frameworks" + File.separator + "base" 300 + File.separator + "core" + File.separator + "res" + File.separator + "res" 301 + File.separator + "values" + File.separator + "attrs.xml"); 311 checkDir(new File(git, "packages" + File.separator + "apps"), false, attributeMap, seen);
|
/external/chromium_org/third_party/libxslt/libxslt/ |
numbers.c | 47 xmlChar *separator; member in struct:_xsltFormatToken 328 default_token.separator = BAD_CAST(DEFAULT_SEPARATOR); 332 tokens->tokens[0].separator = NULL; 355 * separator has already been parsed (except for the first 359 tokens->tokens[tokens->nTokens].separator = tokens->end; 464 /* Print separator, except for the first number */ 466 if (token->separator != NULL) 467 xmlBufferCat(buffer, token->separator); 838 if (tokens.tokens[i].separator != NULL) 839 xmlFree(tokens.tokens[i].separator); [all...] |
/external/libxslt/libxslt/ |
numbers.c | 47 xmlChar *separator; member in struct:_xsltFormatToken 328 default_token.separator = BAD_CAST(DEFAULT_SEPARATOR); 332 tokens->tokens[0].separator = NULL; 355 * separator has already been parsed (except for the first 359 tokens->tokens[tokens->nTokens].separator = tokens->end; 464 /* Print separator, except for the first number */ 466 if (token->separator != NULL) 467 xmlBufferCat(buffer, token->separator); 838 if (tokens.tokens[i].separator != NULL) 839 xmlFree(tokens.tokens[i].separator); [all...] |