/external/clang/test/SemaTemplate/ |
D | alias-templates.cpp | 26 typedef T thing; typedef 27 typedef decltype(val(make<thing>())) inner_ptr; 29 template<typename U> using rebind_thing = typename thing::template rebind<U>; 41 template<typename T> struct thing { struct 44 typedef traits<thing<inner>> traits_type; 46 template<typename U> using rebind = thing<U>; 48 thing(traits_type &traits) : traits(traits), val(traits.alloc()) {} in thing() function 49 ~thing() { traits.free(static_cast<inner_ptr&&>(val)); } in ~thing() 54 friend inner_ptr val(const thing &t) { return t.val; } in val() 60 template<> bool &traits<thing<bool>>::alloc() { static bool b; return b; } in alloc() [all …]
|
D | current-instantiation.cpp | 242 static const int thing = 0; member 243 N<thing> data(); 244 N<thing> foo(); 246 template<typename T> N<X<T>::thing> X<T>::data() {} in data()
|
/external/chromium_org/tools/json_schema_compiler/ |
D | json_schema.py | 13 def HasKey(thing): argument 14 return json_parse.IsDict(thing) and thing.get(delete_key, False) 26 item[:] = [DeleteNodes(thing, delete_key) 27 for thing in item if not HasKey(thing)]
|
/external/chromium_org/gin/ |
D | wrappable_unittest.cc | 93 v8::Handle<v8::Value> thing = v8::Number::New(42); in TEST_F() local 95 EXPECT_FALSE(ConvertFromV8(isolate, thing, &unwrapped)); in TEST_F() 99 thing = v8::Object::New(isolate); in TEST_F() 100 EXPECT_FALSE(ConvertFromV8(isolate, thing, &unwrapped)); in TEST_F() 104 thing.Clear(); in TEST_F() 105 thing = ConvertToV8(isolate, new MyObjectBlink()); in TEST_F() 106 EXPECT_FALSE(ConvertFromV8(isolate, thing, &unwrapped)); in TEST_F() 110 thing.Clear(); in TEST_F() 111 thing = ConvertToV8(isolate, new MyObject2()); in TEST_F() 112 EXPECT_FALSE(ConvertFromV8(isolate, thing, &unwrapped)); in TEST_F()
|
/external/clang/test/Analysis/ |
D | region-store.c | 10 int thing = (int []){0, 1}[index]; in compoundLiteralTest() 11 printf("thing: %i\n", thing); in compoundLiteralTest() 19 int thing = (int [][3]){{0,0,0}, {1,1,1}, {2,2,2}}[index][index]; in compoundLiteralTest2() 20 printf("thing: %i\n", thing); in compoundLiteralTest2()
|
/external/chromium_org/tools/traceline/svgui/ |
D | traceline.js | 661 var thing = stuff[i]; 662 if (!thing.hittest(startms, startms+dur)) 666 if (thing.type == SVGSceneRect) { 668 rect.setAttributeNS(null, 'class', thing.klass) 669 rect.setAttributeNS(null, 'x', timeToPixel(thing.x - startms)); 670 rect.setAttributeNS(null, 'y', thing.y); 671 rect.setAttributeNS(null, 'width', timeToPixel(thing.width)); 672 rect.setAttributeNS(null, 'height', thing.height); 673 rect.msg = thing.msg; 675 } else if (thing.type == SVGSceneLine) { [all …]
|
/external/antlr/antlr-3.4/runtime/Ruby/test/functional/parser/ |
D | basic.rb | 55 parser.reported_errors.should have( 1 ).thing 136 parser.reported_errors.should have( 1 ).thing 146 parser.reported_errors.should have( 1 ).thing 272 parser.reported_errors.should have( 1 ).thing
|
/external/bison/tests/ |
D | actions.at | 394 ]m4_ifval([$6], [%type <ival> '(' 'x' 'y' ')' ';' thing line input END])[ 402 input line thing 'x' 'y' 413 { fprintf (stderr, "Freeing nterm thing (%d@%d-%d)\n", $$, RANGE (@$)); } 414 thing 454 thing thing thing ';' 458 V(thing, $1, @1, " "); 459 V(thing, $2, @2, " "); 460 V(thing, $3, @3, " "); 463 | '(' thing thing ')' 468 V(thing, $2, @2, " "); [all …]
|
/external/clang/test/Index/ |
D | subclass-comment.mm | 67 //! Every thing is a part 73 // CHECK-NEXT: (CXComment_Text Text=[ Every thing is a part])))] 80 // CHECK-NEXT: (CXComment_Text Text=[ Every thing is a part])))] 87 // CHECK-NEXT: (CXComment_Text Text=[ Every thing is a part])))] 94 // CHECK-NEXT: (CXComment_Text Text=[ Every thing is a part])))]
|
/external/clang/test/SemaCXX/ |
D | no-warn-composite-pointer-type.cpp | 5 void Foo(int **thing, const int **thingMax) in Foo() argument 7 if ((thing + 3) > thingMax) in Foo()
|
D | member-init.cpp | 84 struct thing {}; struct 86 another() : r(thing()) {} in another()
|
D | warn-missing-noreturn.cpp | 115 template <typename T> void thingy(T thing) { in thingy() argument 116 thing.wibble(); in thingy()
|
D | warn-static-function-inheader.h | 1 static void thing(void) { // expected-warning {{'static' function 'thing' declared in header file s… in thing() function
|
D | warn-static-function-inheader.cpp | 10 thing(); in foo()
|
/external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/thirdparty/ |
D | mock.py | 191 def _dot_lookup(thing, comp, import_path): argument 193 return getattr(thing, comp) 196 return getattr(thing, comp) 202 thing = __import__(import_path) 206 thing = _dot_lookup(thing, comp, import_path) 207 return thing
|
/external/chromium_org/third_party/icu/source/i18n/ |
D | nfrlist.h | 63 void add(NFRule* thing) { in add() argument 69 fStuff[fCount++] = thing; in add()
|
/external/valgrind/main/none/tests/x86/ |
D | bug126147-x86.c | 121 check (int thing, int number) in check() argument 123 if (!thing) in check()
|
/external/icu4c/i18n/ |
D | nfrlist.h | 63 void add(NFRule* thing) { in add() argument 69 fStuff[fCount++] = thing; in add()
|
/external/clang/test/SemaObjC/ |
D | foreach.m | 44 for (id thing in collection) { } /* expected-warning {{unused variable 'thing'}} */
|
/external/markdown/tests/misc/ |
D | autolinks_with_asterisks.txt | 1 <http://some.site/weird*url*thing>
|
/external/valgrind/main/memcheck/tests/ |
D | signal2.stdout.exp | 2 doing bad thing
|
/external/chromium_org/third_party/sqlite/src/test/ |
D | tkt3922.test | 27 # really test the same thing as the original, 70 # really test the same thing as the original,
|
/external/chromium_org/chrome/common/extensions/docs/examples/howto/sandbox/ |
D | eventpage.js | 9 context: {thing: 'world'} property
|
/external/llvm/test/Assembler/ |
D | 2002-07-25-ReturnPtrFunction.ll | 2 ; the right thing.
|
/external/llvm/test/MC/PowerPC/ |
D | ppc-machine.s | 4 # For now, the only thing we check is that the .machine directive
|