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

1 2 3 4 5 6 7 8 9

  /external/chromium_org/tools/gyp/test/win/compiler-flags/
buffer-security.cc 9 char* stuff = reinterpret_cast<char*>(_alloca(256)); local
10 strcpy(stuff, "blah");
  /external/clang/test/SemaCXX/
constexpr-duffs-device.cpp 20 char stuff[14]; member in struct:S
21 constexpr S() : stuff{} {
22 copy("Hello, world!", 14, stuff);
31 static_assert(streq(S().stuff, "Hello, world!"), "should be same");
32 static_assert(!streq(S().stuff, "Something else"), "should be different");
deprecated.cpp 18 void stuff() { function
  /art/test/003-omnibus-opcodes/src/
UnresTest1.java 8 UnresStuff stuff = new UnresStuff(); local
10 int x = stuff.instField;
16 int x = stuff.instField;
22 stuff.instField = 5;
29 double d = stuff.wideInstField;
35 stuff.wideInstField = 0.0;
68 stuff.virtualMethod();
UnresTest2.java 30 UnresStuff stuff = new UnresStuff(); local
56 checkCasts(stuff);
  /dalvik/tests/003-omnibus-opcodes/src/
UnresTest1.java 8 UnresStuff stuff = new UnresStuff(); local
10 int x = stuff.instField;
16 int x = stuff.instField;
22 stuff.instField = 5;
29 double d = stuff.wideInstField;
35 stuff.wideInstField = 0.0;
68 stuff.virtualMethod();
UnresTest2.java 30 UnresStuff stuff = new UnresStuff(); local
46 checkCasts(stuff);
  /external/clang/test/Frontend/
macros.c 8 void stuff(int,int,int);
9 #define memset(x,y,z) ({ stuff(x,y,z); x; })
  /external/valgrind/main/memcheck/tests/
bug287260.c 4 unsigned int stuff : 21; member in struct:__anon30110
  /external/stlport/test/eh/
test_algobase.cpp 37 : stuff( new TestClass[kBufferSize] ), end_of_stuff(stuff + kBufferSize) {
41 ~test_uninitialized_copy() { delete[] stuff; }
45 EH_STD::uninitialized_copy((TestClass*)stuff, (TestClass*)end_of_stuff, buffer );
46 EH_ASSERT( EH_STD::equal( (TestClass*)stuff, (TestClass*)end_of_stuff, buffer ) );
51 TestClass * stuff; member in struct:test_uninitialized_copy
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
fnmatch.py 107 stuff = pat[i:j].replace('\\','\\\\')
109 if stuff[0] == '!':
110 stuff = '^' + stuff[1:]
111 elif stuff[0] == '^':
112 stuff = '\\' + stuff
113 res = '%s[%s]' % (res, stuff)
ihooks.py 109 find_module(name, [path]) returns None or 'stuff', and
110 load_module(name, stuff) loads the module.
118 stuff = self.find_module_in_dir(name, dir)
119 if stuff: return stuff
142 def load_module(self, name, stuff):
143 file, filename, info = stuff
246 stuff = self.find_module_in_dir("__init__", fullname, 0)
247 if stuff:
248 file = stuff[0
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/
fnmatch.py 107 stuff = pat[i:j].replace('\\','\\\\')
109 if stuff[0] == '!':
110 stuff = '^' + stuff[1:]
111 elif stuff[0] == '^':
112 stuff = '\\' + stuff
113 res = '%s[%s]' % (res, stuff)
ihooks.py 109 find_module(name, [path]) returns None or 'stuff', and
110 load_module(name, stuff) loads the module.
118 stuff = self.find_module_in_dir(name, dir)
119 if stuff: return stuff
142 def load_module(self, name, stuff):
143 file, filename, info = stuff
246 stuff = self.find_module_in_dir("__init__", fullname, 0)
247 if stuff:
248 file = stuff[0
    [all...]
  /external/clang/test/Analysis/
malloc-annotations.c 22 struct stuff { struct
25 struct stuff myglobalstuff;
74 struct stuff mystuff;
83 void af1_f(struct stuff *somestuff) {
88 void af1_g(struct stuff **pps) {
89 *pps = my_malloc(sizeof(struct stuff)); // no-warning
  /external/compiler-rt/BlocksRuntime/tests/
structmember.c 21 struct stuff { struct
  /external/valgrind/main/helgrind/tests/
tc04_free_lock.c 9 typedef struct { int stuff[2000]; member in struct:__anon29949
  /external/chromium_org/tools/gyp/test/assembly/src/
override_asm.asm 8 Bad stuff that shouldn't assemble.
  /external/stlport/
libstlport.mk 4 # keep the RTTI stuff in abi/cpp/include in front of our STL headers.
  /packages/screensavers/WebView/src/com/android/dreams/web/
SetURL.java 31 public void onCreate(Bundle stuff) {
32 super.onCreate(stuff);
SetURLInteractive.java 31 public void onCreate(Bundle stuff) {
32 super.onCreate(stuff);
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/
test_cookie.py 79 C['val'] = "some,funky;stuff"
81 'Set-Cookie: val="some\\054funky\\073stuff"')
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/
test_cookie.py 79 C['val'] = "some,funky;stuff"
81 'Set-Cookie: val="some\\054funky\\073stuff"')
  /external/chromium_org/v8/test/webkit/
dfg-put-by-id-prototype-check.js 38 var stuff; variable
42 Foo.prototype.__defineSetter__("f", function(value) { stuff = value; });
47 shouldBe("stuff", "" + i);
  /external/chromium_org/content/test/data/indexeddb/
object_store_test.js 30 var request = transaction.objectStore('stuff').get(testDate);
72 var request = transaction.objectStore('stuff').add('foo', testDate);
94 db.createObjectStore('stuff');

Completed in 1642 milliseconds

1 2 3 4 5 6 7 8 9