/external/guice/core/test/com/googlecode/guice/bundle/ |
D | OSGiTestActivator.java | 47 public static class Undefined {} class in OSGiTestActivator 62 @Inject public void setA(Undefined undefined) {} in setA() 64 @Inject protected void setB(Undefined undefined) {} in setB() 66 @Inject void setC(Undefined undefined) {} in setC() 68 @Inject private void setD(Undefined undefined) {} in setD() 70 @Inject public Undefined a; 72 @Inject protected Undefined b; 74 @Inject Undefined c; 76 @Inject private Undefined d; 84 @Inject public void setA(Undefined undefined) {} in setA() [all …]
|
/external/jetty/src/resources/org/eclipse/jetty/server/jmx/ |
D | Connector-mbean.properties | 17 connections: Number of connections accepted by the server since statsReset() called. Undefined if s… 18 … connections currently open that were opened since statsReset() called. Undefined if setStatsOn(fa… 19 … number of connections opened simultaneously since statsReset() called. Undefined if setStatsOn(fa… 20 …duration in milliseconds of open connections since statsReset() called. Undefined if setStatsOn(fa… 21 …ration in milliseconds of an open connection since statsReset() called. Undefined if setStatsOn(fa… 22 …ration in milliseconds of an open connection since statsReset() called. Undefined if setStatsOn(fa… 23 …ation in milliseconds of all open connection since statsReset() called. Undefined if setStatsOn(fa… 24 …Mean: Mean number of requests per connection since statsReset() called. Undefined if setStatsOn(fa… 25 …viation of number of requests per connection since statsReset() called. Undefined if setStatsOn(fa… 26 …x: Maximum number of requests per connection since statsReset() called. Undefined if setStatsOn(fa… [all …]
|
/external/v8/src/ |
D | interface-descriptors.cc | 39 AnyTagged(zone), Type::Undefined(), parameter_count, zone); in BuildDefaultFunctionType() 94 Type::FunctionType::New(AnyTagged(zone), Type::Undefined(), 3, zone); in BuildCallInterfaceDescriptorFunctionType() 145 Type::FunctionType::New(AnyTagged(zone), Type::Undefined(), 4, zone); in BuildCallInterfaceDescriptorFunctionType() 159 Type::FunctionType::New(AnyTagged(zone), Type::Undefined(), 1, zone); in BuildCallInterfaceDescriptorFunctionType() 177 Type::FunctionType::New(AnyTagged(zone), Type::Undefined(), 2, zone); in BuildCallInterfaceDescriptorFunctionType() 245 Type::FunctionType::New(AnyTagged(zone), Type::Undefined(), 4, zone); in BuildCallInterfaceDescriptorFunctionType() 269 AnyTagged(zone), Type::Undefined(), arg_count, zone); in BuildCallInterfaceDescriptorFunctionType() 288 Type::FunctionType::New(AnyTagged(zone), Type::Undefined(), 5, zone); in BuildCallInterfaceDescriptorFunctionType() 311 Type::FunctionType::New(AnyTagged(zone), Type::Undefined(), 4, zone); in BuildCallInterfaceDescriptorFunctionType() 333 Type::FunctionType::New(AnyTagged(zone), Type::Undefined(), 1, zone); in BuildCallInterfaceDescriptorFunctionType() [all …]
|
/external/llvm/test/Analysis/Lint/ |
D | check-zero-divide.ll | 24 ; CHECK: Undefined behavior: Division by zero 31 ; CHECK: Undefined behavior: Division by zero 38 ; CHECK: Undefined behavior: Division by zero 45 ; CHECK: Undefined behavior: Division by zero 52 ; CHECK: Undefined behavior: Division by zero 59 ; CHECK: Undefined behavior: Division by zero 66 ; CHECK: Undefined behavior: Division by zero 73 ; CHECK: Undefined behavior: Division by zero
|
/external/llvm/test/MC/Disassembler/ARM/ |
D | invalid-armv7.txt | 9 # Undefined encodings for bfi 24 # Undefined encodings for cdp2 33 # Undefined encodings for cps* 69 # Undefined encoding space for hint instructions 78 # Undefined encodings for ldc 95 # Undefined encodings for ldm 113 # Undefined encodings for ldr 152 # Undefined encodings for mcr 169 # Undefined encodings for mov/lsl 228 # Undefined encodings for mrrc2 [all …]
|
D | invalid-thumbv7.txt | 9 # Undefined encoding for b.cc 26 # Undefined encoding for it 43 # Undefined encoding for ldm 53 # Undefined encoding for ldrd 73 # Undefined encodings for ldrbt 89 # Undefined encodings for ldrsh 131 # Undefined encoding for push 141 # Undefined encoding for stmia 157 # Undefined encodings for str 233 # Undefined encodings for strd [all …]
|
D | invalid-thumb-MSR-MClass.txt | 5 # Undefined encodings for mrs 14 # Undefined encodings for msr
|
/external/v8/test/cctest/ |
D | test-decls.cc | 237 0, 0, EXPECT_RESULT, Undefined(CcTest::isolate())); in TEST() 258 0, 0, EXPECT_RESULT, Undefined(CcTest::isolate())); in TEST() 288 0, 0, EXPECT_RESULT, Undefined(isolate)); in TEST() 309 0, 0, EXPECT_RESULT, Undefined(isolate)); in TEST() 321 0, 0, EXPECT_RESULT, Undefined(isolate)); in TEST() 371 0, 0, EXPECT_RESULT, Undefined(CcTest::isolate())); in TEST() 392 0, 0, EXPECT_RESULT, Undefined(CcTest::isolate())); in TEST() 436 EXPECT_RESULT, Undefined(CcTest::isolate())); in TEST() 452 EXPECT_RESULT, Undefined(CcTest::isolate())); in TEST() 489 EXPECT_RESULT, Undefined(CcTest::isolate())); in TEST() [all …]
|
/external/llvm/test/Other/ |
D | lint.ll | 67 ; CHECK: Undefined behavior: Null pointer dereference 69 ; CHECK: Undefined behavior: Null pointer dereference 83 ; CHECK: Undefined behavior: Buffer overflow 86 ; CHECK: Undefined behavior: Buffer overflow 90 ; CHECK: Undefined behavior: Buffer overflow 104 ; CHECK-NOT: Undefined behavior: Buffer overflow 125 ; CHECK: Undefined behavior: Branch to non-blockaddress 132 ; CHECK: Undefined behavior: Call with "tail" keyword references alloca 168 ; CHECK: Undefined behavior: Undef pointer dereference 186 ; CHECK: Undefined behavior: indirectbr with no destinations
|
/external/v8/test/webkit/ |
D | convert-nan-to-bool-expected.txt | 90 PASS (function(){var Undefined = undefined; return Undefined-- ? true : false})() is false 91 PASS (function(){var Undefined = undefined; return Undefined++ ? true : false})() is false 92 PASS (function(){var Undefined = undefined; return --Undefined ? true : false})() is false 93 PASS (function(){var Undefined = undefined; return ++Undefined ? true : false})() is false
|
D | js-continue-break-restrictions-expected.txt | 31 PASS if (0) { L:{ continue L; } } threw exception SyntaxError: Undefined label 'L'. 36 PASS if (0) { A:L:{ continue L; } } threw exception SyntaxError: Undefined label 'L'. 40 PASS if (0) { L:A:{ continue L; } } threw exception SyntaxError: Undefined label 'L'. 45 PASS if(0){ A:for(;;) L:continue L; } threw exception SyntaxError: Undefined label 'L'. 50 PASS if(0){ A:do L:continue L; while(0); } threw exception SyntaxError: Undefined label 'L'. 55 PASS if(0){ A:while(0) L:continue L; } threw exception SyntaxError: Undefined label 'L'.
|
/external/opencv3/3rdparty/jinja2/ |
D | tests.py | 12 from jinja2.runtime import Undefined 52 return not isinstance(value, Undefined) 57 return isinstance(value, Undefined)
|
D | runtime.py | 233 if isinstance(item, Undefined): 442 class Undefined(object): class 527 class DebugUndefined(Undefined): 554 class StrictUndefined(Undefined): 576 Undefined._fail_with_undefined_error 581 del Undefined.__slots__, DebugUndefined.__slots__, StrictUndefined.__slots__
|
/external/llvm/test/tools/llvm-readobj/ |
D | mips-got.test | 54 GOT-EXE-NEXT: Section: Undefined (0x0) 126 GOT-SO-NEXT: Section: Undefined (0x0) 135 GOT-SO-NEXT: Section: Undefined (0x0) 144 GOT-SO-NEXT: Section: Undefined (0x0) 153 GOT-SO-NEXT: Section: Undefined (0x0) 162 GOT-SO-NEXT: Section: Undefined (0x0) 171 GOT-SO-NEXT: Section: Undefined (0x0) 258 GOT-TLS-NEXT: Section: Undefined (0x0) 267 GOT-TLS-NEXT: Section: Undefined (0x0) 276 GOT-TLS-NEXT: Section: Undefined (0x0) [all …]
|
D | mips-plt.test | 22 CHECK-NEXT: Section: Undefined (0x0) 30 CHECK-NEXT: Section: Undefined (0x0)
|
/external/v8/src/crankshaft/ |
D | hydrogen-types.cc | 24 if (type->Is(T::Undefined())) return HType::Undefined(); in FromType() 51 if (value->IsUndefined()) return HType::Undefined(); in FromValue()
|
/external/v8/test/webkit/fast/js/kde/ |
D | parse-expected.txt | 33 PASS function test() { while(0) break lab; } lab: 1 threw exception SyntaxError: Undefined label 'l… 34 PASS function test() { while(0) continue lab; } lab: 1 threw exception SyntaxError: Undefined label… 39 PASS function test() { while(0) break lab } lab: 1 threw exception SyntaxError: Undefined label 'la… 40 PASS function test() { while(0) continue lab } lab: 1 threw exception SyntaxError: Undefined label …
|
/external/llvm/test/Object/ |
D | readobj-elf-versioning.test | 36 ELF32: Section: Undefined (0x0) 44 ELF64: Section: Undefined (0x0)
|
/external/valgrind/none/tests/darwin/ |
D | access_extended.stderr.exp | 2 access_extended.c(F_OK) = 0 (Undefined error: 0)
|
/external/clang/lib/Sema/ |
D | Sema.cpp | 475 SmallVectorImpl<std::pair<NamedDecl *, SourceLocation> > &Undefined) { in getUndefinedButUsed() 500 Undefined.push_back(std::make_pair(ND, I->second)); in getUndefinedButUsed() 506 std::sort(Undefined.begin(), Undefined.end(), in getUndefinedButUsed() 526 SmallVector<std::pair<NamedDecl *, SourceLocation>, 16> Undefined; in checkUndefinedButUsed() local 527 S.getUndefinedButUsed(Undefined); in checkUndefinedButUsed() 528 if (Undefined.empty()) return; in checkUndefinedButUsed() 531 I = Undefined.begin(), E = Undefined.end(); I != E; ++I) { in checkUndefinedButUsed() 1269 llvm::DenseMap<NamedDecl *, SourceLocation> &Undefined) { in ReadUndefinedButUsed() argument
|
/external/ImageMagick/PerlMagick/t/reference/read/ |
D | input_pbm_p4.miff | 2 class=DirectClass colors=0 alpha-trait=Undefined
|
D | input_pbm_p1.miff | 2 class=DirectClass colors=0 alpha-trait=Undefined
|
D | input_xc_black.miff | 2 class=DirectClass colors=0 alpha-trait=Undefined
|
D | input_wbmp.miff | 2 class=PseudoClass colors=2 alpha-trait=Undefined
|
D | input_im1.miff | 2 class=PseudoClass colors=2 alpha-trait=Undefined
|