/external/v8/test/mjsunit/ |
mirror-boolean.js | 42 // Check the mirror properties.
|
mirror-null.js | 40 // Check the mirror properties.
|
mirror-undefined.js | 40 // Check the mirror properties.
|
object-seal.js | 52 // Test normal data properties. 77 // We should not allow new properties to be added. 166 // has been set to false on all properties manually and the extensible
|
/external/v8/test/mjsunit/regress/ |
regress-1119.js | 28 // Test runtime declaration of properties with var which are intercepted
|
regress-1493017.js | 29 // transitions do not show up as properties in for in.
|
regress-192.js | 35 // the properties using DefineOwnProperty.
|
regress-386.js | 30 // This test creates enough properties in A so that adding i as
|
regress-675.js | 30 // Test that load ICs for nonexistent properties check global
|
regress-681.js | 30 // Test that load ICs for nonexistent properties bail out on smi receiver.
|
/external/v8/src/ |
v8natives.js | 740 // Find all the indexed properties. 745 // Get names for indexed interceptor properties. 753 // Find all the named properties. 758 // Get names for named interceptor properties if any. 774 // properties like toString if(propertySet["toString"]) will always 788 function ObjectCreate(proto, properties) { 794 if (!IS_UNDEFINED(properties)) ObjectDefineProperties(obj, properties); 812 function ObjectDefineProperties(obj, properties) { 815 var props = ToObject(properties); [all...] |
ast.cc | 241 HashMap properties(&IsEqualString); 243 for (int i = this->properties()->length() - 1; i >= 0; i--) { 244 ObjectLiteral::Property* property = this->properties()->at(i); 265 table = &properties; 279 table = &properties;
|
objects-debug.cc | 236 VerifyHeapPointer(properties()); 240 (map()->inobject_properties() + properties()->length() - 348 // Make sure that this object has no properties, elements. 349 CHECK_EQ(0, properties()->length()); 575 // Named properties 586 // Indexed properties 638 PrintF(" - fast properties (#%d): %d (used) %d (unused)\n", 642 PrintF(" - slow properties (#%d): %d (used) %d (unused)\n",
|
prettyprinter.cc | 263 for (int i = 0; i < node->properties()->length(); i++) { 265 ObjectLiteral::Property* property = node->properties()->at(i); 920 for (int i = 0; i < node->properties()->length(); i++) { 922 switch (node->properties()->at(i)->kind()) { 945 PrintIndentedVisit("KEY", node->properties()->at(i)->key()); 946 PrintIndentedVisit("VALUE", node->properties()->at(i)->value()); [all...] |
/external/webkit/Source/WebCore/inspector/ |
InspectorStyleSheet.cpp | 244 // We should not shift subsequent disabled properties when altering a disabled property. 306 *errorString = "Can toggle only source-based properties"; 461 Vector<InspectorStyleProperty> properties; local 462 populateAllProperties(&properties); 469 for (Vector<InspectorStyleProperty>::iterator it = properties.begin(), itEnd = properties.end(); it != itEnd; ++it) { 528 // Both for style-originated and parsed source properties. 610 Vector<String> properties; local 618 properties.append(individualProperty); 620 return properties; [all...] |
InjectedScriptSource.js | 150 var properties = []; 156 // Go over properties, prepare results. 174 properties.push(property); 176 return properties; 275 // the window object properties still take more precedent than our API functions. 367 // If owning frame has navigated to somewhere else window properties will be undefined.
|
InspectorCSSAgent.cpp | 57 // priority : <string>, // "" for non-parsedOk properties 69 // For disabled properties, startOffset === endOffset === insertion point for the property. 75 // "style" == property is active and originates from the WebCore CSSStyleDeclaration rather than CSS source code (e.g. implicit longhand properties) 90 // properties : { 370 RefPtr<InspectorArray> properties = InspectorArray::create(); local 372 properties->pushString(propertyNameStrings[i]); 374 *cssProperties = properties.release();
|
/sdk/ddms/libs/ddmuilib/src/com/android/ddmuilib/logcat/ |
LogCatPanel.java | 664 String[] properties = { local 685 for (int i = 0; i < properties.length; i++) { 687 properties[i], /* Column title */ 690 getColPreferenceKey(properties[i]), /* Preference Store key for this column */ 711 TableColumn textColumn = mViewer.getTable().getColumn(properties.length - 1); [all...] |
/external/webkit/Source/WebKit/android/nav/ |
CacheBuilder.cpp | 375 String properties; local 377 properties.append("ONCLICK | "); 379 properties.append("MOUSEDOWN | "); 381 properties.append("MOUSEUP | "); 383 properties.append("MOUSEOVER | "); 385 properties.append("MOUSEOUT | "); 387 properties.append("KEYDOWN | "); 389 properties.append("KEYUP | "); 391 properties.append("FRAME | "); 393 properties.append("FOCUS | ") [all...] |
/external/emma/core/java12/com/vladium/emma/rt/ |
AppRunner.java | 71 RT.reset (true, false); // reset RT [RT creates 'cdata' and loads app properties] 73 // load tool properties: 88 log.trace1 ("run", "complete tool properties:"); 779 final SourcePathCache cache, final IProperties properties) 785 if (properties == null) throw new IllegalArgumentException ("null input: properties"); 797 m_properties = properties; [all...] |
/external/webkit/Tools/iExploder/iexploder-1.7.2/src/ |
iexploder.rb | 45 # These tags get src properties more often than others 77 @cssTags = readTagsDir("#{data_path}/css-properties") 264 def isPropertyInBlacklist(properties) 268 blacklist_entries << properties.join('.') 269 wildcard_property = properties.dup
|
/frameworks/base/libs/ui/ |
Input.cpp | 610 PointerProperties& properties = mPointerProperties.editTop(); local 611 properties.id = parcel->readInt32(); 612 properties.toolType = parcel->readInt32(); 649 const PointerProperties& properties = mPointerProperties.itemAt(i); local 650 parcel->writeInt32(properties.id); 651 parcel->writeInt32(properties.toolType); [all...] |
/frameworks/base/media/jni/ |
android_mtp_MtpDatabase.cpp | 324 jint* properties = env->GetIntArrayElements(array, 0); local 327 list->push(properties[i]); 328 env->ReleaseIntArrayElements(array, properties, 0); 342 jint* properties = env->GetIntArrayElements(array, 0); local 345 list->push(properties[i]); 346 env->ReleaseIntArrayElements(array, properties, 0); 379 // special case date properties, which are strings to MTP [all...] |
/sdk/ddms/libs/ddmuilib/src/com/android/ddmuilib/heap/ |
NativeHeapPanel.java | 857 List<String> properties = Arrays.asList(new String[] { local 924 List<String> properties = Arrays.asList(new String[] { local [all...] |
/sdk/sdkmanager/app/src/com/android/sdkmanager/ |
Main.java | 936 Map<String, String> properties = info.getProperties(); local [all...] |