Home
last modified time | relevance | path

Searched refs:something (Results 1 – 25 of 1911) sorted by relevance

12345678910>>...77

/external/libxml2/result/
Dent_738805.xml.rde9 something should appear after colon: something
10 something should appear after colon: something
11 something should appear after colon: something
12 something should appear after colon: something
Dent_738805.xml.sax4 SAX.entityDecl(a, 1, (null), (null), something)
21 SAX.characters(something, 9)
25 SAX.characters(something, 9)
31 SAX.characters(something, 9)
36 SAX.characters(something, 9)
41 SAX.characters(something, 9)
46 SAX.characters(something, 9)
53 SAX.characters(something, 9)
59 SAX.characters(something, 9)
Dent_738805.xml.sax24 SAX.entityDecl(a, 1, (null), (null), something)
21 SAX.characters(something, 9)
25 SAX.characters(something, 9)
31 SAX.characters(something, 9)
36 SAX.characters(something, 9)
41 SAX.characters(something, 9)
46 SAX.characters(something, 9)
53 SAX.characters(something, 9)
59 SAX.characters(something, 9)
/external/llvm-project/llvm/test/CodeGen/AArch64/
Darm64-memset-inline.ll58 ; CHECK-NEXT: bl something
62 call void @something(i8* %cast)
69 ; CHECK-NEXT: bl something
73 call void @something(i8* %cast)
81 ; CHECK-NEXT: bl something
85 call void @something(i8* %cast)
94 ; CHECK-NEXT: bl something
98 call void @something(i8* %cast)
106 ; CHECK-NEXT: bl something
110 call void @something(i8* %cast)
[all …]
/external/deqp-deps/glslang/Test/baseResults/
Dhlsl.basic.geom.out12 0:16 'OutputStream' ( out structure{ temp float myfloat, temp int something})
16 0:19 'Vert' ( temp structure{ temp float myfloat, temp int something})
35 0:20 something: direct index for structure ( temp int)
36 0:20 'Vert' ( temp structure{ temp float myfloat, temp int something})
49 0:22 'Vert' ( temp structure{ temp float myfloat, temp int something})
53 0:? 'OutputStream.something' (layout( location=1) out int)
54 0:22 something: direct index for structure ( temp int)
55 0:22 'Vert' ( temp structure{ temp float myfloat, temp int something})
64 0:23 'Vert' ( temp structure{ temp float myfloat, temp int something})
68 0:? 'OutputStream.something' (layout( location=1) out int)
[all …]
/external/angle/third_party/vulkan-deps/glslang/src/Test/baseResults/
Dhlsl.basic.geom.out12 0:16 'OutputStream' ( out structure{ temp float myfloat, temp int something})
16 0:19 'Vert' ( temp structure{ temp float myfloat, temp int something})
35 0:20 something: direct index for structure ( temp int)
36 0:20 'Vert' ( temp structure{ temp float myfloat, temp int something})
49 0:22 'Vert' ( temp structure{ temp float myfloat, temp int something})
53 0:? 'OutputStream.something' (layout( location=1) out int)
54 0:22 something: direct index for structure ( temp int)
55 0:22 'Vert' ( temp structure{ temp float myfloat, temp int something})
64 0:23 'Vert' ( temp structure{ temp float myfloat, temp int something})
68 0:? 'OutputStream.something' (layout( location=1) out int)
[all …]
/external/javassist/src/test/scoped/
DUnscopedAnnotationUsage.java18 @TestAnnotation(something="notDefault")
21 @TestAnnotation(something="notDefault")
24 @TestAnnotation(something="notDefault")
25 public UnscopedAnnotationUsage(@TestAnnotation(something="notDefault") int param) {} in UnscopedAnnotationUsage()
27 @TestAnnotation(something="notDefault")
28 public void doSomething(@TestAnnotation(something="notDefault") int param) {} in doSomething()
/external/javassist/src/test/scoped/jar1/
DFullyScopedAnnotationUsage.java18 @ScopedTestAnnotation(something="notDefault")
21 @ScopedTestAnnotation(something="notDefault")
24 @ScopedTestAnnotation(something="notDefault")
25 public FullyScopedAnnotationUsage(@ScopedTestAnnotation(something="notDefault") int param) {} in FullyScopedAnnotationUsage()
27 @ScopedTestAnnotation(something="notDefault")
28 public void doSomething(@ScopedTestAnnotation(something="notDefault") int param) {} in doSomething()
DScopedAnnotationUsage.java20 @TestAnnotation(something="notDefault")
23 @TestAnnotation(something="notDefault")
26 @TestAnnotation(something="notDefault")
27 public ScopedAnnotationUsage(@TestAnnotation(something="notDefault") int param) {} in ScopedAnnotationUsage()
29 @TestAnnotation(something="notDefault")
30 public void doSomething(@TestAnnotation(something="notDefault") int param) {} in doSomething()
/external/libxml2/result/noent/
Dent_738805.xml.sax24 SAX.entityDecl(a, 1, (null), (null), something)
21 SAX.characters(something, 9)
24 SAX.characters(something, 9)
29 SAX.characters(something, 9)
32 SAX.characters(something, 9)
36 SAX.characters(something, 9)
40 SAX.characters(something, 9)
45 SAX.characters(something, 9)
49 SAX.characters(something, 9)
/external/python/mock/mock/tests/
Dtestwith.py13 something = sentinel.Something variable
24 self.assertEqual(something, sentinel.Something2, "unpatched")
25 self.assertEqual(something, sentinel.Something)
31 self.assertEqual(something, sentinel.Something2, "unpatched")
33 self.assertEqual(something, sentinel.Something)
38 self.assertEqual(something, mock_something, "unpatched")
41 self.assertEqual(something, sentinel.Something)
46 something = 'foo' variable in WithTest.test_patch_object_with_statement.Foo
47 original = Foo.something
49 self.assertNotEqual(Foo.something, original, "unpatched")
[all …]
/external/python/cpython3/Lib/unittest/test/testmock/
Dtestwith.py9 something = sentinel.Something variable
20 self.assertEqual(something, sentinel.Something2, "unpatched")
21 self.assertEqual(something, sentinel.Something)
27 self.assertEqual(something, sentinel.Something2, "unpatched")
29 self.assertEqual(something, sentinel.Something)
34 self.assertEqual(something, mock_something, "unpatched")
37 self.assertEqual(something, sentinel.Something)
42 something = 'foo' variable in WithTest.test_patch_object_with_statement.Foo
43 original = Foo.something
45 self.assertNotEqual(Foo.something, original, "unpatched")
[all …]
/external/pcre/dist2/testdata/
Dtestinput921 (?![^(\040)<>@,;:".\\\[\]\000-\037\x80-\xff]) # ..not followed by something that could be part of a…
26 \\ [^\x80-\xff] # Escaped something (something != CR)
35 (?![^(\040)<>@,;:".\\\[\]\000-\037\x80-\xff]) # ..not followed by something that could be part of a…
40 \\ [^\x80-\xff] # Escaped something (something != CR)
49 (?![^(\040)<>@,;:".\\\[\]\000-\037\x80-\xff]) # ..not followed by something that could be part of a…
62 (?![^(\040)<>@,;:".\\\[\]\000-\037\x80-\xff]) # ..not followed by something that could be part of a…
72 (?![^(\040)<>@,;:".\\\[\]\000-\037\x80-\xff]) # ..not followed by something that could be part of a…
77 \\ [^\x80-\xff] # Escaped something (something != CR)
89 \\ [^\x80-\xff] # Escaped something (something != CR)
100 (?![^(\040)<>@,;:".\\\[\]\000-\037\x80-\xff]) # ..not followed by something that could be part of a…
[all …]
Dtestinput1118 (?![^(\040)<>@,;:".\\\[\]\000-\037\x80-\xff]) # ..not followed by something that could be part of a…
23 \\ [^\x80-\xff] # Escaped something (something != CR)
32 (?![^(\040)<>@,;:".\\\[\]\000-\037\x80-\xff]) # ..not followed by something that could be part of a…
37 \\ [^\x80-\xff] # Escaped something (something != CR)
46 (?![^(\040)<>@,;:".\\\[\]\000-\037\x80-\xff]) # ..not followed by something that could be part of a…
59 (?![^(\040)<>@,;:".\\\[\]\000-\037\x80-\xff]) # ..not followed by something that could be part of a…
69 (?![^(\040)<>@,;:".\\\[\]\000-\037\x80-\xff]) # ..not followed by something that could be part of a…
74 \\ [^\x80-\xff] # Escaped something (something != CR)
86 \\ [^\x80-\xff] # Escaped something (something != CR)
97 (?![^(\040)<>@,;:".\\\[\]\000-\037\x80-\xff]) # ..not followed by something that could be part of a…
[all …]
Dtestoutput929 (?![^(\040)<>@,;:".\\\[\]\000-\037\x80-\xff]) # ..not followed by something that could be part of a…
34 \\ [^\x80-\xff] # Escaped something (something != CR)
43 (?![^(\040)<>@,;:".\\\[\]\000-\037\x80-\xff]) # ..not followed by something that could be part of a…
48 \\ [^\x80-\xff] # Escaped something (something != CR)
57 (?![^(\040)<>@,;:".\\\[\]\000-\037\x80-\xff]) # ..not followed by something that could be part of a…
70 (?![^(\040)<>@,;:".\\\[\]\000-\037\x80-\xff]) # ..not followed by something that could be part of a…
80 (?![^(\040)<>@,;:".\\\[\]\000-\037\x80-\xff]) # ..not followed by something that could be part of a…
85 \\ [^\x80-\xff] # Escaped something (something != CR)
97 \\ [^\x80-\xff] # Escaped something (something != CR)
108 (?![^(\040)<>@,;:".\\\[\]\000-\037\x80-\xff]) # ..not followed by something that could be part of a…
[all …]
/external/tensorflow/tensorflow/lite/micro/tools/make/
Dfix_arduino_subfolders_test.sh24 EXAMPLES_SUBDIR_CPP=${LIBRARY_DIR}/examples/something/foo/fish.cpp
28 EXAMPLES_SUBDIR_HEADER=${LIBRARY_DIR}/examples/something/foo/fish.h
38 EXAMPLE_INO_FILE=${LIBRARY_DIR}/examples/something/main.ino
45 EXPECTED_EXAMPLES_SUBDIR_CPP=${LIBRARY_DIR}/examples/something/foo_fish.cpp
51 EXPECTED_EXAMPLES_SUBDIR_HEADER=${LIBRARY_DIR}/examples/something/foo_fish.h
68 EXPECTED_EXAMPLE_INO_FILE=${LIBRARY_DIR}/examples/something/something.ino
/external/objenesis/tck/src/main/java/org/objenesis/tck/candidates/
DConstructorWithArguments.java23 private final String something; field in ConstructorWithArguments
26 public ConstructorWithArguments(String something, int another) { in ConstructorWithArguments() argument
27 this.something = something; in ConstructorWithArguments()
32 return something + another; in toString()
DSerializableConstructorWithArguments.java27 private final String something; field in SerializableConstructorWithArguments
30 public SerializableConstructorWithArguments(String something, int another) { in SerializableConstructorWithArguments() argument
31 this.something = something; in SerializableConstructorWithArguments()
36 return something + another; in toString()
/external/llvm-project/flang/test/Semantics/
Dallocate03.f9020 type(SomeType(4, l, :)), pointer :: something component
63 allocate(b1%something)
67 allocate(b2%something)
71 allocate(b3%something)
93 allocate(SomeType(4, b1%l, 9):: b1%something)
94 allocate(b2%something, source=bsrc)
95 allocate(SomeType(4, 5, 8):: b3%something)
/external/clang/test/ARCMT/
Drewrite-block-var.m.result8 -(Foo *)something;
16 [x something];
23 x = [p something];
30 [x something];
40 [x something];
43 [x something];
Drewrite-block-var.m8 -(Foo *)something; method
16 [x something];
23 x = [p something];
30 [x something];
40 [x something];
43 [x something];
/external/llvm-project/clang/test/ARCMT/
Drewrite-block-var.m.result8 -(Foo *)something;
16 [x something];
23 x = [p something];
30 [x something];
40 [x something];
43 [x something];
Drewrite-block-var.m8 -(Foo *)something; method
16 [x something];
23 x = [p something];
30 [x something];
40 [x something];
43 [x something];
/external/clang/test/SemaCXX/
Dtypo-correction-delayed.cpp16 void something(A, B);
19 something(obj.fixbin, // expected-error {{did you mean 'fizbin'?}} in test()
21 something(obj.toobat, // expected-error {{did you mean 'foobar'?}} in test()
23 something(obj.fixbin, // expected-error {{did you mean 'fizbin'?}} in test()
25 something(obj.toobat, // expected-error {{did you mean 'foobar'?}} in test()
28 something(obj.boohoo, // expected-error-re {{no member named 'boohoo' in 'D'{{$}}}} in test()
31 something(obj.boobar, // expected-error-re {{no member named 'boobar' in 'D'{{$}}}} in test()
/external/llvm-project/clang/test/SemaCXX/
Dtypo-correction-delayed.cpp16 void something(A, B);
19 something(obj.fixbin, // expected-error {{did you mean 'fizbin'?}} in test()
21 something(obj.toobat, // expected-error {{did you mean 'foobar'?}} in test()
23 something(obj.fixbin, // expected-error {{did you mean 'fizbin'?}} in test()
25 something(obj.toobat, // expected-error {{did you mean 'foobar'?}} in test()
28 something(obj.boohoo, // expected-error-re {{no member named 'boohoo' in 'D'{{$}}}} in test()
31 something(obj.boobar, // expected-error-re {{no member named 'boobar' in 'D'{{$}}}} in test()

12345678910>>...77