OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:nasty
(Results
1 - 25
of
402
) sorted by null
1
2
3
4
5
6
7
8
9
10
11
>>
/external/libcxx/test/std/utilities/memory/specialized.algorithms/uninitialized.fill/
uninitialized_fill.pass.cpp
31
struct
Nasty
33
Nasty
() : i_ ( counter_++ ) {}
34
Nasty
* operator &() const { return NULL; }
39
int
Nasty
::counter_ = 0;
64
char pool[N*sizeof(
Nasty
)] = {0};
65
Nasty
* bp = (
Nasty
*)pool;
67
Nasty
::counter_ = 23;
68
std::uninitialized_fill(bp, bp+N,
Nasty
());
/external/libcxx/test/std/utilities/memory/specialized.algorithms/uninitialized.fill.n/
uninitialized_fill_n.pass.cpp
30
struct
Nasty
32
Nasty
() : i_ ( counter_++ ) {}
33
Nasty
* operator &() const { return NULL; }
38
int
Nasty
::counter_ = 0;
65
char pool[N*sizeof(
Nasty
)] = {0};
66
Nasty
* bp = (
Nasty
*)pool;
68
Nasty
::counter_ = 23;
69
std::uninitialized_fill_n(bp, N,
Nasty
());
/external/libcxx/test/std/utilities/memory/specialized.algorithms/uninitialized.copy/
uninitialized_copy.pass.cpp
31
struct
Nasty
33
Nasty
() : i_ ( counter_++ ) {}
34
Nasty
* operator &() const { return NULL; }
39
int
Nasty
::counter_ = 0;
65
char pool[sizeof(
Nasty
)*N] = {0};
66
Nasty
* p = (
Nasty
*) pool;
67
Nasty
arr[N];
uninitialized_copy_n.pass.cpp
31
struct
Nasty
33
Nasty
() : i_ ( counter_++ ) {}
34
Nasty
* operator &() const { return NULL; }
39
int
Nasty
::counter_ = 0;
65
char pool[sizeof(
Nasty
)*N] = {0};
66
Nasty
* p = (
Nasty
*) pool;
67
Nasty
arr[N];
/external/clang/test/CodeGen/
2003-11-03-AddrArrayElement.c
3
// This should be turned into a tasty getelementptr instruction, not a
nasty
/external/dhcpcd-6.8.2/
iconfig.mk
0
#
Nasty
hack so that make clean works without configure being run
GNUmakefile
4
#
Nasty
hack so that make clean works without configure being run
if-linux-wext.c
29
* THIS IS A
NASTY
HACK THAT SHOULD NEVER HAVE HAPPENED
/external/v8/test/mjsunit/regress/
regress-1209.js
29
var
nasty
= [];
31
nasty
.push("a" + 0);
32
return Function.apply(null,
nasty
);
/external/e2fsprogs/debian/scripts/
test-backtrace
5
# This is a
nasty
workaround for Debian bug #708307, which is really a glibc bug
/frameworks/base/core/res/res/anim/
window_move_from_decor.xml
23
a
nasty
hack. -->
/hardware/bsp/intel/peripheral/libmraa/cmake/modules/
FindNodejs.cmake
43
# we end up with a
nasty
newline so strip everything that isn't a number
/hardware/bsp/intel/peripheral/libupm/cmake/modules/
FindNode.cmake
45
# we end up with a
nasty
newline so strip everything that isn't a number
/prebuilts/tools/common/m2/repository/org/ccil/cowan/tagsoup/tagsoup/1.2/
tagsoup-1.2.pom
8
<description>TagSoup is a SAX-compliant parser written in Java that, instead of parsing well-formed or valid XML, parses HTML as it is found in the wild: poor,
nasty
and brutish, though quite often far from short. TagSoup is designed for people who have to process this stuff using some semblance of a rational application design. By providing a SAX interface, it allows standard XML tools to be applied to even the worst HTML. TagSoup also includes a command-line processor that reads HTML files and can generate either clean HTML or well-formed XML that is a close approximation to XHTML.</description>
/external/bison/
AUTHORS
23
and
nasty
bugs.
/frameworks/base/core/java/android/util/
ExceptionUtils.java
29
// a
nasty
hack.
/external/libcxx/test/support/
nasty_containers.hpp
127
nasty_vector *operator &() { return nullptr; } //
nasty
128
const nasty_vector *operator &() const { return nullptr; } //
nasty
273
nasty_list *operator &() { return nullptr; } //
nasty
274
const nasty_list *operator &() const { return nullptr; } //
nasty
/external/llvm/include/llvm/Support/
MutexGuard.h
25
/// a host of
nasty
multi-threading problems in the face of exceptions, etc.
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/support/
nasty_containers.hpp
127
nasty_vector *operator &() { return nullptr; } //
nasty
128
const nasty_vector *operator &() const { return nullptr; } //
nasty
273
nasty_list *operator &() { return nullptr; } //
nasty
274
const nasty_list *operator &() const { return nullptr; } //
nasty
/packages/apps/Messaging/src/com/android/messaging/util/
FallbackStrategies.java
24
* Basically, what would have been a
nasty
try-catch that's hard to separate and maintain:
/external/v8/test/mjsunit/
stack-traces.js
212
function
Nasty
() { }
213
Nasty
.prototype.foo = function () { throw new RangeError(); };
214
var n = new
Nasty
();
/external/deqp/framework/delibs/dethread/unix/
deMutexUnix.c
32
/* \todo [2009-11-12 pyry] It is quite
nasty
to allocate mutex structs from heap. */
/external/libcxx/www/
debug_mode.html
16
in fairly
nasty
compile errors.
/external/libxml2/include/libxml/
xmlwin32version.h
19
* use those to be sure nothing
nasty
will happen if
/external/llvm/docs/HistoricalNotes/
2002-05-12-InstListChange.txt
34
Long term, all of the code that depends on the
nasty
features in the
Completed in 560 milliseconds
1
2
3
4
5
6
7
8
9
10
11
>>