/external/eigen/blas/fortran/ |
chpmv.f | 19 * A is an n by n hermitian matrix, supplied in packed form. 160 * First form y := beta*y. 192 * Form y when AP contains the upper triangle. 229 * Form y when AP contains the lower triangle.
|
ctbmv.f | 206 * Form x := A*x. 271 * Form x := A'*x or x := conjg( A' )*x.
|
dsbmv.f | 192 * First form y := beta*y. 223 * Form y when upper triangle of A is stored. 263 * Form y when lower triangle of A is stored.
|
dspmv.f | 19 * A is an n by n symmetric matrix, supplied in packed form. 153 * First form y := beta*y. 185 * Form y when AP contains the upper triangle. 222 * Form y when AP contains the lower triangle.
|
dtbmv.f | 205 * Form x := A*x. 270 * Form x := A'*x.
|
ssbmv.f | 194 * First form y := beta*y. 225 * Form y when upper triangle of A is stored. 265 * Form y when lower triangle of A is stored.
|
sspmv.f | 19 * A is an n by n symmetric matrix, supplied in packed form. 153 * First form y := beta*y. 185 * Form y when AP contains the upper triangle. 222 * Form y when AP contains the lower triangle.
|
stbmv.f | 205 * Form x := A*x. 270 * Form x := A'*x.
|
zhbmv.f | 198 * First form y := beta*y. 229 * Form y when upper triangle of A is stored. 269 * Form y when lower triangle of A is stored.
|
zhpmv.f | 19 * A is an n by n hermitian matrix, supplied in packed form. 160 * First form y := beta*y. 192 * Form y when AP contains the upper triangle. 229 * Form y when AP contains the lower triangle.
|
ztbmv.f | 206 * Form x := A*x. 271 * Form x := A'*x or x := conjg( A' )*x.
|
/frameworks/base/core/java/android/view/ |
KeyCharacterMap.java | 80 * layout with a small form factor. In contrast to a {@link #FULL full keyboard}, some 186 * Maps Unicode combining diacritical to display-form dead key. 241 * Maps combinations of (display-form) combining key and second character 508 String result = Normalizer.normalize(sDeadKeyBuilder, Normalizer.Form.NFC);
|
/packages/inputmethods/LatinIME/java/src/com/android/inputmethod/event/ |
DeadKeyCombiner.java | 70 * Maps Unicode combining diacritical to display-form dead key. 288 final String normalizedString = Normalizer.normalize(sb, Normalizer.Form.NFC);
|
/external/tcpdump/ |
print-snmp.c | 12 * 2. Redistributions in binary form must reproduce the above copyright 245 static const char *Form[] = { 338 u_char form, class; /* tag info */ member in struct:be 406 u_char form, class, id; local 426 form = (*p & 0xe0) >> 5; /* move upper 3 bits to lower 3 */ 427 class = form >> 1; /* bits 7&6 -> bits 1&0, range 0-3 */ 428 form &= 0x1; /* bit 5 -> bit 0, range 0-1 */ 430 form = (u_char)(*p & ASN_FORM_BITS) >> ASN_FORM_SHIFT; 433 elem->form = form; [all...] |
/external/v8/benchmarks/spinning-balls/ |
v.js | 8 // * Redistributions in binary form must reproduce the above 428 function Form() { 432 this.form = create("form"); 433 this.form.setAttribute("action", "javascript:start()"); 464 this.form.appendChild(table); 465 this.form.appendChild(button); 467 document.body.appendChild(this.form); 471 Form.prototype.remove = function () { 472 document.body.removeChild(this.form); [all...] |
/external/chromium-trace/catapult/third_party/webtest/webtest/ |
forms.py | 65 def __init__(self, form, tag, name, pos, 67 self.form = form 100 """Field representing ``<select />`` form element.""" 358 class Form(object): 359 """This object represents a form that has been found in a page. 362 :param text: Unparsed html of the form 366 the full HTML of the form. 382 encoding of the form submission 410 attrs = self.html('form')[0].attr [all...] |
response.py | 37 :class:`~webtest.forms.Form` objects. Indexes are both in 38 order (from zero) and by form id (if the form is given an id). 40 See :doc:`forms` for more info on form objects. 47 def form(self): member in class:TestResponse 49 If there is only one form on the page, return it as a 50 :class:`~webtest.forms.Form` object; raise a TypeError is 51 there are no form or multiple forms. 56 "You used response.form, but no forms exist") 58 # There is more than one form [all...] |
/external/icu/icu4j/perf-tests/src/com/ibm/icu/dev/test/perf/ |
NormalizerPerformanceTest.java | 666 normalizerArgs[1] = Class.forName("java.text.Normalizer$Form").getField(compose ? "NFC" : "NFD").get(null); 669 // ? java.text.Normalizer.Form.NFC 670 // : java.text.Normalizer.Form.NFD); 699 ? java.text.Normalizer.Form.NFC 700 : java.text.Normalizer.Form.NFD);
|
/external/skia/src/sfnt/ |
SkPanose.h | 308 struct Form {
|
/prebuilts/tools/common/m2/repository/commons-validator/commons-validator/1.2.0/ |
commons-validator-1.2.0.jar | |
/external/llvm/test/MC/PowerPC/ |
ppc64-operands.s | 65 # D-Form memory operands
|
/art/compiler/debug/dwarf/ |
dwarf_constants.h | 233 enum Form : uint8_t {
|
/external/llvm/include/llvm/Support/ |
Dwarf.h | 286 enum Form : uint16_t { 287 // Attribute form encodings
|
/frameworks/base/packages/SettingsLib/src/com/android/settingslib/applications/ |
ApplicationsState.java | 54 import java.text.Normalizer.Form; 523 String tmp = Normalizer.normalize(str, Form.NFD); [all...] |
/libcore/ojluni/src/main/java/java/util/ |
Formatter.java | 551 * <td> The result should use a conversion-dependent alternate form 761 * <td> Requires the output use an alternate form. The definition of the 762 * form is specified by the conversion. [all...] |