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

12

/external/chromium_org/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/chromium_org/third_party/libjingle/source/talk/xmllite/
H A Dxmlprinter.cc149 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
[all...]
/external/chromium_org/third_party/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/dexmaker/src/mockito/java/com/google/dexmaker/mockito/
H A DUnsafeAllocator.java41 final Object unsafe = f.get(null);
47 return (T) allocateInstance.invoke(unsafe, c);
/external/chromium_org/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/chromium_org/v8/src/
H A Dhydrogen-bch.cc125 bool unsafe = false; local
144 unsafe = true;
174 return unsafe ? OPTIMISTICALLY_HOISTABLE : HOISTABLE;
/external/chromium_org/third_party/icu/source/i18n/
H A Ducol_sit.cpp909 USet *unsafe,
915 uset_clear(unsafe);
922 uset_applyPattern(unsafe, cccpattern, 24, USET_IGNORE_SPACE, status);
925 uset_addRange(unsafe, 0xe40, 0xe44);
926 uset_addRange(unsafe, 0xec0, 0xec4);
928 uset_addRange(unsafe, 0xd800, 0xdfff);
936 // to get unsafe code points, we need to
937 // break the strings apart and add them to the unsafe set
945 uset_add(unsafe, c);
953 return uset_size(unsafe);
908 ucol_getUnsafeSet( const UCollator *coll, USet *unsafe, UErrorCode *status) argument
[all...]
/external/chromium_org/native_client_sdk/src/doc/
H A Dfaq.rst358 * **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/
H A Dcollationbuilder.cpp1629 USet *unsafe,
1635 uset_clear(unsafe);
1642 uset_applyPattern(unsafe, cccpattern, 24, USET_IGNORE_SPACE, status);
1645 // (trail surrogates should need to be unsafe only if the caller tests for UTF-16 code *units*,
1647 uset_addRange(unsafe, 0xd800, 0xdfff);
1656 // to get unsafe code points, we need to
1657 // break the strings apart and add them to the unsafe set
1665 uset_add(unsafe, c);
1673 return uset_size(unsafe);
1628 ucol_getUnsafeSet( const UCollator *coll, USet *unsafe, UErrorCode *status) argument
H A Drulebasedcollator.cpp1119 UBool unsafe = FALSE; local
1124 unsafe = data->isUnsafeBackward(c, numeric);
1126 if(!unsafe && equalPrefixLength != rightLength) {
1130 unsafe = data->isUnsafeBackward(c, numeric);
1132 if(unsafe) {
/external/chromium_org/third_party/WebKit/Source/devtools/front_end/cm/
H A Dclike.js325 " unsafe using virtual void volatile while add alias ascending descending dynamic from get" +
/external/chromium_org/third_party/skia/experimental/webtry/res/js/cm/
H A Dclike.js322 " unsafe using virtual void volatile while add alias ascending descending dynamic from get" +
/external/skia/experimental/webtry/res/js/cm/
H A Dclike.js322 " unsafe using virtual void volatile while add alias ascending descending dynamic from get" +
/external/chromium_org/third_party/icu/source/i18n/unicode/
H A Ducol.h1343 /** Calculates the set of unsafe code points, given a collator.
1344 * A character is unsafe if you could append any character and cause the ordering to alter significantly.
1349 * @param unsafe a fill-in set to receive the unsafe points
1356 USet *unsafe,
/external/icu/icu4c/source/i18n/unicode/
H A Ducol.h1370 /** Calculates the set of unsafe code points, given a collator.
1371 * A character is unsafe if you could append any character and cause the ordering to alter significantly.
1376 * @param unsafe a fill-in set to receive the unsafe points
1383 USet *unsafe,
/external/linux-tools-perf/perf-3.12.0/tools/perf/Documentation/
H A DMakefile50 ASCIIDOC_EXTRA = --unsafe
/external/chromium_org/content/browser/fileapi/
H A Dcopy_or_move_operation_delegate_unittest.cc89 std::string unsafe = dest_platform_path.BaseName().AsUTF8Unsafe(); variable
90 if (unsafe.find(reject_string_) != std::string::npos) {
/external/chromium_org/chrome/common/extensions/docs/static/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/chromium_org/content/public/android/javatests/src/org/chromium/content/browser/
H A DJavaBridgeBasicsTest.java717 public String unsafe() { return "bar"; }
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"));
827 // ContentViewCore#addJavascriptInterface, not the possibly unsafe version.
/external/littlemock/src/com/google/testing/littlemock/
H A DLittleMock.java1295 final Object unsafe = f.get(null);
1297 return (T) allocateInstance.invoke(unsafe, clazz);
1317 throw new IllegalStateException("unsafe create instance failed");
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.apache.ant_1.7.1.v20090120-1145/lib/
H A Dant-nodeps.jarMETA-INF/ META-INF/MANIFEST.MF org/ org/apache/ org/apache/tools/ org/apache/tools/ant/ ...
/external/chromium_org/v8/test/cctest/
H A Dtest-heap.cc1496 i::Object** unsafe = reinterpret_cast<i::Object**>(*ctx[i]); local
1497 *unsafe = CcTest::heap()->undefined_value();

Completed in 2710 milliseconds

12