代码搜索:Microphone array
找到约 10,000 项符合「Microphone array」的源代码
代码结果 10,000
www.eeworm.com/read/470720/1444593
c array1.c
// Test that completing an array declared with a typedef doesn't change
// the typedef.
// { dg-do run }
typedef int iArr[];
const iArr array4={
1, 2, 3, 4
};
const iArr array3={
1, 2, 3
};
c
www.eeworm.com/read/470720/1444595
c array7.c
struct S {
virtual void v () {}
void f (const float g[3]);
float h[3];
};
void g () {
S s1, s2;
s1 = s2;
}
void S::f (const float g[3]) {}
www.eeworm.com/read/470720/1444608
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/470720/1444619
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/470720/1444621
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/470720/1444629
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/470720/1444778
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/470720/1445206
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/470720/1445208
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/470720/1445215
c array9.c
// Build don't link:
template class A {
T *d;
public: void f() { (T[10])d; }
};