代码搜索:Microphone array
找到约 10,000 项符合「Microphone array」的源代码
代码结果 10,000
www.eeworm.com/read/470693/1456554
c array4.c
// { dg-do compile }
// Origin: Markus Breuer
// PR c++/6944
// Fail to synthesize copy constructor of multi-dimensional
// array of class.
#include
class Array
www.eeworm.com/read/470693/1456565
c array5.c
// { dg-do run }
// Copyright (C) 2002 Free Software Foundation
// Contributed by Kriang Lerdsuwanakij
// Incorrect construction and destruction of multi-dimensional
www.eeworm.com/read/470693/1456567
c array6.c
// { dg-do compile }
char arr [][4] = { "one", "two" };
const char arr2[][4] = { "one", "two" };
signed char arr3[][4] = { "one", "two" };
const unsigned char arr4[][4] = { "one", "two" };
volatile w
www.eeworm.com/read/470693/1456575
c array3.c
// PR c++/6331
// Bug: we were generating a badly cv-qualified ARRAY_TYPE in the
// synthesized copy constructor for A, which then became the canonical
// version, confusing later uses.
struct A {
www.eeworm.com/read/470693/1456724
c array1.c
// Test typeid of multidimensional array with no bounds.
// { dg-do compile }
#include
int main()
{
const char *s = typeid(double[][]).name(); // { dg-error "bounds|confused" }
return 0
www.eeworm.com/read/470693/1457152
c array2.c
int i;
struct S {
S () {
++i;
};
S (int) {
};
};
int main()
{
S s[3][3] = { 2 };
if (i != 8)
return 1;
}
www.eeworm.com/read/470693/1457154
c array1.c
int i;
struct S {
S (int) {
++i;
if (i == 3)
throw 3;
};
S () {}
~S() {
--i;
}
};
int main()
{
try {
S s[5] = { 0, 1, 2, 3, 4 };
} catch (...) {
}
if (i !=
www.eeworm.com/read/470693/1457161
c array9.c
// Build don't link:
template class A {
T *d;
public: void f() { (T[10])d; }
};
www.eeworm.com/read/470693/1457392
c array4.c
// Build don't link:
// Origin: j_bouis@hotmail.com
enum { FOO = 3 };
int* arr = new int[FOO];
www.eeworm.com/read/470693/1457447
c array5.c
// Build don't link:
// We tried to create a temporary of unknown size and crashed.
extern int a1[];
extern int a2[];
int foo(int p)
{
int x = (p ? a1 : a2)[1];
return x;
}