/external/curl/tests/ |
D | getpart.pm | 44 my $inside=0; 50 if(!$inside && ($_ =~ /^ *\<$section/)) { 51 $inside++; 53 if((1 ==$inside) && ( ($_ =~ /^ *\<$part([^>]*)/) || 56 $inside++; 67 elsif((1 ==$inside) && ($_ =~ /^ *\<\/$section\>/)) { 70 elsif((2 ==$inside) && ($_ =~ /^ *\<\/$part/)) { 71 $inside--; 81 my $inside=0; 88 if(!$inside && ($_ =~ /^ *\<$section/)) { [all …]
|
/external/robolectric-shadows/utils/src/main/java/org/robolectric/util/ |
D | Strftime.java | 50 Boolean inside = false; in format() local 64 if (!inside && c == '%') { in format() 65 inside = true; in format() 72 } else if(inside) { in format() 73 inside = false; in format() 151 inside = true; in format() 253 inside = true; in format() 395 inside = true; in format() 401 inside = true; in format() 407 inside = true; in format() [all …]
|
/external/clang/test/SemaObjC/ |
D | deprecate_function_containers.m | 5 void p_foo() {} // expected-warning {{function definition inside an Objective-C container is deprec… 9 void foo() {} // expected-warning {{function definition inside an Objective-C container is deprecat… 10 inline void v_foo() {} // expected-warning {{function definition inside an Objective-C container is… 11 static int s_foo() {return 0; } // expected-warning {{function definition inside an Objective-C con… 12 static inline int si_val() { return 1; } // expected-warning {{function definition inside an Object… 16 void cat_foo() {} // expected-warning {{function definition inside an Objective-C container is depr… 32 …_moin1(void (^callback)(id)) { // expected-warning {{function definition inside an Objective-C con…
|
D | interface-tu-variable.m | 4 int x; // expected-error {{cannot declare variable inside @interface or @protocol}} 5 int one=1; // expected-error {{cannot declare variable inside @interface or @protocol}} 9 int ddd; // expected-error {{cannot declare variable inside @interface or @protocol}} 13 char * III; // expected-error {{cannot declare variable inside @interface or @protocol}} 18 char * III2; // expected-error {{cannot declare variable inside @interface or @protocol}}
|
/external/deqp-deps/glslang/Test/baseResults/ |
D | hlsl.color.hull.tesc.out | 7 …putType-vf3-vf41[3];u1; ( temp structure{ temp 3-element array of float edges, temp float inside}) 15 0:42 'output' ( temp structure{ temp 3-element array of float edges, temp float inside}) 27 0:43 'output' ( temp structure{ temp 3-element array of float edges, temp float inside}) 39 0:44 'output' ( temp structure{ temp 3-element array of float edges, temp float inside}) 49 0:47 inside: direct index for structure ( temp float) 50 0:47 'output' ( temp structure{ temp 3-element array of float edges, temp float inside}) 58 0:49 'output' ( temp structure{ temp 3-element array of float edges, temp float inside}) 118 …nd child to first child ( temp structure{ temp 3-element array of float edges, temp float inside}) 119 … '@patchConstantResult' ( temp structure{ temp 3-element array of float edges, temp float inside}) 120 …putType-vf3-vf41[3];u1; ( temp structure{ temp 3-element array of float edges, temp float inside}) [all …]
|
/external/webrtc/webrtc/modules/desktop_capture/ |
D | mouse_cursor_monitor_win.cc | 106 bool inside = cursor_info.flags == CURSOR_SHOWING; in Capture() local 113 inside = false; in Capture() 115 if (inside) { in Capture() 117 inside = windowUnderCursor ? in Capture() 125 if (inside) in Capture() 126 inside = rect.Contains(position); in Capture() 130 callback_->OnMouseCursorPosition(inside ? INSIDE : OUTSIDE, position); in Capture()
|
/external/jacoco/org.jacoco.core/src/org/jacoco/core/internal/analysis/filter/ |
D | FinallyFilter.java | 89 final Set<AbstractInsnNode> inside = new HashSet<AbstractInsnNode>(); in filter() local 94 inside.add(i); in filter() 115 if (!inside.contains(jumpTarget)) { in filter() 141 if (continues && !inside.contains(i)) { in filter() 149 if (!inside.contains(i)) { in filter()
|
/external/python/cpython2/Lib/test/ |
D | test_sgmllib.py | 138 inside = """\ 152 self.check_events(["<!%s>" % inside], [ 153 ("decl", inside), 157 inside = "DOCTYPE html PUBLIC '-//W3C//DTD HTML 4.01//EN'" 158 self.check_events("<!%s>" % inside, [ 159 ("decl", inside),
|
/external/deqp-deps/glslang/Test/ |
D | hlsl.color.hull.tesc | 23 float inside : SV_InsideTessFactor; 46 // Set the tessellation factor for tessallating inside the triangle. 47 output.inside = tessellationAmount;
|
/external/markdown/tests/markdown-test/ |
D | literal-quotes.txt | 3 Foo [bar](/url/ "Title with "quotes" inside"). 6 [bar]: /url/ "Title with "quotes" inside"
|
/external/markdown/MarkdownTest/Tests_2007/ |
D | Literal quotes in titles.text | 3 Foo [bar](/url/ "Title with "quotes" inside"). 6 [bar]: /url/ "Title with "quotes" inside"
|
/external/markdown/MarkdownTest/Tests_2004/ |
D | Literal quotes in titles.text | 3 Foo [bar](/url/ "Title with "quotes" inside"). 6 [bar]: /url/ "Title with "quotes" inside"
|
/external/antlr/runtime/Delphi/ |
D | README.TXT | 86 Obviously, any custom actions inside your grammars should be written in the 115 These declarations will appear inside the parser/lexer class declaration. 124 These statements will appear inside the constructor of the parser/lexer class. 136 The code inside this action appears as-is inside the implementation section of 148 inside the rule, makes use of a local variable, then you need to declare that 150 purpose. You can declare any local variables inside this action, as in this 162 The variables you declare in the @vars action will appear inside the "var" 170 some code inside the grammer rules needs access to the Delphi TStringList class, 173 part, or @usesImplementation if you only need a unit inside the implementation. 189 All classes inside the Delphi ANTLR runtime use object interfaces. This greatly [all …]
|
/external/deqp/framework/referencerenderer/ |
D | rrRenderer.cpp | 284 const TriangleVertex& inside = v1; in clipTriangleOneVertex() local 288 const ClipFloat hitDist = plane.clipLineSegmentEnd(inside.position, outside.position); in clipTriangleOneVertex() 297 const ClipVec4 approximatedClipPoint = tcu::mix(inside.position, outside.position, hitDist); in clipTriangleOneVertex() 298 …const ClipVec4 anotherPointOnLine = (hitDist > (ClipFloat)0.5) ? (inside.position) : (outside.pos… in clipTriangleOneVertex() 301 middle.weight[0] = tcu::mix(inside.weight[0], outside.weight[0], hitDist); in clipTriangleOneVertex() 302 middle.weight[1] = tcu::mix(inside.weight[1], outside.weight[1], hitDist); in clipTriangleOneVertex() 303 middle.weight[2] = tcu::mix(inside.weight[2], outside.weight[2], hitDist); in clipTriangleOneVertex() 308 const TriangleVertex& inside = v2; in clipTriangleOneVertex() local 312 const ClipFloat hitDist = plane.clipLineSegmentEnd(inside.position, outside.position); in clipTriangleOneVertex() 321 const ClipVec4 approximatedClipPoint = tcu::mix(inside.position, outside.position, hitDist); in clipTriangleOneVertex() [all …]
|
/external/deqp/doc/testspecs/GLES2/ |
D | functional.shaders.discard.txt | 32 + Discard inside static for loop 33 + Discard inside uniform for loop 34 + Discard inside static loop in user-defined function
|
/external/python/cpython2/Doc/library/ |
D | docxmlrpcserver.rst | 59 inside the HTML "title" element. 65 the top of the generated documentation inside a "h1" element. 88 inside the HTML "title" element. 94 the top of the generated documentation inside a "h1" element.
|
/external/u-boot/drivers/demo/ |
D | demo-shape.c | 44 int line, pos, inside; in shape_hello() local 61 inside = pos >= shape.start && pos < shape.end; in shape_hello() 62 if (inside) { in shape_hello()
|
/external/swiftshader/third_party/llvm-7.0/llvm/test/MC/AArch64/ |
D | arm64-optional-hash.s | 25 ; Single register inside [] 29 ; Memory, two registers inside []
|
/external/llvm/test/MC/AArch64/ |
D | arm64-optional-hash.s | 25 ; Single register inside [] 29 ; Memory, two registers inside []
|
/external/catch2/docs/ |
D | generators.md | 46 * `ChunkGenerator<T>` -- returns chunks (inside `std::vector`) of n elements from a generator 50 * `RangeGenerator<T>` -- generates all values inside a specific range 93 **For safety reasons, you cannot use variables inside the `GENERATE` macro.** 125 However, to be able to use your custom generator inside `GENERATE`, it 126 will need to be wrapped inside a `GeneratorWrapper<T>`.
|
/external/swiftshader/third_party/llvm-7.0/llvm/test/Other/ |
D | 2003-02-19-LoopInfoNestingBug.ll | 2 ; figure out that loop "Inner" should be nested inside of leep "LoopHeader", 3 ; and instead nests it just inside loop "Top"
|
/external/llvm/test/Other/ |
D | 2003-02-19-LoopInfoNestingBug.ll | 2 ; figure out that loop "Inner" should be nested inside of leep "LoopHeader", 3 ; and instead nests it just inside loop "Top"
|
/external/swiftshader/third_party/LLVM/test/Other/ |
D | 2003-02-19-LoopInfoNestingBug.ll | 2 ; figure out that loop "Inner" should be nested inside of leep "LoopHeader", 3 ; and instead nests it just inside loop "Top"
|
/external/clang/www/analyzer/ |
D | menu.css | 20 list-style: none inside; 27 list-style-position: inside;
|
/external/python/cpython3/Misc/NEWS.d/ |
D | 3.6.0rc1.rst | 19 Modifying the class __dict__ inside the __set_name__ method of a descriptor 20 that is used inside that class no longer prevents calling the __set_name__ 51 warnings.showwarning() if it was overriden inside the context manager.
|