Home
last modified time | relevance | path

Searched refs:thing (Results 1 – 25 of 302) sorted by relevance

12345678910>>...13

/external/clang/test/SemaTemplate/
Dalias-templates.cpp26 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 …]
Dcurrent-instantiation.cpp242 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/clang/test/Analysis/
Dregion-store.c11 int thing = (int []){0, 1}[index]; in compoundLiteralTest()
12 printf("thing: %i\n", thing); in compoundLiteralTest()
20 int thing = (int [][3]){{0,0,0}, {1,1,1}, {2,2,2}}[index][index]; in compoundLiteralTest2()
21 printf("thing: %i\n", thing); in compoundLiteralTest2()
/external/antlr/antlr-3.4/runtime/Ruby/test/functional/parser/
Dbasic.rb55 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
Dcalc.rb95 errors.should have( 1 ).thing
/external/bison/tests/
Dactions.at394 ]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/webkit/Tools/Scripts/webkitpy/thirdparty/
Dmock.py191 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/clang/test/SemaCXX/
Dno-warn-composite-pointer-type.cpp5 void Foo(int **thing, const int **thingMax) in Foo() argument
7 if ((thing + 3) > thingMax) in Foo()
Dmember-init.cpp84 struct thing {}; struct
86 another() : r(thing()) {} in another()
Dwarn-missing-noreturn.cpp115 template <typename T> void thingy(T thing) { in thingy() argument
116 thing.wibble(); in thingy()
Dwarn-static-function-inheader.h1 static void thing(void) { // expected-warning {{'static' function 'thing' declared in header file s… in thing() function
Dwarn-static-function-inheader.cpp10 thing(); in foo()
/external/valgrind/main/none/tests/x86/
Dbug126147-x86.c121 check (int thing, int number) in check() argument
123 if (!thing) in check()
/external/icu4c/i18n/
Dnfrlist.h63 void add(NFRule* thing) { in add() argument
69 fStuff[fCount++] = thing; in add()
/external/markdown/tests/misc/
Dautolinks_with_asterisks.txt1 <http://some.site/weird*url*thing>
/external/valgrind/main/memcheck/tests/
Dsignal2.stdout.exp2 doing bad thing
/external/llvm/test/Assembler/
D2002-07-25-ReturnPtrFunction.ll2 ; the right thing.
/external/protobuf/m4/
Dacx_check_suncc.m452 dnl does the wrong thing if you don't put it into CXXFLAGS. sigh.
53 dnl (It also needs it in CFLAGS, or it does a different wrong thing!)
/external/proguard/examples/dictionaries/
Dshakespeare.txt10 "This thing of darkness I acknowledge mine."
/external/chromium/chrome/browser/ui/cocoa/download/
Ddownload_shelf_view_unittest.mm16 // This class only needs to do one thing: prevent mouse down events from moving
/external/chromium/chrome/browser/ui/cocoa/toolbar/
Dtoolbar_view_unittest.mm16 // This class only needs to do one thing: prevent mouse down events from moving
/external/markdown/MarkdownTest/Tests_2004/
DOrdered and unordered lists.text113 Same thing but with paragraphs:
/external/markdown/tests/markdown-test/
Dordered-and-unordered-list.txt113 Same thing but with paragraphs:
/external/doclava/res/assets/templates/assets/
Ddoclava-developer-reference.js71 var thing = ($("#jd-header").html().indexOf("package") != -1) ? "package" : "class";
72 …$("#naMessage").show().html("<div><p><strong>This " + thing + " is not available with API Level " …
73 …+ "<p>To use this " + thing + ", your application must specify API Level " + minLevel + " or highe…
/external/markdown/MarkdownTest/Tests_2007/
DOrdered and unordered lists.text113 Same thing but with paragraphs:

12345678910>>...13