代码搜索:Microphone array
找到约 10,000 项符合「Microphone array」的源代码
代码结果 10,000
www.eeworm.com/read/240162/4579504
c array12.c
// PR c++/12253
// Bug: We were failing to destroy the temporary A passed to the
// constructor for b[0] before going on to construct b[1].
// { dg-do run }
extern "C" int printf (const char *, ...)
www.eeworm.com/read/240162/4579511
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/240162/4579525
c array10.c
// { dg-do compile }
// { dg-options "" }
typedef int __attribute__((mode(V2SI))) vec;
vec foo[] = { (vec) {1, 2} };
www.eeworm.com/read/240162/4579527
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/240162/4579531
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/240162/4579534
c array13.c
template
struct test_disjoint_set {
static void do_test()
{
unsigned int elts[]
= { 0, 1, 2, 3 };
const int N = sizeof(elts)/sizeof(*elts);
}
};
www.eeworm.com/read/240162/4579535
c array11.c
/* PR 11665
Orgin: jwhite@cse.unl.edu
The problem was in initializer_constant_valid_p,
"for a CONSTRUCTOR, only the last element
of the CONSTRUCTOR was being checked"
(from the email
www.eeworm.com/read/240162/4579544
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/240162/4579802
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/240162/4580076
c array4.c
// PR c++/14122
extern const char str[];
template
struct A
{
template void foo();
};
template class A;