HomeSort by relevance Sort by last modified time
    Searched defs:thing (Results 1 - 25 of 377) 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
member-init.cpp 87 struct thing {}; struct in namespace:PR14838
89 another() : r(thing()) {}
  /external/dagger2/compiler/src/it/functional-tests/src/main/java/test/
AbstractMembersInjectingBaseClass.java 21 @Inject Thing thing; field in class:AbstractMembersInjectingBaseClass
OuterClassFoo.java 23 Thing thing(); method in interface:OuterClassFoo.NestedComponent
NonComponentDependencyComponent.java 30 Thing thing,
37 Thing thing(); method in interface:NonComponentDependencyComponent.ThingComponent
43 public Thing thing() { method in class:NonComponentDependencyComponent.ThingComponentImpl
44 return new Thing(new OtherThing(1));
BasicComponent.java 24 interface BasicComponent extends Injector<Thing> {
72 Thing thing(); method in interface:BasicComponent
InjectedThing.java 88 @Inject Thing thing; field in class:InjectedThing
89 @Inject Provider<Thing> thingProvider;
90 @Inject Lazy<Thing> lazyThing;
91 @Inject MembersInjector<Thing> thingMembersInjector;
157 Thing thing,
158 Provider<Thing> thingProvider,
159 Lazy<Thing> lazyThing,
160 MembersInjector<Thing> thingMembersInjector) {
225 @Inject void thing(Thing thing) {} method in class:InjectedThing
    [all...]
  /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);
  /external/llvm/test/tools/llvm-cov/Inputs/
test.cpp 68 A thing; local
70 thing.B();
  /external/snakeyaml/src/test/java/org/yaml/snakeyaml/issues/issue145/
LineNumberInExceptionTest.java 41 CompleteThing thing = (CompleteThing) yaml local
43 assertEquals("QQQ", thing.getId());
  /external/clang/test/CodeGenCXX/
microsoft-uuidof.cpp 26 GUID thing = __uuidof(Curly); variable
27 // CHECK-DEFINE-GUID: @thing = global %struct._GUID zeroinitializer, align 4
28 // CHECK-DEFINE-WRONG-GUID: @thing = global %struct._GUID zeroinitializer, align 4
55 // The static initializer for thing.
56 // 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)
57 // 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/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...]
current-instantiation.cpp 242 static const int thing = 0; member in struct:RebuildDependentScopeDeclRefExpr::X
243 N<thing> data();
244 N<thing> foo();
246 template<typename T> N<X<T>::thing> X<T>::data() {}
  /art/test/088-monitor-verification/src/
Main.java 103 Class thing = Thread.class; local
  /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/caliper/caliper/src/test/java/com/google/caliper/runner/
WorkerProcessTest.java 154 @Benchmark long thing(long reps) { method in class:WorkerProcessTest.TestBenchmark
  /external/dbus/test/internals/
refs.c 72 void *thing; member in struct:__anon9654
99 gpointer ret = (thread->ref) (thread->thing);
101 g_assert (ret == thread->thing);
105 (thread->ref_void) (thread->thing);
128 gpointer ret = (thread->ref) (thread->thing);
130 g_assert (ret == thread->thing);
134 (thread->ref_void) (thread->thing);
137 (thread->unref) (thread->thing);
157 (thread->unref) (thread->thing);
488 public_api.thing = pending_call
    [all...]
  /device/google/contexthub/firmware/src/
osApi.c 260 union OsApiSlabItem *thing = slabAllocatorAlloc(mSlabAllocator); local
262 if (thing) {
263 thing->i2cAppCbkInfo.toTid = osGetCurrentTid();
264 thing->i2cAppCbkInfo.cookie = cookie;
267 return thing;
277 union OsApiSlabItem *thing = (union OsApiSlabItem*)cookie; local
280 tid = thing->i2cAppCbkInfo.toTid;
281 cookie = thing->i2cAppCbkInfo.cookie;
284 thing->i2cAppCbkEvt.cookie = cookie;
285 thing->i2cAppCbkEvt.tx = tx
    [all...]
  /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>();
  /prebuilts/eclipse/mavenplugins/tycho/tycho-dependencies-m2repo/org/eclipse/tycho/tycho-bundles-external/0.20.0/eclipse/plugins/
org.sat4j.pb_2.3.5.v201308161310.jar 
  /prebuilts/tools/common/m2/repository/org/eclipse/tycho/tycho-bundles-external/0.18.1/eclipse/plugins/
org.sat4j.pb_2.3.5.v20130525.jar 
  /external/icu/android_icu4j/src/main/tests/android/icu/dev/util/
BagFormatter.java 624 String thing = o.toString(); local
625 String value = getValueSource() == UnicodeLabel.NULL ? "" : getValueSource().getValue(thing, ",", true);
627 String label = getLabelSource(true) == UnicodeLabel.NULL ? "" : getLabelSource(true).getValue(thing, ",", true);
630 hex(thing)
634 + insertLiteral(thing)
636 + getName(thing));
692 private String insertLiteral(String thing) {
694 : " \t(" + showLiteral.transliterate(thing) + ") ");
    [all...]
  /external/icu/icu4j/main/tests/translit/src/com/ibm/icu/dev/util/
BagFormatter.java 623 String thing = o.toString(); local
624 String value = getValueSource() == UnicodeLabel.NULL ? "" : getValueSource().getValue(thing, ",", true);
626 String label = getLabelSource(true) == UnicodeLabel.NULL ? "" : getLabelSource(true).getValue(thing, ",", true);
629 hex(thing)
633 + insertLiteral(thing)
635 + getName(thing));
691 private String insertLiteral(String thing) {
693 : " \t(" + showLiteral.transliterate(thing) + ") ");
    [all...]
  /external/mksh/src/
funcs.c 674 int thing = 0, field = 0, base = 0, i; local
789 thing = '+';
793 thing = '-';
812 thing = wp[builtin_opt.optind][0];
900 if (thing == '-')
912 c_typeset_vardump(vp, flag, thing, pflag, istset);
915 c_typeset_vardump_recursive(e->loc, flag, thing, pflag, istset);
920 c_typeset_vardump_recursive(struct block *l, uint32_t flag, int thing,
926 c_typeset_vardump_recursive(l->next, flag, thing, pflag, istset);
929 c_typeset_vardump(vp, flag, thing, pflag, istset)
    [all...]
  /packages/apps/Calendar/src/com/android/calendar/
Utils.java 573 for (Object thing : things) {
579 builder.append(thing.toString());
    [all...]

Completed in 791 milliseconds

1 2 3 4 5 6 7 8 91011>>