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

1 2 3

  /external/chromium_org/tools/clang/rewrite_scoped_refptr/tests/
local-returned-as-raw-expected.cc 11 // 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;
local-returned-as-raw-original.cc 11 // 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;
temp-assigned-to-raw-var-original.cc 11 // Case 2: An example of an unsafe conversion, where the scoped_refptr<> is
18 Foo* unsafe = GetBuggyFoo(); local
temp-assigned-to-raw-var-expected.cc 11 // Case 2: An example of an unsafe conversion, where the scoped_refptr<> is
18 scoped_refptr<Foo> unsafe = GetBuggyFoo(); local
  /art/test/004-UnsafeTest/src/
Main.java 18 import sun.misc.Unsafe;
39 private static Unsafe getUnsafe() throws Exception {
40 Class<?> unsafeClass = Class.forName("sun.misc.Unsafe");
43 return (Unsafe) f.get(null);
47 Unsafe unsafe = getUnsafe(); local
48 check(unsafe.arrayBaseOffset(boolean[].class), vmArrayBaseOffset(boolean[].class),
49 "Unsafe.arrayBaseOffset(boolean[])");
50 check(unsafe.arrayBaseOffset(byte[].class), vmArrayBaseOffset(byte[].class),
51 "Unsafe.arrayBaseOffset(byte[])")
    [all...]
  /external/chromium_org/third_party/libjingle/source/talk/xmllite/
xmlprinter.cc 149 size_t unsafe = text.find_first_of("<>&\"", safe); local
150 if (unsafe == std::string::npos)
151 unsafe = text.length();
152 *pout_ << text.substr(safe, unsafe - safe);
153 if (unsafe == text.length())
155 switch (text[unsafe]) {
161 safe = unsafe + 1;
170 size_t unsafe = text.find_first_of("<>&", safe); local
171 if (unsafe == std::string::npos)
172 unsafe = text.length()
    [all...]
  /external/chromium_org/third_party/webrtc/libjingle/xmllite/
xmlprinter.cc 132 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 = text.length()
    [all...]
  /external/dexmaker/src/mockito/java/com/google/dexmaker/mockito/
UnsafeAllocator.java 34 // public class Unsafe {
38 Class<?> unsafeClass = Class.forName("sun.misc.Unsafe");
41 final Object unsafe = f.get(null); local
47 return (T) allocateInstance.invoke(unsafe, c);
  /external/chromium_org/third_party/markupsafe/
__init__.py 48 If you want object passed being always treated as unsafe you can use the
  /external/chromium_org/third_party/jinja2/
sandbox.py 25 #: 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` decorator from this module
    [all...]
filters.py 751 """Mark a value as unsafe. This is the reverse operation for :func:`safe`."""
  /external/chromium_org/v8/src/
hydrogen-bch.cc 118 * (loop back to the header) without meeting a check, or UNSAFE is set if
125 bool unsafe = false; local
144 unsafe = true;
174 return unsafe ? OPTIMISTICALLY_HOISTABLE : HOISTABLE;
  /external/chromium_org/third_party/icu/source/i18n/
ucol_sit.cpp 909 USet *unsafe,
915 uset_clear(unsafe);
922 uset_applyPattern(unsafe, cccpattern, 24, USET_IGNORE_SPACE, status);
925 uset_addRange(unsafe, 0xe40, 0xe44)
    [all...]
  /external/chromium_org/extensions/renderer/resources/
uncaught_exception_handler.js 16 * unsafe, because it could be generated by an extension.
  /external/chromium_org/v8/test/mjsunit/
codegen-coverage.js 103 // "unsafe smi" code that spills a register.
  /external/chromium_org/native_client_sdk/src/doc/
faq.rst 358 * **No unsafe instructions:** The validator ensures that the Native
359 Client application does not contain any unsafe instructions. Examples
360 of unsafe instructions are ``syscall``, ``int``, and ``lds``.
  /external/icu/icu4c/source/i18n/
collationbuilder.cpp     [all...]
rulebasedcollator.cpp 1119 UBool unsafe = FALSE; local
    [all...]
  /external/chromium_org/third_party/icu/source/i18n/unicode/
ucol.h     [all...]
  /external/icu/icu4c/source/i18n/unicode/
ucol.h     [all...]
  /external/okhttp/website/static/
prettify.js 19 O=[N,"as,base,by,checked,decimal,delegate,descending,dynamic,event,fixed,foreach,from,group,implicit,in,internal,into,is,let,lock,object,out,override,orderby,params,partial,readonly,ref,sbyte,sealed,stackalloc,string,select,uint,ulong,unchecked,unsafe,ushort,var,virtual,where"],E=[E,"debugger,eval,export,function,get,null,set,undefined,var,with,Infinity,NaN"],P=[y,"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"],
20 Q=[y,"alias,and,begin,case,class,def,defined,elsif,end,ensure,false,in,module,next,nil,not,or,redo,rescue,retry,self,super,then,true,undef,unless,until,when,yield,BEGIN,END"],W=[y,"as,assert,const,copy,drop,enum,extern,fail,false,fn,impl,let,log,loop,match,mod,move,mut,priv,pub,pure,ref,self,static,struct,true,trait,type,unsafe,use"],y=[y,"case,done,elif,esac,eval,fi,function,in,local,set,then,until"],R=/^(DIR|FILE|vector|(de|priority_)?queue|list|stack|(const_)?iterator|(multi)?(set|map)|bitset|u?(int|float)\d*)\b/,
  /external/linux-tools-perf/perf-3.12.0/tools/perf/Documentation/
Makefile 50 ASCIIDOC_EXTRA = --unsafe
  /external/chromium_org/content/browser/fileapi/
copy_or_move_operation_delegate_unittest.cc 89 std::string unsafe = dest_platform_path.BaseName().AsUTF8Unsafe(); variable
90 if (unsafe.find(reject_string_) != std::string::npos) {
  /build/tools/droiddoc/templates-pdk/assets/
prettify.js 5 dc="(?:",ec=")",fc="gi",gc="PRE",hc='<!DOCTYPE foo PUBLIC "foo bar">\n<foo />',ic="\t",jc="\n",kc="[^<]+|<!--[\\s\\S]*?--\>|<!\\[CDATA\\[[\\s\\S]*?\\]\\]>|</?[a-zA-Z][^>]*>|<",lc="nocode",mc=' $1="$2$3$4"',S="pln",nc="string",T="lang-",oc="src",U="str",pc="'\"",qc="'\"`",rc="\"'",V="com",sc="lang-regex",tc="(/(?=[^/*])(?:[^/\\x5B\\x5C]|\\x5C[\\s\\S]|\\x5B(?:[^\\x5C\\x5D]|\\x5C[\\s\\S])*(?:\\x5D|$))+/)",uc="kwd",vc="^(?:",wc=")\\b",xc=" \r\n\t\u00a0",yc="lit",zc="typ",Ac="0123456789",Y="pun",Bc="break continue do else for if return while auto case char const default double enum extern float goto int long register short signed sizeof static struct switch typedef union unsigned void volatile catch class delete false import new operator private protected public this throw true try alignof align_union asm axiom bool concept concept_map const_cast constexpr decltype dynamic_cast explicit export friend inline late_check mutable namespace nullptr reinterpret_cast static_assert static_cast template typeid typename typeof using virtual wchar_t where break continue do else for if return while auto case char const default double enum extern float goto int long register short signed sizeof static struct switch typedef union unsigned void volatile catch class delete false import new operator private protected public this throw true try boolean byte extends final finally implements import instanceof null native package strictfp super synchronized throws transient as base by checked decimal delegate descending 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 break continue do else for if return while auto case char const default double enum extern float goto int long register short signed sizeof static struct switch typedef union unsigned void volatile catch class delete false import new operator private protected public this throw true try debugger eval export function get null set undefined var with Infinity NaN caller delete die do dump elsif eval exit foreach for goto if import last local my next no our print package redo require sub undef unless until use wantarray while BEGIN END break continue do else for if return while 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 break continue do else for if return while alias and begin case class def defined elsif end ensure false in module next nil not or redo rescue retry self super then true undef unless until when yield BEGIN END break continue do else for if return while case done elif esac eval fi function in local set then until ",
7 bd="c",cd="cc",dd="cpp",ed="cxx",fd="cyc",gd="m",hd="null true false",id="json",jd="break continue do else for if return while auto case char const default double enum extern float goto int long register short signed sizeof static struct switch typedef union unsigned void volatile catch class delete false import new operator private protected public this throw true try boolean byte extends final finally implements import instanceof null native package strictfp super synchronized throws transient as base by checked decimal delegate descending 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 ",
  /external/chromium_org/content/public/android/javatests/src/org/chromium/content/browser/
JavaBridgeBasicsTest.java 717 public String unsafe() { return "bar"; } method in class:JavaBridgeBasicsTest.Test
731 // unsafe() should be able to be called because we are not in safe mode.
733 "unsafeTestObject.getTest().unsafe()"));
741 // unsafe() should not be able to be called because we are in safe mode.
742 assertRaisesException("safeTestObject.getTest().unsafe()");
744 "typeof safeTestObject.getTest().unsafe"));
    [all...]

Completed in 1027 milliseconds

1 2 3