HomeSort by relevance Sort by last modified time
    Searched refs:thing (Results 1 - 25 of 344) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/clang/test/SemaCXX/
warn-static-function-inheader.h 1 static void thing(void) { // expected-warning {{'static' function 'thing' declared in header file should be declared 'static inline'}} function
no-warn-composite-pointer-type.cpp 5 void Foo(int **thing, const int **thingMax)
7 if ((thing + 3) > thingMax)
warn-static-function-inheader.cpp 10 thing();
member-init.cpp 84 struct thing {}; struct in namespace:PR14838
86 another() : r(thing()) {}
warn-missing-noreturn.cpp 115 template <typename T> void thingy(T thing) {
116 thing.wibble();
  /external/valgrind/main/memcheck/tests/
signal2.stdout.exp 2 doing bad thing
  /external/chromium_org/tools/json_schema_compiler/
json_schema.py 18 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/
region-store.c 10 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);
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
contextlib.py 149 def __init__(self, thing):
150 self.thing = thing
152 return self.thing
154 self.thing.close()
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/
contextlib.py 149 def __init__(self, thing):
150 self.thing = thing
152 return self.thing
154 self.thing.close()
  /external/clang/test/SemaTemplate/
alias-templates.cpp 26 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<bool>>::alloc() { static bool b; return b;
    [all...]
  /build/tools/droiddoc/templates-pdk/assets/
customizations.js 1 function showApiWarning(thing, selectedLevel, minLevel) {
3 $("#naMessage").show().html("<div><p><strong>This " + thing + " is not available with API Level " + selectedLevel + ".</strong></p>"
4 + "<p>To use this " + thing + ", your application must specify API Level " + minLevel + " or higher in its manifest "
  /external/llvm/test/tools/llvm-cov/Inputs/
test.cpp 68 A thing; local
70 thing.B();
  /art/test/093-serialization/src/
Main.java 115 public Character thing; field in class:Sub
117 public Sub(char thing) {
123 this.thing = thing;
130 + " thing=" + thing);
  /external/llvm/test/MC/PowerPC/
ppc-machine.s 5 # For now, the only thing we check is that the .machine directive
  /external/chromium_org/gin/
wrappable_unittest.cc 151 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, &unwrapped))
    [all...]
  /external/clang/test/CodeGenCXX/
microsoft-uuidof.cpp 25 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/
nfrlist.h 63 void add(NFRule* thing) {
69 fStuff[fCount++] = thing;
  /external/clang/test/SemaObjC/
foreach.m 44 for (id thing in collection) { } /* expected-warning {{unused variable 'thing'}} */
  /external/icu/icu4c/source/i18n/
nfrlist.h 63 void add(NFRule* thing) {
69 fStuff[fCount++] = thing;
  /external/valgrind/main/none/tests/x86/
bug126147-x86.c 121 check (int thing, int number)
123 if (!thing)
  /external/clang/test/Parser/
MicrosoftExtensions.cpp 128 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/
parallelizer_test.py 23 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/
Ordered and unordered lists.text 113 Same thing but with paragraphs:
  /external/markdown/MarkdownTest/Tests_2007/
Ordered and unordered lists.text 113 Same thing but with paragraphs:

Completed in 861 milliseconds

1 2 3 4 5 6 7 8 91011>>