Searched refs:unsafe (Results 1 - 25 of 55) sorted by relevance

123

/external/v8/tools/clang/rewrite_scoped_refptr/tests/
H A Dlocal-returned-as-raw-expected.cc11 // An example of an unsafe conversion, where the object is freed by the time the
16 scoped_refptr<Foo> unsafe(new Foo);
17 return unsafe;
H A Dlocal-returned-as-raw-original.cc11 // An example of an unsafe conversion, where the object is freed by the time the
16 scoped_refptr<Foo> unsafe(new Foo);
17 return unsafe;
H A Dtemp-assigned-to-raw-var-original.cc11 // Case 2: An example of an unsafe conversion, where the scoped_refptr<> is
18 Foo* unsafe = GetBuggyFoo(); local
H A Dtemp-assigned-to-raw-var-expected.cc11 // Case 2: An example of an unsafe conversion, where the scoped_refptr<> is
18 scoped_refptr<Foo> unsafe = GetBuggyFoo(); local
/external/webrtc/webrtc/libjingle/xmllite/
H A Dxmlprinter.cc132 size_t unsafe = text.find_first_of("<>&\"", safe); local
133 if (unsafe == std::string::npos)
134 unsafe = text.length();
135 *pout_ << text.substr(safe, unsafe - safe);
136 if (unsafe == text.length())
138 switch (text[unsafe]) {
144 safe = unsafe + 1;
153 size_t unsafe = text.find_first_of("<>&", safe); local
154 if (unsafe == std::string::npos)
155 unsafe
[all...]
/external/objenesis/main/src/main/java/org/objenesis/instantiator/sun/
H A DUnsafeFactoryInstantiator.java39 private static Object unsafe; field in class:UnsafeFactoryInstantiator
44 if (unsafe == null) {
59 unsafe = f.get(null);
74 return type.cast(allocateInstance.invoke(unsafe, type));
/external/glide/library/src/main/java/com/bumptech/glide/load/model/
H A DGlideUrl.java58 String unsafe = toString();
59 String safe = Uri.encode(unsafe, ALLOWED_URI_CHARS);
/external/dexmaker/dexmaker-mockito/src/main/java/com/android/dx/mockito/
H A DUnsafeAllocator.java41 final Object unsafe = f.get(null);
47 return (T) allocateInstance.invoke(unsafe, c);
/external/swiftshader/third_party/LLVM/include/llvm/CodeGen/PBQP/Heuristics/
H A DBriggs.h105 UnsafeArray unsafe, reverseUnsafe; member in struct:PBQP::Heuristics::Briggs::EdgeData
324 ed.unsafe.clear();
325 ed.unsafe.resize(numRegs, 0);
333 ed.unsafe[i] = 1;
365 EdgeData::UnsafeArray &unsafe = local
366 nIsNode1 ? ed.unsafe : ed.reverseUnsafe;
370 if (unsafe[r]) {
392 EdgeData::UnsafeArray &unsafe = local
393 nIsNode1 ? ed.unsafe : ed.reverseUnsafe;
397 if (unsafe[
[all...]
/external/libmojo/third_party/jinja2/
H A Dsandbox.py25 #: attributes of function objects that are considered unsafe.
29 #: unsafe method attributes. function attributes are unsafe for methods too
32 #: unsafe generator attirbutes.
107 def unsafe(f): function
108 """Marks a function or method as unsafe.
112 @unsafe
174 for typespec, unsafe in _mutable_spec:
176 return attr in unsafe
281 affect the `unsafe` decorato
[all...]
/external/python/cpython2/Lib/test/
H A Dtest_pipes.py78 unsafe = '"`$\\!'
83 for u in unsafe:
86 for u in unsafe:
H A D_mock_backport.py383 _spec_as_instance=False, _eat_self=None, unsafe=False, **kwargs
413 __dict__['_mock_unsafe'] = unsafe
/external/skia/experimental/go-skia/
H A Dskia.go27 "unsafe"
106 // C.sk_canvas_draw_oval(c.ptr, (*C.sk_rect_t)(unsafe.Pointer(rect)), (*C.sk_paint_t)(paint.ptr))
111 // C.sk_canvas_draw_rect(c.ptr, (*C.sk_rect_t)(unsafe.Pointer(rect)), (*C.sk_paint_t)(paint.ptr))
202 return (*C.sk_rect_t)(unsafe.Pointer(r))
207 return (*C.sk_imageinfo_t)(unsafe.Pointer(i))
/external/syslinux/core/
H A Dcallback.inc78 and eax,0x200ed7 ; Mask (potentially) unsafe flags
/external/libchrome/sandbox/linux/bpf_dsl/
H A Dbpf_dsl_unittest.cc468 ResultExpr unsafe = UnsafeTrap(DummyTrap, nullptr); local
469 EXPECT_TRUE(unsafe->HasUnsafeTraps());
472 ResultExpr maybe = If(arg == 0, allow).Else(unsafe);
/external/guava/guava-testlib/src/com/google/common/testing/
H A DNullPointerTester.java339 Invokable<Object, ?> unsafe = (Invokable<Object, ?>) invokable;
340 unsafe.invoke(instance, params);
/external/icu/icu4c/source/i18n/
H A Dcollationbuilder.cpp1671 USet *unsafe,
1677 uset_clear(unsafe);
1684 uset_applyPattern(unsafe, cccpattern, 24, USET_IGNORE_SPACE, status);
1687 // (trail surrogates should need to be unsafe only if the caller tests for UTF-16 code *units*,
1689 uset_addRange(unsafe, 0xd800, 0xdfff);
1698 // to get unsafe code points, we need to
1699 // break the strings apart and add them to the unsafe set
1707 uset_add(unsafe, c);
1715 return uset_size(unsafe);
1670 ucol_getUnsafeSet( const UCollator *coll, USet *unsafe, UErrorCode *status) argument
H A Drulebasedcollator.cpp1124 UBool unsafe = FALSE; local
1129 unsafe = data->isUnsafeBackward(c, numeric);
1131 if(!unsafe && equalPrefixLength != rightLength) {
1135 unsafe = data->isUnsafeBackward(c, numeric);
1137 if(unsafe) {
/external/icu/icu4c/source/i18n/unicode/
H A Ducol.h1413 /** Calculates the set of unsafe code points, given a collator.
1414 * A character is unsafe if you could append any character and cause the ordering to alter significantly.
1419 * @param unsafe a fill-in set to receive the unsafe points
1426 USet *unsafe,
/external/protobuf/java/core/src/main/java/com/google/protobuf/
H A DUtf8.java93 * A mask used when performing unsafe reads to determine if a long value contains any non-ASCII
1007 * Indicates whether or not all required unsafe operations are supported on this platform.
1631 sun.misc.Unsafe unsafe = null;
1633 unsafe = AccessController.doPrivileged(new PrivilegedExceptionAction<sun.misc.Unsafe>() {
1638 // Check that this platform supports all of the required unsafe methods.
1658 unsafe != null ? "available" : "unavailable");
1659 return unsafe;
H A DCodedOutputStream.java2609 sun.misc.Unsafe unsafe = null;
2611 unsafe = AccessController.doPrivileged(new PrivilegedExceptionAction<sun.misc.Unsafe>() {
2633 unsafe != null ? "available" : "unavailable");
2634 return unsafe;
2638 * Indicates whether or not unsafe array operations are supported on this platform.
/external/doclava/res/assets/templates-sdk/assets/js/
H A Dprettify.js19 H=[G,"as,base,by,checked,decimal,delegate,descending,dynamic,event,fixed,foreach,from,group,implicit,in,interface,internal,into,is,lock,object,out,override,orderby,params,partial,readonly,ref,sbyte,sealed,stackalloc,string,select,uint,ulong,unchecked,unsafe,ushort,var"],w=[w,"debugger,eval,export,function,get,null,set,undefined,var,with,Infinity,NaN"],I=[v,"and,as,assert,class,def,del,elif,except,exec,finally,from,global,import,in,is,lambda,nonlocal,not,or,pass,print,raise,try,with,yield,False,True,None"],
/external/syslinux/memdisk/
H A Dmemdisk16.asm768 and eax,0x200cd7 ; Mask (potentially) unsafe flags
/external/google-breakpad/
H A Dconfigure2381 # Reject unsafe characters in $srcdir or the absolute working directory
2387 as_fn_error $? "unsafe absolute working directory name" "$LINENO" 5;;
2391 as_fn_error $? "unsafe srcdir value: '$srcdir'" "$LINENO" 5;;
/external/stressapptest/
H A Dconfigure2606 # Reject unsafe characters in $srcdir or the absolute working directory
2612 as_fn_error "unsafe absolute working directory name" "$LINENO" 5;;
2616 as_fn_error "unsafe srcdir value: \`$srcdir'" "$LINENO" 5;;

Completed in 1341 milliseconds

123