HomeSort by relevance Sort by last modified time
    Searched defs:Object (Results 76 - 100 of 140) sorted by null

1 2 34 5 6

  /external/llvm/include/llvm/Object/
ELFYAML.h 29 // reading/generating binary object files.
107 struct Object {
208 struct MappingTraits<ELFYAML::Object> {
209 static void mapping(IO &IO, ELFYAML::Object &Object);
  /external/llvm/lib/Analysis/
AliasAnalysis.cpp 443 const Value *Object = GetUnderlyingObject(MemLoc.Ptr, DL);
444 if (!isIdentifiedObject(Object) || isa<GlobalValue>(Object) ||
445 isa<Constant>(Object))
449 if (!CS.getInstruction() || CS.getInstruction() == Object)
453 llvm::PointerMayBeCaptured(Object, &CB);
473 AliasAnalysis::Location(Object)))
563 /// identifiable object. This returns true for:
BasicAliasAnalysis.cpp 60 /// object that never escapes from the function.
99 /// getObjectSize - Return the size of the object specified by V, or
110 /// isObjectSmallerThan - Return true if we can prove that the object specified
115 // Note that the meanings of the "object" are slightly different in the
120 // c1 and c2 share the same meaning; however, the meaning of "object" in c3
121 // refers to the "entire object".
127 // In the context of c1 and c2, the "object" pointed by q refers to the
130 // However, in the context of c3, the "object" refers to the chunk of memory
131 // being allocated. So, the "object" has 100 bytes, and q points to the middle
132 // the "object". In case q is passed to isObjectSmallerThan() as the 1s
    [all...]
  /external/qemu/include/qom/
object.h 2 * QEMU Object Model
29 typedef struct Object Object;
36 #define TYPE_OBJECT "object"
39 * SECTION:object.h
40 * @title:Base Object Type System
43 * The QEMU Object Model provides a framework for registering user creatable
92 * Using object_new(), a new #Object derivative will be instantiated. You can
93 * cast an #Object to a subclass (or base-class) type using
112 * Before an object is initialized, the class for the object must b
    [all...]
  /frameworks/compile/mclinker/include/mcld/MC/
Input.h 36 Object,
  /external/chromium_org/chrome/third_party/chromevox/
chromeVoxChromePageScript.js 9 goog.typeOf=function(a){var b=typeof a;if("object"==b)if(a){if(a instanceof Array)return"array";if(a instanceof Object)return b;var c=Object.prototype.toString.call(a);if("[object Window]"==c)return"object";if("[object Array]"==c||"number"==typeof a.length&&"undefined"!=typeof a.splice&&"undefined"!=typeof a.propertyIsEnumerable&&!a.propertyIsEnumerable("splice"))return"array";if("[object Function]"==c||"undefined"!=typeof a.call&&"undefined"!=typeof a.propertyIsEnumerable&&!a.propertyIsEnumerable("call"))return"function"}else return"null";
10 else if("function"==b&&"undefined"==typeof a.call)return"object";return b};goog.isNull=function(a){return null===a};goog.isDefAndNotNull=function(a){return null!=a};goog.isArray=function(a){return"array"==goog.typeOf(a)};goog.isArrayLike=function(a){var b=goog.typeOf(a);return"array"==b||"object"==b&&"number"==typeof a.length};goog.isDateLike=function(a){return goog.isObject(a)&&"function"==typeof a.getFullYear};goog.isString=function(a){return"string"==typeof a};
11 goog.isBoolean=function(a){return"boolean"==typeof a};goog.isNumber=function(a){return"number"==typeof a};goog.isFunction=function(a){return"function"==goog.typeOf(a)};goog.isObject=function(a){var b=typeof a;return"object"==b&&null!=a||"function"==b};goog.getUid=function(a){return a[goog.UID_PROPERTY_]||(a[goog.UID_PRO (…)
    [all...]
chromeVoxKbExplorerScript.js 9 goog.typeOf=function(a){var b=typeof a;if("object"==b)if(a){if(a instanceof Array)return"array";if(a instanceof Object)return b;var c=Object.prototype.toString.call(a);if("[object Window]"==c)return"object";if("[object Array]"==c||"number"==typeof a.length&&"undefined"!=typeof a.splice&&"undefined"!=typeof a.propertyIsEnumerable&&!a.propertyIsEnumerable("splice"))return"array";if("[object Function]"==c||"undefined"!=typeof a.call&&"undefined"!=typeof a.propertyIsEnumerable&&!a.propertyIsEnumerable("call"))return"function"}else return"null";
10 else if("function"==b&&"undefined"==typeof a.call)return"object";return b};goog.isNull=function(a){return null===a};goog.isDefAndNotNull=function(a){return null!=a};goog.isArray=function(a){return"array"==goog.typeOf(a)};goog.isArrayLike=function(a){var b=goog.typeOf(a);return"array"==b||"object"==b&&"number"==typeof a.length};goog.isDateLike=function(a){return goog.isObject(a)&&"function"==typeof a.getFullYear};goog.isString=function(a){return"string"==typeof a};
11 goog.isBoolean=function(a){return"boolean"==typeof a};goog.isNumber=function(a){return"number"==typeof a};goog.isFunction=function(a){return"function"==goog.typeOf(a)};goog.isObject=function(a){var b=typeof a;return"object"==b&&null!=a||"function"==b};goog.getUid=function(a){return a[goog.UID_PROPERTY_]||(a[goog.UID_PRO (…)
    [all...]
  /art/runtime/verifier/
reg_type_test.cc 349 RegType& precise_obj_2 = cache.FromDescriptor(NULL, "Ljava/lang/Object;", true);
442 // The JavaLangObject method instead of FromDescriptor. Object Class in not final.
447 RegType& ref_type_3 = cache.FromDescriptor(NULL, "Ljava/lang/Object;", true);
455 // String and object , LUB is object.
459 RegType& Object = cache_new.JavaLangObject(true);
460 EXPECT_TRUE(string.Merge(Object, &cache_new).IsJavaLangObject());
  /art/test/100-reflect2/src/
Main.java 156 private static void show(Object o) {
171 System.out.println(String.class.isAssignableFrom(Object.class));
172 System.out.println(Object.class.isAssignableFrom(String.class));
198 show(m.invoke(null, (Object) new String[] { "h", "e", "l", "l", "o" }));
263 show(ctor.newInstance((Object[]) null));
  /external/iproute2/doc/
ip-cref.tex 45 ip [ OPTIONS ] OBJECT [ COMMAND [ ARGUMENTS ]]
108 \verb|OBJECT| is the object to manage or to get information about.
109 The object types currently understood by \verb|ip| are:
126 \verb|COMMAND| specifies the action to perform on the object.
127 The set of possible actions depends on the object type.
139 The arguments depend on the command and object. There are two types of arguments:
228 \paragraph{Object:} A \verb|link| is a network device and the corresponding
550 \paragraph{Object:} The \verb|address| is a protocol (IP or IPv6) address attached
837 \paragraph{Object:} \verb|neighbour| objects establish bindings between protoco
    [all...]
  /external/pdfium/fpdfsdk/src/javascript/
JS_Value.cpp 121 v8::Handle<v8::Object> pObj = JS_ToObject(m_pValue);
125 CJS_Value::operator v8::Handle<v8::Object>() const
182 void CJS_Value::operator =(v8::Handle<v8::Object> pObj)
  /libcore/luni/src/test/java/libcore/java/lang/reflect/
ReflectionTest.java 46 assertEquals(Object.class, AbstractCollection.class.getSuperclass());
47 assertNull(Object.class.getSuperclass());
107 String fieldThreeRaw = "protected java.lang.Object[] " + classC + ".fieldThree";
131 Constructor constructorTwo = C.class.getDeclaredConstructor(Map.class, Object.class);
132 String constructorTwoRaw = "protected " + classC + "(java.util.Map,java.lang.Object)";
315 assertFalse(Object.class.isLocalClass());
330 assertFalse(Object.class.isAnonymousClass());
413 private int count(List<?> list, Object element) {
415 for (Object o : list) {
  /external/chromium_org/v8/src/
json-parser.h 23 MUST_USE_RESULT static MaybeHandle<Object> Parse(Handle<String> source) {
49 MaybeHandle<Object> ParseJson();
145 Handle<Object> ParseJsonNumber();
149 // one of "true", "false", or "null", or an object or array literal.
150 Handle<Object> ParseJsonValue();
152 // Parse a JSON object literal (grammar production JSONObject).
153 // An object literal is a squiggly-braced and comma separated sequence
158 Handle<Object> ParseJsonObject();
165 Handle<Object> ParseJsonArray();
170 inline Handle<Object> ReportUnexpectedCharacter()
    [all...]
  /frameworks/compile/mclinker/include/mcld/LD/
ResolveInfo.h 50 Object = 1,
102 /// setRegular - set the source of the file is a regular object
105 /// setDynamic - set the source of the file is a dynamic object
109 /// @param pIsDyn is the source from a dynamic object?
270 static const uint32_t object_flag = Object << TYPE_OFFSET;
  /external/chromium_org/third_party/polymer/components/platform/
platform.js 12 window.Platform=window.Platform||{},window.logFlags=window.logFlags||{},function(a){var b=a.flags||{};location.search.slice(1).split("&").forEach(function(a){a=a.split("="),a[0]&&(b[a[0]]=a[1]||!0)});var c=document.currentScript||document.querySelector('script[src*="platform.js"]');if(c)for(var d,e=c.attributes,f=0;f<e.length;f++)d=e[f],"src"!==d.name&&(b[d.name]=d.value||!0);b.log&&b.log.split(",").forEach(function(a){window.logFlags[a]=!0}),b.shadow=b.shadow||b.shadowdom||b.polyfill,b.shadow="native"===b.shadow?!1:b.shadow||!HTMLElement.prototype.createShadowRoot,b.shadow&&document.querySelectorAll("script").length>1&&console.warn("platform.js is not the first script on the page. See http://www.polymer-project.org/docs/start/platform.html#setup for details."),b.register&&(window.CustomElements=window.CustomElements||{flags:{}},window.CustomElements.flags.register=b.register),b.imports&&(window.HTMLImports=window.HTMLImports||{flags:{}},window.HTMLImports.flags.imports=b.imports),a.flags=b}(Platform),"undefined"==typeof WeakMap&&!function(){var a=Object.defineProperty,b=Date.now()%1e9,c=function(){this.name="__st"+(1e9*Math.random()>>>0)+(b++ +"__")};c.prototype={set:function(b,c){var d=b[this.name];d&&d[0]===b?d[1]=c:a(b,this.name,{value:[b,c],writable:!0})},get:function(a){var b;return(b=a[this.name])&&b[0]===a?b[1]:void 0},"delete":function(a){var b=a[this.name];if(!b)return!1;var c=b[0]===a;return b[0]=b[1]=void 0,c},has:function(a){var b=a[this.name];return b?b[0]===a:!1}},window.WeakMap=c}(),function(global){"use strict";function detectObjectObserve(){function a(a){b=a}if("function"!=typeof Object.observe||"function"!=typeof Array.observe)return!1;var b=[],c={},d=[];return Object.observe(c,a),Array.observe(d,a),c.id=1,c.id=2,delete c.id,d.push(1,2),d.length=0,Object.deliverChangeRecords(a),5!==b.length?!1:"add"!=b[0].type||"update"!=b[1].type||"delete"!=b[2].type||"splice"!=b[3].type||"splice"!=b[4].type?!1:(Object.unobserve(c,a),Array.unobserve(d,a),!0)}function detectEval(){if("undefined"!=typeof chrome&&chrome.app&&chrome.app.runtime)return!1;if(navigator.getDeviceStorage)return!1;try{var a=new Function("","return true;");return a()}catch(b){return!1}}function isIndex(a){return+a===a>>>0}function toNumber(a){return+a}function isObject(a){return a===Object(a)}function areSameValue(a,b){return a===b?0!==a||1/a===1/b:numberIsNaN(a)&&numberIsNaN(b)?!0:a!==a&&b!==b}function getPathCharType(a){if(void 0===a)return"eof";var b=a.charCodeAt(0);switch(b){case 91:case 93:case 46:case 34:case 39:case 48:return a;case 95:case 36:return"ident";case 32:case 9:case 10:case 13:case 160:case 65279:case 8232:case 8233:return"ws"}return b>=97&&122>=b||b>=65&&90>=b?"ident":b>=49&&57>=b?"number":"else"}function noop(){}function parsePath(a){function b(){if(!(k>=a.length)){var b=a[k+1];return"inSingleQuote"==l&&"'"==b||"inDoubleQuote"==l&&'"'==b?(k++,d=b,m.append(),!0):void 0}}for(var c,d,e,f,g,h,i,j=[],k=-1,l="beforePath",m={push:function(){void 0!==e&&(j.push(e),e=void 0)},append:function(){void 0===e?e=d:e+=d}};l;)if(k++,c=a[k],"\\"!=c||!b(l)){if(f=getPathCharType(c),i=pathStateMachine[l],g=i[f]||i["else"]||"error","error"==g)return;if(l=g[0],h=m[g[1]]||noop,d=void 0===g[2]?c:g[2],h(),"afterPath"===l)return j}}function isIdent(a){return identRegExp.test(a)}function Path(a,b){if(b!==constructorIsPrivate)throw Error("Use Path.get to retrieve path objects");for(var c=0;c<a.length;c++)this.push(String(a[c]));hasEval&&this.length&&(this.getValueFrom=this.compiledGetValueFromFn())}function getPath(a){if(a instanceof Path)return a;if((null==a||0==a.length)&&(a=""),"string"!=typeof a){if(isIndex(a.length))return new Path(a,constructorIsPrivate);a=String(a)}var b=pathCache[a];if(b)return b;var c=parsePath(a);if(!c)return invalidPath;var b=new Path(c,constructorIsPrivate);return pathCache[a]=b,b}function formatAccessor(a){return isIndex(a)?"["+a+"]":'["'+a.replace(/"/g,'\\"')+'"]'}function dirtyCheck(a){for(var b=0;MAX_DIRTY_CHECK_CYCLES>b&&a.check_();)b++;return testingExposeCycleCount&&(global.dirtyCheckCycleCount=b),b>0}function objectIsEmpty(a){for(var b in a)return!1;return!0}function diffIsEmpty(a){return objectIsEmpty(a.added)&&objectIsEmpty(a.removed)&&objectIsEmpty(a.changed)}function diffObjectFromOldObject(a,b){var c={},d={},e={};for(var f in b){var g=a[f];(void 0===g||g!==b[f])&&(f in a?g!==b[f]&&(e[f]=g):d[f]=void 0)}for(var f in a)f in b||(c[f]=a[f]);return Array.isArray(a)&&a.length!==b.length&&(e.length=a.length),{added:c,removed:d,changed:e}}function runEOMTasks(){if(!eomTasks.length)return!1;for(var a=0;a<eomTasks.length;a++)eomTasks[a]();return eomTasks.length=0,!0}function newObservedObject(){function a(a){b&&b.state_===OPENED&&!d&&b.check_(a)}var b,c,d=!1,e=!0;return{open:function(c){if(b)throw Error("ObservedObject in use");e||Object.deliverChangeRecords(a),b=c,e=!1},observe:function(b,d){c=b,d?Array.observe(c,a):Object.observe(c,a)},deliver:function(b){d=b,Object.deliverChangeRecords(a),d=!1},close:function(){b=void 0,Object.unobserve(c,a),observedObjectCache.push(this)}}}function getObservedObject(a,b,c){var d=observedOb (…)
    [all...]
  /external/chromium_org/third_party/polymer/components-chromium/platform/
platform.js 12 window.Platform=window.Platform||{},window.logFlags=window.logFlags||{},function(a){var b=a.flags||{};location.search.slice(1).split("&").forEach(function(a){a=a.split("="),a[0]&&(b[a[0]]=a[1]||!0)});var c=document.currentScript||document.querySelector('script[src*="platform.js"]');if(c)for(var d,e=c.attributes,f=0;f<e.length;f++)d=e[f],"src"!==d.name&&(b[d.name]=d.value||!0);b.log&&b.log.split(",").forEach(function(a){window.logFlags[a]=!0}),b.shadow=b.shadow||b.shadowdom||b.polyfill,b.shadow="native"===b.shadow?!1:b.shadow||!HTMLElement.prototype.createShadowRoot,b.shadow&&document.querySelectorAll("script").length>1&&console.warn("platform.js is not the first script on the page. See http://www.polymer-project.org/docs/start/platform.html#setup for details."),b.register&&(window.CustomElements=window.CustomElements||{flags:{}},window.CustomElements.flags.register=b.register),b.imports&&(window.HTMLImports=window.HTMLImports||{flags:{}},window.HTMLImports.flags.imports=b.imports),a.flags=b}(Platform),"undefined"==typeof WeakMap&&!function(){var a=Object.defineProperty,b=Date.now()%1e9,c=function(){this.name="__st"+(1e9*Math.random()>>>0)+(b++ +"__")};c.prototype={set:function(b,c){var d=b[this.name];d&&d[0]===b?d[1]=c:a(b,this.name,{value:[b,c],writable:!0})},get:function(a){var b;return(b=a[this.name])&&b[0]===a?b[1]:void 0},"delete":function(a){var b=a[this.name];if(!b)return!1;var c=b[0]===a;return b[0]=b[1]=void 0,c},has:function(a){var b=a[this.name];return b?b[0]===a:!1}},window.WeakMap=c}(),function(global){"use strict";function detectObjectObserve(){function a(a){b=a}if("function"!=typeof Object.observe||"function"!=typeof Array.observe)return!1;var b=[],c={},d=[];return Object.observe(c,a),Array.observe(d,a),c.id=1,c.id=2,delete c.id,d.push(1,2),d.length=0,Object.deliverChangeRecords(a),5!==b.length?!1:"add"!=b[0].type||"update"!=b[1].type||"delete"!=b[2].type||"splice"!=b[3].type||"splice"!=b[4].type?!1:(Object.unobserve(c,a),Array.unobserve(d,a),!0)}function detectEval(){if("undefined"!=typeof chrome&&chrome.app&&chrome.app.runtime)return!1;if(navigator.getDeviceStorage)return!1;try{var a=new Function("","return true;");return a()}catch(b){return!1}}function isIndex(a){return+a===a>>>0}function toNumber(a){return+a}function isObject(a){return a===Object(a)}function areSameValue(a,b){return a===b?0!==a||1/a===1/b:numberIsNaN(a)&&numberIsNaN(b)?!0:a!==a&&b!==b}function getPathCharType(a){if(void 0===a)return"eof";var b=a.charCodeAt(0);switch(b){case 91:case 93:case 46:case 34:case 39:case 48:return a;case 95:case 36:return"ident";case 32:case 9:case 10:case 13:case 160:case 65279:case 8232:case 8233:return"ws"}return b>=97&&122>=b||b>=65&&90>=b?"ident":b>=49&&57>=b?"number":"else"}function noop(){}function parsePath(a){function b(){if(!(k>=a.length)){var b=a[k+1];return"inSingleQuote"==l&&"'"==b||"inDoubleQuote"==l&&'"'==b?(k++,d=b,m.append(),!0):void 0}}for(var c,d,e,f,g,h,i,j=[],k=-1,l="beforePath",m={push:function(){void 0!==e&&(j.push(e),e=void 0)},append:function(){void 0===e?e=d:e+=d}};l;)if(k++,c=a[k],"\\"!=c||!b(l)){if(f=getPathCharType(c),i=pathStateMachine[l],g=i[f]||i["else"]||"error","error"==g)return;if(l=g[0],h=m[g[1]]||noop,d=void 0===g[2]?c:g[2],h(),"afterPath"===l)return j}}function isIdent(a){return identRegExp.test(a)}function Path(a,b){if(b!==constructorIsPrivate)throw Error("Use Path.get to retrieve path objects");for(var c=0;c<a.length;c++)this.push(String(a[c]));hasEval&&this.length&&(this.getValueFrom=this.compiledGetValueFromFn())}function getPath(a){if(a instanceof Path)return a;if((null==a||0==a.length)&&(a=""),"string"!=typeof a){if(isIndex(a.length))return new Path(a,constructorIsPrivate);a=String(a)}var b=pathCache[a];if(b)return b;var c=parsePath(a);if(!c)return invalidPath;var b=new Path(c,constructorIsPrivate);return pathCache[a]=b,b}function formatAccessor(a){return isIndex(a)?"["+a+"]":'["'+a.replace(/"/g,'\\"')+'"]'}function dirtyCheck(a){for(var b=0;MAX_DIRTY_CHECK_CYCLES>b&&a.check_();)b++;return testingExposeCycleCount&&(global.dirtyCheckCycleCount=b),b>0}function objectIsEmpty(a){for(var b in a)return!1;return!0}function diffIsEmpty(a){return objectIsEmpty(a.added)&&objectIsEmpty(a.removed)&&objectIsEmpty(a.changed)}function diffObjectFromOldObject(a,b){var c={},d={},e={};for(var f in b){var g=a[f];(void 0===g||g!==b[f])&&(f in a?g!==b[f]&&(e[f]=g):d[f]=void 0)}for(var f in a)f in b||(c[f]=a[f]);return Array.isArray(a)&&a.length!==b.length&&(e.length=a.length),{added:c,removed:d,changed:e}}function runEOMTasks(){if(!eomTasks.length)return!1;for(var a=0;a<eomTasks.length;a++)eomTasks[a]();return eomTasks.length=0,!0}function newObservedObject(){function a(a){b&&b.state_===OPENED&&!d&&b.check_(a)}var b,c,d=!1,e=!0;return{open:function(c){if(b)throw Error("ObservedObject in use");e||Object.deliverChangeRecords(a),b=c,e=!1},observe:function(b,d){c=b,d?Array.observe(c,a):Object.observe(c,a)},deliver:function(b){d=b,Object.deliverChangeRecords(a),d=!1},close:function(){b=void 0,Object.unobserve(c,a),observedObjectCache.push(this)}}}function getObservedObject(a,b,c){var d=observedOb (…)
    [all...]
  /external/chromium_org/third_party/WebKit/PerformanceTests/SunSpider/tests/parse-only/
prototype-1.6.0.3.js 47 if (Object.isFunction(properties[0]))
54 Object.extend(klass, Class.Methods);
80 var properties = Object.keys(source);
82 if (!Object.keys({ toString: true }).length)
87 if (ancestor && Object.isFunction(value) &&
106 Object.extend = function(destination, source) {
112 Object.extend(Object, {
113 inspect: function(object) {
115 if (Object.isUndefined(object)) return 'undefined'
    [all...]
  /external/chromium_org/third_party/tcmalloc/chromium/src/tests/
tcmalloc_unittest.cc 36 // * Each allocated object's contents are generated by
37 // hashing the object pointer, and a generation count
38 // in the object. This allows us to easily check for
41 // a. Allocate an object
42 // b. Increment an object's generation count and update
44 // c. Pass the object to another thread
45 // d. Free an object
46 // Also, at the end of every step, object(s) are freed to maintain
165 static const int FLAGS_lgmaxsize = 16; // lg() of the max size object to alloc
178 static const int FLAGS_passweight = 1; // Weight for passing object
420 Object object; local
443 Object object = heap_[index]; local
471 Object object = heap_[index]; local
508 const Object& object = copy[i]; local
    [all...]
  /external/chromium_org/third_party/tcmalloc/vendor/src/tests/
tcmalloc_unittest.cc 36 // * Each allocated object's contents are generated by
37 // hashing the object pointer, and a generation count
38 // in the object. This allows us to easily check for
41 // a. Allocate an object
42 // b. Increment an object's generation count and update
44 // c. Pass the object to another thread
45 // d. Free an object
46 // Also, at the end of every step, object(s) are freed to maintain
165 static const int FLAGS_lgmaxsize = 16; // lg() of the max size object to alloc
178 static const int FLAGS_passweight = 1; // Weight for passing object
420 Object object; local
443 Object object = heap_[index]; local
471 Object object = heap_[index]; local
508 const Object& object = copy[i]; local
    [all...]
  /external/pdfium/core/src/fxcodec/lcms2/lcms2-2.6/src/
cmsio0.c     [all...]
  /libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/util/
ArrayListTest.java 35 Object[] objArray;
96 * java.util.ArrayList#add(int, java.lang.Object)
99 // Test for method void java.util.ArrayList.add(int, java.lang.Object)
100 Object o;
101 alist.add(50, o = new Object());
102 assertTrue("Failed to add Object", alist.get(50) == o);
106 Object oldItem = alist.get(25);
112 alist.add(0, o = new Object());
113 assertEquals("Failed to add Object", alist.get(0), o);
124 alist.add(-1, new Object());
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/
test_weakref.py 36 class Object:
40 return "<Object %r>" % self.arg
42 if isinstance(other, Object):
46 if isinstance(other, Object):
107 # tests that all references to the object are invalidated
110 # for a particular object at a time.
112 def callback(object, self=self):
138 "weak reference to live object should be live")
141 "<ref>() should return original object if live")
151 "ref2 should be dead after deleting object reference"
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/
test_weakref.py 36 class Object:
40 return "<Object %r>" % self.arg
42 if isinstance(other, Object):
46 if isinstance(other, Object):
107 # tests that all references to the object are invalidated
110 # for a particular object at a time.
112 def callback(object, self=self):
138 "weak reference to live object should be live")
141 "<ref>() should return original object if live")
151 "ref2 should be dead after deleting object reference"
    [all...]
  /external/deqp/modules/egl/
teglGLES2SharingThreadedTests.cpp 145 class GLES2Context : public tcu::ThreadUtil::Object
168 : tcu::ThreadUtil::Object ("Context", event)
180 class Surface : public tcu::ThreadUtil::Object
195 : tcu::ThreadUtil::Object ("Surface", event)
369 class Object : public tcu::ThreadUtil::Object
372 Object (const char* type, SharedPtr<tcu::ThreadUtil::Event> e, SharedPtr<FenceSync> sync);
373 ~Object (void);
383 Object::Object (const char* type, SharedPtr<tcu::ThreadUtil::Event> e, SharedPtr<FenceSync> sync
    [all...]
  /cts/suite/cts/deviceTests/browserbench/assets/octane/
raytrace.js 42 Object.extend = function(destination, source) {
357 Flog.RayTracer.Material.Solid.prototype = Object.extend(
382 Flog.RayTracer.Material.Chessboard.prototype = Object.extend(
608 this.options = Object.extend({

Completed in 2278 milliseconds

1 2 34 5 6