HomeSort by relevance Sort by last modified time
    Searched full:duplicate (Results 26 - 50 of 6812) sorted by null

12 3 4 5 6 7 8 91011>>

  /external/clang/test/SemaObjC/
duplicate-ivar-in-class-extension.m 12 int ivar; // expected-error {{duplicate member 'ivar'}}
13 int another_ivar; // expected-error {{duplicate member 'another_ivar'}}
14 int iSuper; // expected-error {{duplicate member 'iSuper'}}
30 return self->ivar; // would be ambiguous if the duplicate ivar were allowed
duplicate-ivar-check.m 13 int one; // expected-error {{duplicate member 'one'}}
20 int fill_B; // expected-error {{duplicate member 'fill_B'}}
  /external/libxml2/result/VC/
DuplicateType 1 ./test/VC/DuplicateType:3: validity error : Definition of a has duplicate references of c
DuplicateType.rdr 1 ./test/VC/DuplicateType:3: validity error : Definition of a has duplicate references of c
  /external/libxml2/test/VC/
DuplicateType 5 <a> violates [ VC: No Duplicate Types ] </a>
  /prebuilts/go/darwin-x86/test/
switch7.go 7 // Verify that type switch statements with duplicate cases are detected
18 case int: // ERROR "duplicate case int in type switch"
21 case error: // ERROR "duplicate case error in type switch"
23 case fmt.Stringer: // ERROR "duplicate case fmt.Stringer in type switch"
30 case struct { // ERROR "duplicate case struct { i int .tag1. } in type switch"
  /prebuilts/go/linux-x86/test/
switch7.go 7 // Verify that type switch statements with duplicate cases are detected
18 case int: // ERROR "duplicate case int in type switch"
21 case error: // ERROR "duplicate case error in type switch"
23 case fmt.Stringer: // ERROR "duplicate case fmt.Stringer in type switch"
30 case struct { // ERROR "duplicate case struct { i int .tag1. } in type switch"
  /external/e2fsprogs/tests/f_dup_de/
expect-nohtree.1 6 Duplicate entry 'mailcap.dpkg-old' found.
11 Duplicate entry 'fstab' in /etc (12) found. Clear? yes
13 Duplicate entry 'localtime' in /etc (12) found. Clear? yes
15 Duplicate entry 'mailcap.dpkg-old' in /etc (12) found. Clear? yes
17 Duplicate entry 'modules.conf.old' in /etc (12) found. Clear? yes
22 Duplicate entry 'resolv.conf' in /etc (12) found. Clear? yes
24 Duplicate entry 'usb.permissions' in /etc (12) found. Clear? yes
expect.1 3 Duplicate entry 'mailcap.dpkg-old' found.
8 Duplicate entry 'fstab' in /etc (12) found. Clear? yes
10 Duplicate entry 'localtime' in /etc (12) found. Clear? yes
12 Duplicate entry 'mailcap.dpkg-old' in /etc (12) found. Clear? yes
14 Duplicate entry 'modules.conf.old' in /etc (12) found. Clear? yes
19 Duplicate entry 'resolv.conf' in /etc (12) found. Clear? yes
21 Duplicate entry 'usb.permissions' in /etc (12) found. Clear? yes
  /external/javassist/sample/duplicate/
Main.java 1 package sample.duplicate;
21 First, run sample.duplicate.Viewer without a metaobject.
23 % java sample.duplicate.Viewer
28 of sample.duplicate.DuplicatedObject.
30 % java sample.duplicate.Main
33 sample.duplicate.Viewer is loaded by javassist.tools.reflect.Loader so that
39 cl.makeReflective("sample.duplicate.Ball",
40 "sample.duplicate.DuplicatedObject",
42 cl.run("sample.duplicate.Viewer", args);
  /external/clang/test/SemaObjCXX/
objc-extern-c.mm 16 @protocol P // expected-warning {{duplicate protocol definition of 'P' is ignored}}
20 @interface I // expected-error {{duplicate}}
23 @interface I2(C) // expected-warning {{duplicate}}
  /external/llvm/test/tools/llvm-dwp/X86/
duplicate.test 1 RUN: not llvm-dwp %p/../Inputs/duplicate/c.dwo %p/../Inputs/duplicate/c.dwo -o %t 2>&1 \
4 RUN: not llvm-dwp %p/../Inputs/duplicate/c.dwo %p/../Inputs/duplicate/bc.dwp -o %t 2>&1 \
7 RUN: not llvm-dwp %p/../Inputs/duplicate/ac.dwp %p/../Inputs/duplicate/c.dwo -o %t 2>&1 \
21 DWOS: error: Duplicate DWO ID ({{.*}}) in 'c.c' and 'c.c'{{$}}
22 1DWP: error: Duplicate DWO ID ({{.*}}) in 'c.c' (from '{{.*}}ac.dwp') and 'c.c'{{$}}
23 2DWP: error: Duplicate DWO ID ({{.*}}) in 'c.c' and 'c.c' (from '{{.*}}bc.dwp'){{$}}
25 DWODWOS: error: Duplicate DWO ID ({{.*}}) in 'c.c' and 'c.c'{{$}
    [all...]
  /external/clang/test/Modules/Inputs/
category_right.h 12 @interface Foo(Duplicate)
  /external/libunwind/src/unwind/
BacktraceWrapper.c 2 * accidentally includes backtrace.o and Backtrace.o causing duplicate
  /external/libxml2/result/schemas/
derivation-ok-extension-err_0_0.err 1 ./test/schemas/derivation-ok-extension-err_0.xsd:6: element complexType: Schemas parser error : local complex type: Duplicate attribute use 'barA_1'.
  /external/smali/baksmali/src/test/resources/DuplicateTest/
DuplicateInstanceFields.smali 10 # duplicate field ignored
DuplicateStaticInstanceFields.smali 8 # duplicate field ignored
19 # duplicate field ignored
  /toolchain/binutils/binutils-2.27/gas/testsuite/gas/tic6x/
sploop-bad-5.s 1 # Test bad SPLOOP instructions and operands. Duplicate masking.
  /toolchain/binutils/binutils-2.27/ld/testsuite/ld-mmix/
b-widec3.d 6 #error: invalid symbol table: duplicate symbol `Main'
  /prebuilts/go/darwin-x86/test/fixedbugs/
bug412.go 10 x int // GCCGO_ERROR "duplicate field name .x."
11 x int // GC_ERROR "duplicate field x"
issue7214.go 7 // Issue 7214: No duplicate key error for maps with interface{} key type
11 var _ = map[interface{}]int{2: 1, 2: 1} // ERROR "duplicate key"
13 var _ = map[interface{}]int{int16(2): 1, int16(2): 1} // ERROR "duplicate key"
17 var _ = map[interface{}]int{"a": 1, "a": 1} // ERROR "duplicate key"
19 var _ = map[interface{}]int{S("a"): 1, S("a"): 1} // ERROR "duplicate key"
30 var _ = map[I]int{N(2): 1, N(2): 1} // ERROR "duplicate key"
  /prebuilts/go/linux-x86/test/fixedbugs/
bug412.go 10 x int // GCCGO_ERROR "duplicate field name .x."
11 x int // GC_ERROR "duplicate field x"
issue7214.go 7 // Issue 7214: No duplicate key error for maps with interface{} key type
11 var _ = map[interface{}]int{2: 1, 2: 1} // ERROR "duplicate key"
13 var _ = map[interface{}]int{int16(2): 1, int16(2): 1} // ERROR "duplicate key"
17 var _ = map[interface{}]int{"a": 1, "a": 1} // ERROR "duplicate key"
19 var _ = map[interface{}]int{S("a"): 1, S("a"): 1} // ERROR "duplicate key"
30 var _ = map[I]int{N(2): 1, N(2): 1} // ERROR "duplicate key"
  /toolchain/binutils/binutils-2.27/gas/testsuite/gas/i386/ilp32/lns/
lns-duplicate.d 1 #source: ../../../lns/lns-duplicate.s
3 #name: lns-duplicate
  /external/toolchain-utils/bestflags/
pipeline_worker.py 8 This module defines the helper and the worker. If there are duplicate tasks, for
13 The worker invokes the work method of the tasks that are not duplicate.
22 """Helper that filters duplicate tasks.
24 This method Continuously pulls duplicate tasks from the helper_queue. The
25 duplicate tasks need not be compiled/tested. This method also pulls completed
26 tasks from the worker queue and let the results of the duplicate tasks be the
35 helper_queue: A queue of duplicate tasks whose results need to be resolved.
39 of these tasks are needed to resolve the results of the duplicate tasks.
42 result_queue: After the results of the duplicate tasks have been resolved,
43 the duplicate tasks will be sent to the next stage via this queue
    [all...]

Completed in 410 milliseconds

12 3 4 5 6 7 8 91011>>