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

1 2 3 45 6

  /external/chromium_org/sandbox/win/tools/finder/
ntundoc.h 169 PVOID Object;
  /external/chromium_org/third_party/WebKit/PerformanceTests/SunSpider/tests/v8-v4/
v8-raytrace.js 37 Object.extend = function(destination, source) {
358 Flog.RayTracer.Material.Solid.prototype = Object.extend(
383 Flog.RayTracer.Material.Chessboard.prototype = Object.extend(
634 this.options = Object.extend({
  /external/chromium_org/third_party/WebKit/PerformanceTests/SunSpider/tests/v8-v5/
v8-raytrace.js 37 Object.extend = function(destination, source) {
358 Flog.RayTracer.Material.Solid.prototype = Object.extend(
383 Flog.RayTracer.Material.Chessboard.prototype = Object.extend(
634 this.options = Object.extend({
  /external/chromium_org/third_party/WebKit/PerformanceTests/SunSpider/tests/v8-v6/
v8-raytrace.js 37 Object.extend = function(destination, source) {
352 Flog.RayTracer.Material.Solid.prototype = Object.extend(
377 Flog.RayTracer.Material.Chessboard.prototype = Object.extend(
603 this.options = Object.extend({
  /external/chromium_org/third_party/WebKit/Source/core/inspector/
CodeGeneratorInspector.py 128 class RawTypes(object):
137 elif json_type == "object":
138 return RawTypes.Object
148 class BaseType(object):
261 class Object(BaseType):
264 return "Object"
288 return TypeModel.Object
420 class RefPtrBased(object):
444 class Enum(object):
477 class ValueType(object)
    [all...]
  /external/chromium_org/v8/benchmarks/
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({
  /external/chromium_org/v8/src/ic/
ic.cc 90 void IC::TraceIC(const char* type, Handle<Object> name) {
99 void IC::TraceIC(const char* type, Handle<Object> name, State old_state,
111 Object* maybe_function =
176 ConstantPoolArray::cast(reinterpret_cast<Object*>(constant_pool)),
251 bool IC::TryRemoveInvalidPrototypeDependentStub(Handle<Object> receiver,
303 bool IC::IsNameCompatibleWithPrototypeFailure(Handle<Object> name) {
315 void IC::UpdateState(Handle<Object> receiver, Handle<Object> name) {
330 // The builtins object is special. It only changes when JavaScript
332 // caches for the builtins object monomorphic. Therefore, if we ge
606 Runtime::GetElementOrCharAt(isolate(), object, index), Object); local
1176 isolate(), result, Runtime::GetObjectProperty(isolate(), object, key), local
1215 Runtime::GetObjectProperty(isolate(), object, key), local
1791 isolate(), result, Runtime::SetObjectProperty(isolate(), object, key, local
1870 Runtime::SetObjectProperty(isolate(), object, key, value, local
2118 Handle<JSObject> object = args.at<JSObject>(0); local
2168 Handle<Object> object = args.at<Object>(0); local
2184 Handle<Object> object = args.at<Object>(0); local
2204 Handle<Object> object = args.at<Object>(3); local
2441 Handle<Object> object = args.at<Object>(0); local
2508 Handle<Object> object = args.at<Object>(0); local
    [all...]
  /prebuilts/sdk/tools/lib/
shrinkedAndroid.jar 
  /external/chromium_org/sandbox/win/src/
nt_internals.h 552 PVOID Object;
  /external/chromium_org/third_party/WebKit/Source/devtools/front_end/
externs.js 34 * @param {!Object} object
37 Object.observe = function(object, callback) {}
68 * @return {!Object.<string, boolean>}
85 * @param {!T} object
91 Array.prototype.lowerBound = function(object, comparator) {}
93 * @param {!T} object
99 Array.prototype.upperBound = function(object, comparator) {}
148 * @this {Array.<!Object.<string,T>>
    [all...]
  /external/chromium_org/v8/src/
factory.cc 47 Handle<Box> Factory::NewBox(Handle<Object> value) {
56 Handle<Object> to_number,
219 // Copy the characters into the new object.
396 Object* value = single_character_string_cache()->get(code);
739 Handle<Object> thrown_object) {
839 // Create and initialize script object.
909 Handle<Cell> Factory::NewCell(Handle<Object> value) {
926 Handle<PropertyCell> Factory::NewPropertyCell(Handle<Object> value) {
956 Handle<JSObject> Factory::CopyJSObject(Handle<JSObject> object) {
958 isolate()->heap()->CopyJSObject(*object, NULL)
1117 Handle<JSArray> object = NewJSArrayWithElements(array); local
    [all...]
objects.h 35 // Most object types in the V8 JavaScript are described in this file.
38 // - Object
144 // Formats of Object*:
257 // object using __proto__ or Object.setPrototypeOf.
292 // marking can visit an object twice during a marking phase, so algorithms that
294 // perform an operation on an object once per marking phase: they record the
295 // MarkingParity when they visit an object, and only re-visit the object when it
303 // ICs store extra state in a Code object. The default extra state i
    [all...]
  /libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/util/prefs/
AbstractPreferencesTest.java 147 assertSame(p.getLock().getClass(), Object.class);
    [all...]
  /external/chromium_org/third_party/WebKit/PerformanceTests/SunSpider/tests/parse-only/
mootools-1.2.2-core-nc.js 3 MooTools - My Object Oriented JavaScript Tools.
33 var object = initialize || legacy;
36 object.constructor = Native;
37 object.$family = {name: 'native'};
38 if (legacy && initialize) object.prototype = legacy.prototype;
39 object.prototype.constructor = object;
43 object.prototype.$family = {name: family};
44 Native.typize(object, family);
54 object.alias = function(a1, a2, a3)
42 object.prototype.$family = {name: family}; class
    [all...]
  /external/clang/lib/CodeGen/
CGExpr.cpp 203 // the object on program termination.
324 llvm::Value *Object = createReferenceTemporary(*this, M, E);
325 LValue RefTempDst = MakeAddrLValue(Object, M->getType());
327 if (auto *Var = dyn_cast<llvm::GlobalVariable>(Object)) {
336 pushTemporaryCleanup(*this, M, E, Object);
355 llvm::Value *Object = createReferenceTemporary(*this, M, E);
356 if (auto *Var = dyn_cast<llvm::GlobalVariable>(Object)) {
361 EmitAnyExprToMem(E, Object, Qualifiers(), /*IsInit*/true);
364 EmitAnyExprToMem(E, Object, Qualifiers(), /*IsInit*/true);
366 pushTemporaryCleanup(*this, M, E, Object);
    [all...]
  /external/chromium_org/v8/include/
v8.h 83 class Object;
132 class Object;
174 * An object reference managed by the v8 garbage collector.
179 * point directly to an object. Instead, all objects are stored in
181 * whenever an object moves. Handles should always be passed by value
192 * It is safe to extract the object stored in the handle by
193 * dereferencing the handle (for instance, to extract the Object* from
194 * a Handle<Object>); the value will still be governed by a handle
246 internal::Object** a = reinterpret_cast<internal::Object**>(this->val_)
726 UniquePersistent* object; member in struct:v8::UniquePersistent::RValue
    [all...]
  /external/clang/lib/Sema/
SemaChecking.cpp     [all...]
TreeTransform.h 95 /// \brief Private RAII object that helps us forget and then re-remember
135 /// \brief Retrieves a reference to the semantic analysis object used for
172 /// \brief RAII object that temporarily sets the base location and entity
460 /// access expression, this is the type of the object whose member template
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/
ks.h     [all...]
  /external/chromium_org/chrome/third_party/chromevox/
chromeVoxChromeBackgroundScript.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...]
chromeVoxChromeOptionsScript.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...]
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/ddk/
wdm.h 696 #define ASSERT_APC(Object) NT_ASSERT((Object)->Type == ApcObject)
698 #define ASSERT_DPC(Object) \
699 ASSERT(((Object)->Type == 0) || \
700 ((Object)->Type == DpcObject) || \
701 ((Object)->Type == ThreadedDpcObject))
703 #define ASSERT_GATE(object) \
704 NT_ASSERT((((object)->Header.Type & KOBJECT_TYPE_MASK) == GateObject) || \
705 (((object)->Header.Type & KOBJECT_TYPE_MASK) == EventSynchronizationObject))
707 #define ASSERT_DEVICE_QUEUE(Object) \
    [all...]
  /external/chromium_org/third_party/libaddressinput/src/java/
android.jar 
  /prebuilts/sdk/10/
android.jar 
  /prebuilts/sdk/11/
android.jar 

Completed in 1710 milliseconds

1 2 3 45 6