Searched refs:stuff (Results 1 - 25 of 120) sorted by relevance

12345

/external/javaparser/javaparser-testing/src/test/resources/com/github/javaparser/bdd/samples/
H A Dpackage-info.java2 * This package contains class for doing some stuff.
5 package com.company.stuff
/external/clang/test/SemaCXX/
H A Dconstexpr-duffs-device.cpp20 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");
H A Ddeprecated.cpp19 void stuff() { function
H A Dpragma-vtordisp.cpp33 #pragma vtordisp(), stuff // expected-warning {{extra tokens}}
/external/clang/test/Frontend/
H A Dmacros.c8 void stuff(int,int,int);
9 #define memset(x,y,z) ({ stuff(x,y,z); x; })
/external/autotest/client/deps/fakegudev/src/
H A Dfakesyscalls-exercise.c18 const char *stuff = "stuff"; local
19 const int stuff_len = strlen(stuff) + 1;
33 if (write (f, stuff, stuff_len) < stuff_len) {
50 } else if (strncmp (stuff, read_back, stuff_len) != 0) {
54 stuff, read_back);
/external/elfutils/tests/
H A Daddrcfi.c76 struct stuff struct
91 struct stuff *stuff = arg; local
98 int result = dwarf_frame_register (stuff->frame, regno, ops_mem, &ops, &nops);
99 print_detail (result, ops, nops, stuff->bias);
106 GElf_Addr pc, struct stuff *stuff)
114 int result = dwarf_cfi_addrframe (cfi, pc - stuff->bias, &stuff->frame);
124 int ra_regno = dwarf_frame_info (stuff
105 handle_cfi(Dwfl *dwfl, const char *which, Dwarf_CFI *cfi, GElf_Addr pc, struct stuff *stuff) argument
152 &print_register, stuff); local
162 struct stuff stuff; local
[all...]
/external/valgrind/memcheck/tests/
H A Dbug287260.c4 unsigned int stuff : 21; member in struct:__anon29616
/external/python/cpython3/Lib/
H A Dfnmatch.py100 stuff = pat[i:j].replace('\\','\\\\')
102 if stuff[0] == '!':
103 stuff = '^' + stuff[1:]
104 elif stuff[0] == '^':
105 stuff = '\\' + stuff
106 res = '%s[%s]' % (res, stuff)
/external/python/cpython2/Lib/
H A Dfnmatch.py111 stuff = pat[i:j].replace('\\','\\\\')
113 if stuff[0] == '!':
114 stuff = '^' + stuff[1:]
115 elif stuff[0] == '^':
116 stuff = '\\' + stuff
117 res = '%s[%s]' % (res, stuff)
H A Dihooks.py109 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[
[all...]
/external/python/cpython2/Misc/Vim/
H A Dsyntax_test.py30 with Bar() as stuff:
/external/autotest/client/site_tests/kernel_PerfEventRename/
H A Dkernel_PerfEventRename.py57 stuff = line.split()
64 if stuff[3] == '[unknown]':
/external/toybox/toys/lsb/
H A Dsu.c73 char *stuff[] = {snapshot_env("TERM"), snapshot_env("DISPLAY"), local
77 for (i=0; i < ARRAY_LEN(stuff); i++) if (stuff[i]) putenv(stuff[i]);
/external/clang/test/Analysis/
H A Dmalloc-annotations.c22 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/test/BlocksRuntime/
H A Dstructmember.c21 struct stuff { struct
/external/valgrind/helgrind/tests/
H A Dtc04_free_lock.c9 typedef struct { int stuff[2000]; member in struct:__anon29372
/external/toybox/scripts/
H A Dmkstatus.py24 stuff,blah=readit(["sed","-n", 's/<span id=\\([a-z_]*\\)>/\\1 /;t good;d;:good;h;:loop;n;s@</span>@@;t out;H;b loop;:out;g;s/\\n/ /g;p', "www/roadmap.html", "www/status.html"])
34 for i in stuff:
35 for j in stuff[i]:
113 for i in stuff:
116 for j in stuff[i]:
/external/autotest/server/site_tests/kernel_BootMessagesServer/
H A Dkernel_BootMessagesServer.py112 stuff = re.match('(.*):\s+(\d+)', line)
113 stat = stuff.group(1)
115 value = int(stuff.group(2))/ 1024
/external/python/cpython2/Tools/scripts/
H A Dgprof2html.py44 stuff, fname = m.group(1, 2)
47 (stuff, fname, fname, fname))
/external/python/cpython3/Tools/scripts/
H A Dgprof2html.py50 stuff, fname = m.group(1, 2)
53 (stuff, fname, fname, fname))
/external/python/cpython2/Lib/test/
H A Dtest_importhooks.py118 file, filename, stuff = imp.find_module(subname, path)
121 return ImpLoader(file, filename, stuff)
126 def __init__(self, file, filename, stuff):
129 self.stuff = stuff
132 mod = imp.load_module(fullname, self.file, self.filename, self.stuff)
/external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime.Debug/
H A DTraceDebugEventListener.cs63 #region Tree parsing stuff
82 #region AST stuff
/external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime.Debug/
H A DTraceDebugEventListener.cs71 #region Tree parsing stuff
92 #region AST stuff
/external/curl/docs/cmdline-opts/
H A Dheader.d11 you to make even trickier stuff than curl would normally do. You should not

Completed in 659 milliseconds

12345