/external/chromium_org/build/android/ |
surface_stats.py | 30 def _MergeResults(results, fields): 33 if ((fields != ['all'] and not result.name in fields) or 86 '--fields', 87 dest='fields', 90 help='Comma separated list of fields to display or "all".') 105 fields = options.fields.split(',') 113 results = _MergeResults(results, fields)
|
/external/chromium_org/components/autofill/core/browser/ |
form_field.h | 27 // Classifies each field in |fields| with its heuristically detected type. 30 static void ParseFormFields(const std::vector<AutofillField*>& fields, 64 // Parses the stream of fields in |scanner| with regular expression |pattern| 112 // Perform a "pass" over the |fields| where each pass uses the supplied 114 // |fields| is both an input and an output parameter. Upon exit |fields| 115 // holds any remaining unclassified fields for further processing. 116 // Classification results of the processed fields are stored in |map|. 118 std::vector<const AutofillField*>* fields,
|
/external/chromium_org/third_party/protobuf/java/src/main/java/com/google/protobuf/ |
UninitializedMessageException.java | 38 * fields. This is a {@code RuntimeException} because it normally represents 40 * fails to set all the fields. {@code parseFrom()} methods <b>do not</b> 42 * required fields are missing, because it is not a programming error to 53 super("Message was missing required fields. (Lite runtime could not " + 54 "determine which fields were missing)."); 66 * Get a list of human-readable names of required fields missing from this 69 * find missing fields. 77 * When a parsed message is missing required fields, this should be thrown 87 new StringBuilder("Message missing required fields: ");
|
MessageOrBuilder.java | 49 * Returns a list of field paths (e.g. "foo.bar.baz") of required fields 52 * are any missing fields, as that method is likely to be much faster 58 * Returns a comma-delimited list of required fields which are not set 61 * are any missing fields, as that method is likely to be much faster 76 * Returns a collection of all the fields in this message which are set 82 * is guaranteed to be a sorted map, so iterating over it will return fields 101 * not set. For primitive fields, the boxed primitive value is returned. 102 * For enum fields, the EnumValueDescriptor for the value is returned. For 103 * embedded message fields, the sub-message is returned. For repeated 104 * fields, a java.util.List is returned [all...] |
/external/kernel-headers/original/linux/ |
taskstats.h | 22 * The struct is versioned. Newer versions should only add fields to 26 * To add new fields 29 * c) add new fields after version comment; maintain 64-bit alignment 40 * fields if struct taskstats is extended. 43 /* Delay accounting fields start 45 * All values, until comment "Delay accounting fields end" are 47 * few fields are not delays 62 /* Following four fields atomically updated using task->delays->lock */ 89 /* Delay accounting fields end */
|
/external/protobuf/java/src/main/java/com/google/protobuf/ |
UninitializedMessageException.java | 38 * fields. This is a {@code RuntimeException} because it normally represents 40 * fails to set all the fields. {@code parseFrom()} methods <b>do not</b> 42 * required fields are missing, because it is not a programming error to 53 super("Message was missing required fields. (Lite runtime could not " + 54 "determine which fields were missing)."); 66 * Get a list of human-readable names of required fields missing from this 69 * find missing fields. 77 * When a parsed message is missing required fields, this should be thrown 87 new StringBuilder("Message missing required fields: ");
|
/frameworks/base/docs/html/design/building-blocks/ |
text-fields.jd | 1 page.title=Text Fields 8 <p>Text Fields</p> 12 <p>Text fields allow the user to type text into your app. They can be either single line or multi-line. 14 typing, text fields allow for a variety of other activities, such as text selection (cut, copy, 27 <p>Single-line fields automatically scroll their content to the left as the text input cursor reaches 28 the right edge of the input field. Multi-line text fields automatically break to a new line for 37 <p>Text fields can have different types, such as number, message, or email address. The type determines 44 <h4>Auto-complete text fields</h4> 45 <p>Use auto-complete text fields to present real-time completions or search results in popups, so users
|
/libcore/luni/src/main/java/java/text/ |
DecimalFormatSymbols.java | 587 ObjectOutputStream.PutField fields = stream.putFields(); local 588 fields.put("currencySymbol", currencySymbol); 589 fields.put("decimalSeparator", getDecimalSeparator()); 590 fields.put("digit", getDigit()); 591 fields.put("exponential", exponentSeparator.charAt(0)); 592 fields.put("exponentialSeparator", exponentSeparator); 593 fields.put("groupingSeparator", getGroupingSeparator()); 594 fields.put("infinity", infinity); 595 fields.put("intlCurrencySymbol", intlCurrencySymbol); 596 fields.put("minusSign", getMinusSign()) 609 ObjectInputStream.GetField fields = stream.readFields(); local [all...] |
/external/chromium/chrome/browser/autofill/ |
form_structure.h | 37 // in the fields along with additional information needed by Autofill. 43 // Runs several heuristics against the form fields to determine their possible 51 // All fields are returned in one XML. For example, there are three forms, 52 // with 2, 4, and 3 fields. The returned XML would have type info for 9 53 // fields, first two of which would be for the first form, next 4 for the 75 // Resets |autofill_count_| and counts the number of auto-fillable fields. 76 // This is used when we receive server data for form fields. At that time, 77 // we may have more known fields than just the number of fields we matched 100 // Returns the number of fields that are able to be autofilled 120 ScopedVector<AutofillField>* fields() { return &fields_; } function in class:FormStructure [all...] |
/external/chromium-trace/trace-viewer/src/tracing/importer/v8/ |
log_reader.js | 33 * Parses a line of CSV-encoded values. Returns an array of fields. 42 var fields = []; 49 fields.push(field.replace(doubleQuoteRe, '"')); 55 fields.push(field); 59 return fields; 161 * @param {Array.<string>} fields Log record. 164 LogReader.prototype.dispatchLogRow_ = function(fields) { 166 var command = fields[0]; 175 // Parse fields. 180 parsedFields.push(fields[1 + i]) [all...] |
/external/harfbuzz_ng/src/ |
gen-arabic-table.py | 36 fields = [x.strip () for x in line.split (';')] 37 if len (fields) == 1: 40 u = int (fields[0], 16) 61 if fields[3] in ["ALAPH", "DALATH RISH"]: 62 value = "JOINING_GROUP_" + fields[3].replace(' ', '_') 64 value = "JOINING_TYPE_" + fields[2] 65 print " %s, /* %s */" % (value, '; '.join(fields)) 86 fields = [x.strip () for x in line.split (';')] 87 if fields[5][0:1] != '<': 90 items = fields[5].split (' ' [all...] |
/libcore/luni/src/main/java/java/util/ |
Grego.java | 115 public static int[] dayToFields(long day, int[] fields) {
116 if (fields == null || fields.length < 5) {
117 fields = new int[5];
151 fields[0] = year;
152 fields[1] = month;
153 fields[2] = dayOfMonth;
154 fields[3] = dayOfWeek;
155 fields[4] = dayOfYear;
157 return fields;
[all...] |
/external/icu4c/test/cintltst/ |
reapits.c | 1051 UChar *fields[10]; local 1157 UChar *fields[10]; local 1965 UText *fields[10]; local 2041 UText *fields[10]; local [all...] |
/cts/tests/tests/os/src/android/os/cts/ |
NoExecutePermissionTest.java | 44 String[] fields = line.split("\\s+"); local 48 if (fields != null && fields.length >= 1) { 49 String permissions = fields[1]; 50 if (fields.length >= 6) { 51 String tag = fields[5];
|
/external/chromium-trace/trace-viewer/src/cc/ |
util.js | 57 function moveRequiredFieldsFromArgsToToplevel(object, fields) { 58 for (var i = 0; i < fields.length; i++) { 59 var key = fields[i]; 69 function moveOptionalFieldsFromArgsToToplevel(object, fields) { 70 for (var i = 0; i < fields.length; i++) { 71 var key = fields[i];
|
/external/chromium_org/tools/ |
omahaproxy.py | 32 fields = set() 42 fields.add(field) 46 fields = sorted(fields) 64 choices=fields, 67 '[default: %%default] ' % ', '.join(fields))
|
/external/chromium_org/third_party/icu/source/test/cintltst/ |
reapits.c | 1010 UChar *fields[10]; local 1116 UChar *fields[10]; local 1923 UText *fields[10]; local 1999 UText *fields[10]; local [all...] |
/external/chromium_org/third_party/icu/source/common/ |
rbbicst.pl | 36 @fields = split(); 39 # Remove # comments, which are any fields beginning with a #, plus all 41 for ($i=0; $i<@fields; $i++) { 42 if ($fields[$i] =~ /^#/) { 43 @fields = @fields[0 .. $i-1]; 47 # ignore blank lines, and those with no fields left after stripping comments.. 48 if (@fields == 0) { 58 if (@fields[0] =~ /.*:$/) { 59 $state_name = @fields[0] [all...] |
/external/chromium_org/third_party/icu/source/i18n/ |
regexcst.pl | 37 @fields = split(); 40 # Remove # comments, which are any fields beginning with a #, plus all 42 for ($i=0; $i<@fields; $i++) { 43 if ($fields[$i] =~ /^#/) { 44 @fields = @fields[0 .. $i-1]; 48 # ignore blank lines, and those with no fields left after stripping comments.. 49 if (@fields == 0) { 59 if (@fields[0] =~ /.*:$/) { 60 $state_name = @fields[0] [all...] |
/external/icu4c/common/ |
rbbicst.pl | 36 @fields = split(); 39 # Remove # comments, which are any fields beginning with a #, plus all 41 for ($i=0; $i<@fields; $i++) { 42 if ($fields[$i] =~ /^#/) { 43 @fields = @fields[0 .. $i-1]; 47 # ignore blank lines, and those with no fields left after stripping comments.. 48 if (@fields == 0) { 58 if (@fields[0] =~ /.*:$/) { 59 $state_name = @fields[0] [all...] |
/external/icu4c/i18n/ |
regexcst.pl | 37 @fields = split(); 40 # Remove # comments, which are any fields beginning with a #, plus all 42 for ($i=0; $i<@fields; $i++) { 43 if ($fields[$i] =~ /^#/) { 44 @fields = @fields[0 .. $i-1]; 48 # ignore blank lines, and those with no fields left after stripping comments.. 49 if (@fields == 0) { 59 if (@fields[0] =~ /.*:$/) { 60 $state_name = @fields[0] [all...] |
/prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.4.3/sysroot/usr/include/linux/ |
taskstats.h | 23 * The struct is versioned. Newer versions should only add fields to 27 * To add new fields 30 * c) add new fields after version comment; maintain 64-bit alignment 53 /* Delay accounting fields start 55 * All values, until comment "Delay accounting fields end" are 57 * few fields are not delays 72 /* Following four fields atomically updated using task->delays->lock */ 99 /* Delay accounting fields end */ 102 /* Basic Accounting Fields start */ 119 /* Basic Accounting Fields end * [all...] |
/prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.6/sysroot/usr/include/linux/ |
taskstats.h | 23 * The struct is versioned. Newer versions should only add fields to 27 * To add new fields 30 * c) add new fields after version comment; maintain 64-bit alignment 53 /* Delay accounting fields start 55 * All values, until comment "Delay accounting fields end" are 57 * few fields are not delays 72 /* Following four fields atomically updated using task->delays->lock */ 99 /* Delay accounting fields end */ 102 /* Basic Accounting Fields start */ 119 /* Basic Accounting Fields end * [all...] |
/prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.7-4.6/sysroot/usr/include/linux/ |
taskstats.h | 23 * The struct is versioned. Newer versions should only add fields to 27 * To add new fields 30 * c) add new fields after version comment; maintain 64-bit alignment 53 /* Delay accounting fields start 55 * All values, until comment "Delay accounting fields end" are 57 * few fields are not delays 72 /* Following four fields atomically updated using task->delays->lock */ 99 /* Delay accounting fields end */ 102 /* Basic Accounting Fields start */ 119 /* Basic Accounting Fields end * [all...] |
/external/jmonkeyengine/engine/src/blender/com/jme3/scene/plugins/blender/file/ |
Structure.java | 54 * The fields of the structure. Each field consists of a pair: name-type. 56 private Field[] fields; field in class:Structure 69 fields = new Field[structure.fields.length]; 70 for (int i = 0; i < fields.length; ++i) { 71 fields[i] = (Field) structure.fields[i].clone(); 82 * the names from which the name of structure and its fields will be taken 88 * this exception occurs if the amount of fields, defined in the file, is negative 96 throw new BlenderFileException("The amount of fields of " + this.type + " structure cannot be negative!") [all...] |