Home
last modified time | relevance | path

Searched refs:Undefined (Results 1 – 25 of 287) sorted by relevance

12345678910>>...12

/external/guice/core/test/com/googlecode/guice/bundle/
DOSGiTestActivator.java47 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/
DConnector-mbean.properties17 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/
Dinterface-descriptors.cc39 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/
Dcheck-zero-divide.ll24 ; 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/
Dinvalid-armv7.txt9 # 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 …]
Dinvalid-thumbv7.txt9 # 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 …]
Dinvalid-thumb-MSR-MClass.txt5 # Undefined encodings for mrs
14 # Undefined encodings for msr
/external/v8/test/cctest/
Dtest-decls.cc237 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/
Dlint.ll67 ; 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/
Dconvert-nan-to-bool-expected.txt90 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
Djs-continue-break-restrictions-expected.txt31 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/
Dtests.py12 from jinja2.runtime import Undefined
52 return not isinstance(value, Undefined)
57 return isinstance(value, Undefined)
Druntime.py233 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/
Dmips-got.test54 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 …]
Dmips-plt.test22 CHECK-NEXT: Section: Undefined (0x0)
30 CHECK-NEXT: Section: Undefined (0x0)
/external/v8/src/crankshaft/
Dhydrogen-types.cc24 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/
Dparse-expected.txt33 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/
Dreadobj-elf-versioning.test36 ELF32: Section: Undefined (0x0)
44 ELF64: Section: Undefined (0x0)
/external/valgrind/none/tests/darwin/
Daccess_extended.stderr.exp2 access_extended.c(F_OK) = 0 (Undefined error: 0)
/external/clang/lib/Sema/
DSema.cpp475 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/
Dinput_pbm_p4.miff2 class=DirectClass colors=0 alpha-trait=Undefined
Dinput_pbm_p1.miff2 class=DirectClass colors=0 alpha-trait=Undefined
Dinput_xc_black.miff2 class=DirectClass colors=0 alpha-trait=Undefined
Dinput_wbmp.miff2 class=PseudoClass colors=2 alpha-trait=Undefined
Dinput_im1.miff2 class=PseudoClass colors=2 alpha-trait=Undefined

12345678910>>...12