/external/clang/test/VFS/Inputs/ |
unknown-value.yaml | 3 'case-sensitive': 'Maybe?',
|
/development/samples/browseable/ActionBarCompat-ShareActionProvider/ |
_index.jd | 7 This sample shows you how a provide a context-sensitive ShareActionProvider with
|
/packages/apps/UnifiedEmail/src/org/apache/commons/io/comparator/ |
NameFileComparator.java | 29 * by their name either in a case-sensitive, case-insensitive or 30 * system dependant case sensitive way. A number of singleton instances 34 * Example of a <i>case-sensitive</i> file name sort using the 54 /** Case-sensitive name comparator instance (see {@link IOCase#SENSITIVE}) */ 57 /** Reverse case-sensitive name comparator instance (see {@link IOCase#SENSITIVE}) */ 66 /** System sensitive name comparator instance (see {@link IOCase#SYSTEM}) */ 69 /** Reverse system sensitive name comparator instance (see {@link IOCase#SYSTEM}) */ 72 /** Whether the comparison is case sensitive. * [all...] |
PathFileComparator.java | 29 * by their path either in a case-sensitive, case-insensitive or 30 * system dependant case sensitive way. A number of singleton instances 34 * Example of a <i>case-sensitive</i> file path sort using the 54 /** Case-sensitive path comparator instance (see {@link IOCase#SENSITIVE}) */ 57 /** Reverse case-sensitive path comparator instance (see {@link IOCase#SENSITIVE}) */ 66 /** System sensitive path comparator instance (see {@link IOCase#SYSTEM}) */ 69 /** Reverse system sensitive path comparator instance (see {@link IOCase#SYSTEM}) */ 72 /** Whether the comparison is case sensitive. * [all...] |
ExtensionFileComparator.java | 31 * by their file extension either in a case-sensitive, case-insensitive or 32 * system dependant case sensitive way. A number of singleton instances 36 * Example of a <i>case-sensitive</i> file extension sort using the 56 /** Case-sensitive extension comparator instance (see {@link IOCase#SENSITIVE}) */ 59 /** Reverse case-sensitive extension comparator instance (see {@link IOCase#SENSITIVE}) */ 69 /** System sensitive extension comparator instance (see {@link IOCase#SYSTEM}) */ 72 /** Reverse system sensitive path comparator instance (see {@link IOCase#SYSTEM}) */ 75 /** Whether the comparison is case sensitive. * [all...] |
/external/chromium_org/tools/valgrind/gtest_exclude/ |
base_unittests.gtest_win32.txt | 4 # Very sensitive to slowdown
|
media_unittests.gtest.txt | 2 # This appears to be too sensitive to slowdown, see http://crbug.com/49497
|
/external/chromium_org/chrome/common/extensions/docs/templates/private/ |
standard_nacl_api.html | 7 {{- This is unindented because it may contain whitespace-sensitive tags. -}}
|
article.html | 13 {{- This is unindented because it may contain whitespace-sensitive tags. -}}
|
/external/clang/test/Parser/ |
altivec-csk-bool.c | 4 // PR16456: Verify that bool, true, false are treated as context-sensitive
|
/external/valgrind/main/drd/tests/ |
filter_thread_no | 3 # Get rid of the numbers as these make some tests more scheduling sensitive
|
/packages/apps/UnifiedEmail/src/org/apache/commons/io/ |
IOCase.java | 25 * Windows is case-insensitive, Unix is case-sensitive. 41 * The constant for case sensitive regardless of operating system. 43 public static final IOCase SENSITIVE = new IOCase("Sensitive", true); 52 * Windows is case-insensitive when comparing filenames, Unix is case-sensitive. 66 private final transient boolean sensitive; field in class:IOCase 77 if (IOCase.SENSITIVE.name.equals(name)){ 78 return IOCase.SENSITIVE; 94 * @param sensitive the sensitivity 96 private IOCase(String name, boolean sensitive) { [all...] |
/packages/apps/UnifiedEmail/src/org/apache/commons/io/filefilter/ |
NameFileFilter.java | 51 /** Whether the comparison is case sensitive. */ 55 * Constructs a new case-sensitive name file filter for a single name. 68 * @param caseSensitivity how to handle case sensitivity, null means case-sensitive 76 this.caseSensitivity = (caseSensitivity == null ? IOCase.SENSITIVE : caseSensitivity); 80 * Constructs a new case-sensitive name file filter for an array of names. 99 * @param caseSensitivity how to handle case sensitivity, null means case-sensitive 107 this.caseSensitivity = (caseSensitivity == null ? IOCase.SENSITIVE : caseSensitivity); 111 * Constructs a new case-sensitive name file filter for a list of names. 125 * @param caseSensitivity how to handle case sensitivity, null means case-sensitive 134 this.caseSensitivity = (caseSensitivity == null ? IOCase.SENSITIVE : caseSensitivity) [all...] |
PrefixFileFilter.java | 52 /** Whether the comparison is case sensitive. */ 62 this(prefix, IOCase.SENSITIVE); 70 * @param caseSensitivity how to handle case sensitivity, null means case-sensitive 79 this.caseSensitivity = (caseSensitivity == null ? IOCase.SENSITIVE : caseSensitivity); 92 this(prefixes, IOCase.SENSITIVE); 103 * @param caseSensitivity how to handle case sensitivity, null means case-sensitive 112 this.caseSensitivity = (caseSensitivity == null ? IOCase.SENSITIVE : caseSensitivity); 123 this(prefixes, IOCase.SENSITIVE); 131 * @param caseSensitivity how to handle case sensitivity, null means case-sensitive 141 this.caseSensitivity = (caseSensitivity == null ? IOCase.SENSITIVE : caseSensitivity) [all...] |
SuffixFileFilter.java | 53 /** Whether the comparison is case sensitive. */ 63 this(suffix, IOCase.SENSITIVE); 71 * @param caseSensitivity how to handle case sensitivity, null means case-sensitive 80 this.caseSensitivity = (caseSensitivity == null ? IOCase.SENSITIVE : caseSensitivity); 93 this(suffixes, IOCase.SENSITIVE); 104 * @param caseSensitivity how to handle case sensitivity, null means case-sensitive 113 this.caseSensitivity = (caseSensitivity == null ? IOCase.SENSITIVE : caseSensitivity); 124 this(suffixes, IOCase.SENSITIVE); 132 * @param caseSensitivity how to handle case sensitivity, null means case-sensitive 142 this.caseSensitivity = (caseSensitivity == null ? IOCase.SENSITIVE : caseSensitivity) [all...] |
WildcardFileFilter.java | 30 * Testing is case-sensitive by default, but this can be configured. 35 * The extension check is case-sensitive by . 56 /** Whether the comparison is case sensitive. */ 60 * Construct a new case-sensitive wildcard filter for a single wildcard. 73 * @param caseSensitivity how to handle case sensitivity, null means case-sensitive 81 this.caseSensitivity = (caseSensitivity == null ? IOCase.SENSITIVE : caseSensitivity); 85 * Construct a new case-sensitive wildcard filter for an array of wildcards. 104 * @param caseSensitivity how to handle case sensitivity, null means case-sensitive 112 this.caseSensitivity = (caseSensitivity == null ? IOCase.SENSITIVE : caseSensitivity); 116 * Construct a new case-sensitive wildcard filter for a list of wildcards [all...] |
/external/clang/test/Analysis/ |
no-exit-cfg.c | 6 // The flow-sensitive dataflow solver should work even when no block in
|
/external/apache-harmony/jdwp/src/test/java/org/apache/harmony/jpda/tests/framework/jdwp/ |
Packet.java | 518 * Sets the next value of the data of the Packet as objectID VM-sensitive 543 * Gets the next value of the data of the Packet as objectID VM-sensitive 547 * @return the next value of the data of the Packet as VM-sensitive value. 563 * Sets the next value of the data of the Packet as ThreadID VM-sensitive 575 * Gets the next value of the data of the Packet as ThreadID VM-sensitive 579 * @return the next value of the data of the Packet as VM-sensitive value. 587 * VM-sensitive value. If length is less than 8 bytes, the appropriate high 599 * VM-sensitive value. If length is less than 8 bytes, the appropriate high 602 * @return the next value of the data of the Packet as VM-sensitive value. 609 * Sets the next value of the data of the Packet as StringID VM-sensitive [all...] |
/external/clang/include/clang/StaticAnalyzer/Checkers/ |
LocalCheckers.h | 1 //==- LocalCheckers.h - Intra-Procedural+Flow-Sensitive Checkers -*- C++ -*-==// 11 // checkers that use flow/path-sensitive analyses to find bugs.
|
/external/smack/src/org/apache/harmony/javax/security/auth/ |
Destroyable.java | 21 * Allows for special treatment of sensitive information, when it comes to 27 * Erases the sensitive information. Once an object is destroyed any calls
|
/libcore/luni/src/main/java/javax/security/auth/ |
Destroyable.java | 21 * Allows for special treatment of sensitive information, when it comes to 27 * Erases the sensitive information. Once an object is destroyed any calls
|
/packages/apps/Settings/res/xml/ |
app_notification_settings.xml | 37 <!-- Sensitive --> 39 android:key="sensitive"
|
/external/chromium_org/crypto/ |
ec_private_key_nss.cc | 96 false /* not sensitive */); 103 slot, true /* permanent */, true /* sensitive */); 121 false /* not sensitive */); 137 true /* sensitive */); 149 bool sensitive, 204 sensitive, 319 bool sensitive) { 351 sensitive, 369 bool sensitive) { 391 sensitive, [all...] |
/developers/build/prebuilts/gradle/ActionBarCompat-ShareActionProvider/Application/src/main/res/values/ |
base-strings.xml | 23 This sample shows you how a provide a context-sensitive ShareActionProvider with
|
/development/samples/browseable/ActionBarCompat-ShareActionProvider/res/values/ |
base-strings.xml | 23 This sample shows you how a provide a context-sensitive ShareActionProvider with
|