Searched refs:mixed (Results 1 - 19 of 19) sorted by relevance

/external/clang/test/SemaCXX/
H A Dmember-pointer.cpp191 void mixed();
192 static void mixed(int);
202 bind(&mixed); // expected-error {{no matching function for call}}
203 bind(&A::mixed); // expected-error {{no matching function for call}}
215 bindmem(&mixed); // expected-error {{no matching function for call}}
216 bindmem(&A::mixed);
228 bindfn(&mixed); // expected-error {{no matching function for call}}
229 bindfn(&A::mixed); // expected-error {{no matching function for call}}
241 void mixed();
242 static void mixed(in
[all...]
/external/icu4c/test/cintltst/
H A Dcstrcase.c423 mixed[]= { 0x61, 0x42, 0x130, 0x49, 0x131, 0x3d0, 0xdf, 0xfb03, 0xd93f, 0xdfff }, local
461 mixed, sizeof(mixed)/U_SIZEOF_UCHAR,
480 mixed, sizeof(mixed)/U_SIZEOF_UCHAR,
496 uprv_memcpy(buffer, mixed, sizeof(mixed));
497 buffer[sizeof(mixed)/U_SIZEOF_UCHAR]=0;
516 uprv_memcpy(buffer, mixed, sizeof(mixed));
627 mixed[]= { 0x61, 0x42, 0x131, 0x3a3, 0xdf, 0xfb03, 0xd93f, 0xdfff, 0 }, local
[all...]
/external/webkit/Source/JavaScriptCore/tests/mozilla/js1_6/Array/
H A Dregress-290592.js175 var mixed = [0, '0', 0]; variable
476 actual = mixed.every(isString);
482 reportCompare(expect, actual, 'mixed: every element is a string');
514 actual = mixed.every(obj.isString, obj);
520 reportCompare(expect, actual, 'mixed: every element is a string, via object callback');
577 actual = mixed.some(isString);
583 reportCompare(expect, actual, 'mixed: some element is a string');
614 actual = mixed.some(obj.isString, obj);
620 reportCompare(expect, actual, 'mixed: some element is a string, via object callback');
652 actual = mixed
[all...]
/external/icu4c/test/intltest/
H A Dutxttest.cpp1033 mixed = UTEXT_INITIALIZER, local
1038 utext_openUChars(&mixed, _mixed, -1, &status);
1048 UTEXT_SETNATIVEINDEX(&mixed, 0);
1050 result = utext_caseCompare(&mixed, -1, &otherDefault, -1, U_FOLD_CASE_DEFAULT, &status);
1054 UTEXT_SETNATIVEINDEX(&mixed, 0);
1056 result = utext_caseCompareNativeLimit(&mixed, -1, &otherDefault, -1, U_FOLD_CASE_DEFAULT, &status);
1062 UTEXT_SETNATIVEINDEX(&mixed, 0);
1064 result = utext_caseCompare(&mixed, -1, &otherExcludeSpecialI, -1, U_FOLD_CASE_EXCLUDE_SPECIAL_I, &status);
1068 UTEXT_SETNATIVEINDEX(&mixed, 0);
1070 result = utext_caseCompareNativeLimit(&mixed,
[all...]
H A Dustrtest.cpp391 mixed(TRUE, _mixed, -1),
399 result=mixed.caseCompare(otherDefault, U_FOLD_CASE_DEFAULT);
400 if(result!=0 || 0!=mixed.caseCompareBetween(0, INT32_MAX, otherDefault, 0, INT32_MAX, U_FOLD_CASE_DEFAULT)) {
401 errln("error: mixed.caseCompare(other, default)=%ld instead of 0\n", result);
403 result=mixed.caseCompare(otherExcludeSpecialI, U_FOLD_CASE_EXCLUDE_SPECIAL_I);
405 errln("error: mixed.caseCompare(otherExcludeSpecialI, U_FOLD_CASE_EXCLUDE_SPECIAL_I)=%ld instead of 0\n", result);
407 result=mixed.caseCompare(otherDefault, U_FOLD_CASE_EXCLUDE_SPECIAL_I);
408 if(result==0 || 0==mixed.caseCompareBetween(0, INT32_MAX, otherDefault, 0, INT32_MAX, U_FOLD_CASE_EXCLUDE_SPECIAL_I)) {
409 errln("error: mixed.caseCompare(other, U_FOLD_CASE_EXCLUDE_SPECIAL_I)=0 instead of !=0\n");
413 result=mixed
[all...]
/external/qemu/audio/
H A Ddsoundaudio.c83 DWORD mixed; member in struct:__anon8983
619 ds->mixed = 0;
688 ds->mixed += decr << hwshift;
690 dolog ("played %lu mixed %lu diff %ld sec %f\n",
692 ds->mixed,
693 ds->mixed - ds->played,
694 abs (ds->mixed - ds->played) / (double) hw->info.bytes_per_second);
H A Daudio_template.h505 int mixed = local
511 dolog ("Silence will be mixed %d\n", mixed);
513 sw->total_hw_samples_mixed += mixed;
/external/libvpx/examples/includes/geshi/geshi/
H A Dgnuplot.php157 // mixed arguments
/external/v8/test/mjsunit/
H A Dcyrillic.js184 var mixed = full ? "[a-\uffff]" : "[a-" + cyrillic.LAST + "]";
189 var re = new RegExp(mixed, flag);
H A Dswitch.js336 // mixed | oddball | non-target |
346 mixed: ['abc', 1, 'def', 2, 'ghi', 3, 'jkl', 4]
458 test('mixed');
/external/chromium/sdch/open-vcdiff/vsprojects/
H A Dvcdiff_test.bat100 rem vcdiff with mixed stdin/stdout.
105 || ( echo Encode with mixed arguments failed ^
110 || ( echo Decode with mixed arguments failed ^
124 || ( echo Encode with mixed arguments failed ^
129 || ( echo Decode with mixed arguments failed ^
/external/v8/test/cctest/
H A Dtest-strings.cc314 // A mixed ascii and non-ascii string
327 v8::Handle<v8::String> mixed = v8::String::New(mixed_string, 5); local
328 CHECK_EQ(10, mixed->Utf8Length());
337 int written = mixed->WriteUtf8(buffer, i, &chars_written);
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.apache.ant_1.7.1.v20090120-1145/bin/
H A Dant250 format=mixed
/external/llvm/utils/TableGen/
H A DFixedLenDecoderEmitter.cpp132 bool Mixed; // a mixed region contains both set and unset bits
164 Filter(FilterChooser &owner, unsigned startBit, unsigned numBits, bool mixed);
366 void runSingleFilter(unsigned startBit, unsigned numBit, bool mixed);
404 bool mixed)
405 : Owner(&owner), StartBit(startBit), NumBits(numBits), Mixed(mixed) {
1000 bool mixed) {
1260 // Then regions of mixed bits (both known and unitialized bit values allowed).
403 Filter(FilterChooser &owner, unsigned startBit, unsigned numBits, bool mixed) argument
999 runSingleFilter(unsigned startBit, unsigned numBit, bool mixed) argument
/external/libvpx/vp8/encoder/x86/
H A Dquantize_mmx.asm263 ; Substitute the sse assembly for the old mmx mixed assembly/C. The
/external/libvpx/examples/includes/ASCIIMathPHP-2.0/
H A DASCIIMathPHP-2.0.class.php1061 * @return mixed
/external/webkit/Tools/Scripts/
H A Dwebkitdirs.pm1331 $newPythonPath = `cygpath --mixed --path $newPythonPath`;
/external/libvpx/examples/includes/geshi/
H A Dgeshi.php1680 * @param mixed An array of line numbers to highlight, or just a line
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
H A Dorg.eclipse.pde.core_3.6.1.v20100902_r361.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...

Completed in 353 milliseconds