HomeSort by relevance Sort by last modified time
    Searched refs:thing (Results 51 - 75 of 769) sorted by null

1 23 4 5 6 7 8 91011>>

  /external/autotest/cli/
action_common.py 261 for thing in self.add_remove_things:
262 things_ok = [item for item, what in oks.items() if thing in what]
263 results[thing] = things_ok
269 for thing, single_thing in self.add_remove_things.iteritems():
271 things_ok = ["'%s'" % t for t in results[thing]]
277 getattr(self, 'good_%s' % thing))
  /external/chromium-trace/catapult/devil/devil/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
100 devices = [ParallelizerTestObject(Exception('thing %d' % i))
109 exception_msg = 'thing %d' % exception_index
  /external/libmojo/third_party/catapult/devil/devil/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
100 devices = [ParallelizerTestObject(Exception('thing %d' % i))
109 exception_msg = 'thing %d' % exception_index
  /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/clang/test/SemaCXX/
member-init.cpp 87 struct thing {}; struct in namespace:PR14838
89 another() : r(thing()) {}
  /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:
  /external/markdown/tests/markdown-test/
ordered-and-unordered-list.txt 113 Same thing but with paragraphs:
  /external/v8/tools/clang/value_cleanup/tests/
list-value-append-expected.cc 22 struct Thing {
35 Thing thing; local
36 list.Append(thing.ToValue());
list-value-append-original.cc 22 struct Thing {
35 Thing thing; local
36 list.Append(thing.ToValue().release());
  /prebuilts/go/darwin-x86/test/fixedbugs/
bug119.go 10 return a[0] // this seems to do the wrong thing
  /prebuilts/go/linux-x86/test/fixedbugs/
bug119.go 10 return a[0] // this seems to do the wrong thing
  /external/antlr/antlr-3.4/runtime/Ruby/test/functional/parser/
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/clang/test/CodeGenCXX/
microsoft-uuidof.cpp 27 GUID thing = __uuidof(Curly); variable
28 // CHECK-DEFINE-GUID: @thing = global %struct._GUID zeroinitializer, align 4
29 // CHECK-DEFINE-WRONG-GUID: @thing = global %struct._GUID zeroinitializer, align 4
57 // The static initializer for thing.
58 // 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)
59 // 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/dagger2/compiler/src/it/functional-tests/src/main/java/test/
BasicComponent.java 24 interface BasicComponent extends Injector<Thing> {
72 Thing thing(); method in interface:BasicComponent
  /external/r8/src/main/java/com/android/tools/r8/shaking/
ReasonPrinter.java 174 void addReason(String thing) {
179 System.out.println(thing);
182 void addMessage(String thing) {
185 System.out.println(thing);
  /external/ltp/testcases/kernel/fs/ftest/
ftest02.c 377 * Randomly do an inode thing; loop for # iterations.
379 #define THING(p) {p, "p"}
385 THING(crfile), THING(unlfile), THING(fussdir), THING(sync),};
394 int i, thing; local
401 thing = (rand() >> 3) % NTHING;
402 (*ino_thing[thing].it_proc) (me, i, ino_thing[thing].it_name)
    [all...]
ftest06.c 395 * Randomly do an inode thing; loop for # iterations.
397 #define THING(p) {p, "p"}
403 THING(crfile), THING(unlfile), THING(fussdir), THING(sync),};
412 int thing, i; local
419 thing = (rand() >> 3) % NTHING;
420 (*ino_thing[thing].it_proc) (me, i, ino_thing[thing].it_name)
    [all...]
  /device/google/contexthub/firmware/os/core/
osApi.c 287 union OsApiSlabItem *thing = slabAllocatorAlloc(mSlabAllocator); local
289 if (thing) {
290 thing->i2cAppCbkInfo.toTid = osGetCurrentTid();
291 thing->i2cAppCbkInfo.cookie = cookie;
294 return thing;
304 union OsApiSlabItem *thing = (union OsApiSlabItem*)cookie; local
307 tid = thing->i2cAppCbkInfo.toTid;
308 cookie = thing->i2cAppCbkInfo.cookie;
311 thing->i2cAppCbkEvt.cookie = cookie;
312 thing->i2cAppCbkEvt.tx = tx
    [all...]
  /cts/hostsidetests/jvmti/allocation-tracking/app/
Android.mk 30 # TODO: Refactor. This is the only thing every changing.
  /cts/hostsidetests/jvmti/attaching/app/
Android.mk 29 # TODO: Refactor. This is the only thing every changing.
  /cts/hostsidetests/jvmti/redefining/app/
Android.mk 30 # TODO: Refactor. This is the only thing ever changing.
  /cts/hostsidetests/jvmti/run-tests/test-902/app/
Android.mk 30 # TODO: Refactor. This is the only thing every changing.
  /cts/hostsidetests/jvmti/run-tests/test-903/app/
Android.mk 30 # TODO: Refactor. This is the only thing every changing.
  /cts/hostsidetests/jvmti/run-tests/test-904/app/
Android.mk 30 # TODO: Refactor. This is the only thing every changing.

Completed in 1421 milliseconds

1 23 4 5 6 7 8 91011>>