Searched refs:thing (Results 1 - 25 of 64) sorted by relevance

123

/external/clang/test/SemaCXX/
H A Dwarn-static-function-inheader.h1 static void thing(void) { // expected-warning {{'static' function 'thing' declared in header file should be declared 'static inline'}} function
H A Dno-warn-composite-pointer-type.cpp5 void Foo(int **thing, const int **thingMax) argument
7 if ((thing + 3) > thingMax)
H A Dwarn-static-function-inheader.cpp10 thing();
H A Dmember-init.cpp84 struct thing {}; struct in namespace:PR14838
86 another() : r(thing()) {}
H A Dwarn-missing-noreturn.cpp115 template <typename T> void thingy(T thing) { argument
116 thing.wibble();
/external/valgrind/main/memcheck/tests/
H A Dsignal2.stdout.exp2 doing bad thing
/external/chromium_org/tools/json_schema_compiler/
H A Djson_schema.py18 def ShouldDelete(thing):
19 return json_parse.IsDict(thing) and (
20 delete_key is not None and delete_key in thing or
21 matcher is not None and matcher(thing))
33 item[:] = [DeleteNodes(thing, delete_key, matcher)
34 for thing in item if not ShouldDelete(thing)]
/external/clang/test/Analysis/
H A Dregion-store.c10 int thing = (int []){0, 1}[index]; local
11 printf("thing: %i\n", thing);
19 int thing = (int [][3]){{0,0,0}, {1,1,1}, {2,2,2}}[index][index]; local
20 printf("thing: %i\n", thing);
/external/clang/test/SemaTemplate/
H A Dalias-templates.cpp26 typedef T thing; typedef in struct:X::traits
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 in namespace:X
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()) {} function in struct:X::thing
49 ~thing() { traits.free(static_cast<inner_ptr&&>(val)); }
54 friend inner_ptr val(const thing &t) { return t.val; }
60 template<> bool &traits<thing<boo
[all...]
/external/chromium_org/chrome/common/extensions/docs/examples/howto/sandbox/
H A Deventpage.js9 context: {thing: 'world'}
/external/llvm/test/tools/llvm-cov/Inputs/
H A Dtest.cpp68 A thing; local
70 thing.B();
/external/llvm/test/MC/PowerPC/
H A Dppc-machine.s5 # For now, the only thing we check is that the .machine directive
/external/chromium_org/gin/
H A Dwrappable_unittest.cc151 v8::Handle<v8::Value> thing = v8::Number::New(isolate, 42); local
153 EXPECT_FALSE(ConvertFromV8(isolate, thing, &unwrapped));
157 thing = v8::Object::New(isolate);
158 EXPECT_FALSE(ConvertFromV8(isolate, thing, &unwrapped));
162 thing.Clear();
163 thing = ConvertToV8(isolate, new MyObjectBlink());
164 EXPECT_FALSE(ConvertFromV8(isolate, thing, &unwrapped));
168 thing.Clear();
169 thing = ConvertToV8(isolate, new MyObject2());
170 EXPECT_FALSE(ConvertFromV8(isolate, thing,
[all...]
/external/chromium_org/tools/traceline/svgui/
H A Dtraceline.js661 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
[all...]
/external/clang/test/CodeGenCXX/
H A Dmicrosoft-uuidof.cpp25 GUID thing = __uuidof(Curly); variable
26 // CHECK-DEFINE-GUID: @thing = global %struct._GUID zeroinitializer, align 4
27 // CHECK-DEFINE-WRONG-GUID: @thing = global %struct._GUID zeroinitializer, align 4
54 // The static initializer for thing.
55 // CHECK-DEFINE-GUID: call void @llvm.memcpy.p0i8.p0i8.i32(i8* bitcast (%struct._GUID* @thing to i8*), i8* bitcast ({ i32, i16, i16, [8 x i8] }* @_GUID_12345678_1234_1234_1234_1234567890ac to i8*), i32 16, i32 4, i1 false)
56 // CHECK-DEFINE-WRONG-GUID: call void @llvm.memcpy.p0i8.p0i8.i32(i8* bitcast (%struct._GUID* @thing to i8*), i8* bitcast ({ i32, i16, i16, [8 x i8] }* @_GUID_12345678_1234_1234_1234_1234567890ac to i8*), i32 4, i32 4, i1 false)
/external/chromium_org/third_party/icu/source/i18n/
H A Dnfrlist.h63 void add(NFRule* thing) { argument
69 fStuff[fCount++] = thing;
/external/clang/test/SemaObjC/
H A Dforeach.m44 for (id thing in collection) { } /* expected-warning {{unused variable 'thing'}} */
/external/icu/icu4c/source/i18n/
H A Dnfrlist.h63 void add(NFRule* thing) { argument
69 fStuff[fCount++] = thing;
/external/valgrind/main/none/tests/x86/
H A Dbug126147-x86.c121 check (int thing, int number) argument
123 if (!thing)
/external/clang/test/Parser/
H A DMicrosoftExtensions.cpp128 struct thing { struct in namespace:PR16911
132 struct inher : public thing<empty, uuid2> {};
136 const struct _GUID *x = &__uuidof(thing<uuid, inher>);
137 const struct _GUID *y = &__uuidof(thing<uuid2, uuid>); // expected-error{{cannot call operator __uuidof on a type with multiple GUIDs}}
138 thing<uuid2, uuid> thing_obj = thing<uuid2, uuid>();
/external/chromium_org/build/android/pylib/utils/
H A Dparallelizer_test.py23 def __init__(self, thing, completion_file_name=None):
24 self._thing = thing
26 self.helper = ParallelizerTestObjectHelper(thing)
66 def __init__(self, thing):
67 self._thing = thing
104 devices = [ParallelizerTestObject(Exception('thing %d' % i))
113 exception_msg = 'thing %d' % exception_index
/external/markdown/MarkdownTest/Tests_2004/
H A DOrdered and unordered lists.text113 Same thing but with paragraphs:
/external/markdown/MarkdownTest/Tests_2007/
H A DOrdered and unordered lists.text113 Same thing but with paragraphs:
/external/markdown/tests/markdown-test/
H A Dordered-and-unordered-list.txt113 Same thing but with paragraphs:
/external/antlr/antlr-3.4/runtime/Ruby/test/functional/parser/
H A 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

Completed in 603 milliseconds

123