/cts/tests/tests/util/src/android/util/cts/ |
XmlTest.java | 414 AttributeSet set = Xml.asAttributeSet(xp); local 415 assertEquals(2, set.getAttributeCount()); 416 assertEquals(STR_LAYOUT_WIDTH, set.getAttributeName(0)); 418 assertEquals(STR_N1, set.getAttributeValue(0)); 419 assertEquals(STR_LAYOUT_HEIGHT, set.getAttributeName(1)); 420 assertEquals(STR_N2, set.getAttributeValue(1));
|
/cts/tests/tests/view/src/android/view/cts/ |
SurfaceViewTest.java | 90 region.set(left, top, right, bottom);
|
/dalvik/dexgen/src/com/android/dexgen/dex/code/ |
OutputFinisher.java | 138 * Returns the set of all constants referred to by instructions added 141 * @return {@code non-null;} the set of constants 157 * @param result {@code non-null;} result set to add to 181 * @param result {@code non-null;} result set to add to 276 * No need to call this.set(), since the format and other info 279 insns.set(index, targetInsn.withNewTargetAndReversed(newTarget)); 411 * No need to call this.set() since the format and 414 insns.set(i, insn.withRegisterOffset(reservedDifference)); 550 insns.set(i, insn.withOpcode(dop)); 693 insns.set(i, insn) [all...] |
/dalvik/dx/src/com/android/dx/dex/code/ |
OutputFinisher.java | 147 * Returns the set of all constants referred to by instructions added 150 * @return {@code non-null;} the set of constants 166 * @param result {@code non-null;} result set to add to 190 * @param result {@code non-null;} result set to add to 286 * No need to call this.set(), since the format and other info 289 insns.set(index, targetInsn.withNewTargetAndReversed(newTarget)); 422 * No need to call this.set() since the format and 425 insns.set(i, insn.withRegisterOffset(reservedDifference)); 577 insns.set(i, insn.withOpcode(currentOpcode)); 734 insns.set(i, insn.withOpcode(opcode)) [all...] |
/dalvik/dx/src/com/android/dx/dex/file/ |
DebugInfoDecoder.java | 515 decodedLocals.set(i, e2);
|
/dalvik/dx/src/com/android/dx/ssa/back/ |
SsaToRop.java | 259 result.set(ropBlockIndex++, convertBasicBlock(b)); 341 result.set(i, ssaInsns.get(i).toRopInsn());
|
/development/samples/Home/src/com/example/android/home/ |
ApplicationsStackLayout.java | 53 * The following attributes can be set in XML: 139 mDrawRect.set(0, 0, right, mFavoritesStart); 141 mDrawRect.set(0, 0, mFavoritesStart, bottom); 149 mDrawRect.set(0, mFavoritesStart, right, mFavoritesEnd); 151 mDrawRect.set(mFavoritesStart, 0, mFavoritesEnd, bottom);
|
/development/samples/XmlAdapters/src/com/example/android/xmladapters/ |
XmlDocumentProvider.java | 163 * @param projection A set of patterns that will be used to extract data from each selected 385 // When a node matching selectionPattern is found, currentNodeDepth is set to 0 and 439 mActiveTextDepthMask[i].set(currentNodeDepth, true); method 456 mActiveTextDepthMask[i].set(currentNodeDepth, false); method
|
/external/antlr/antlr-3.4/runtime/Java/src/main/java/org/antlr/runtime/ |
TokenRewriteStream.java | 472 rewrites.set(iop.instructionIndex, null); 477 rewrites.set(iop.instructionIndex, null); 486 rewrites.set(prevRop.instructionIndex, null); 498 rewrites.set(prevRop.instructionIndex, null); // kill first delete 525 rewrites.set(prevIop.instructionIndex, null); 534 rewrites.set(i, null); // delete current insert
|
/external/antlr/antlr-3.4/runtime/Java/src/main/java/org/antlr/runtime/tree/ |
BaseTree.java | 113 // no children for this but t has children; just set pointer 144 throw new IllegalArgumentException("Can't set single child to a list"); 149 children.set(i, t); 155 i+1..n-1 to the right one position. Set parent / indexes properly 162 // set index, parent of this one too 179 * children to set their childindex; could be slow. 210 children.set(i, child); 217 // set children and then delete extra 219 children.set(startChildIndex+j, newChildren.get(j)); 231 children.set(startChildIndex+j, newChildren.get(j)) [all...] |
/external/apache-harmony/luni/src/test/api/common/org/apache/harmony/luni/tests/java/util/ |
AbstractMapTest.java | 32 import java.util.Set; 46 final Set mySet = new HashSet(1); 68 public Set entrySet() { 147 // Special entrySet return a Set with no clear method. 159 public Set entrySet() { 160 Set set = new MySet(); local 161 return set; 258 public Set entrySet() { 295 public Set entrySet() [all...] |
DateTest.java | 322 cal.set(1969, Calendar.JANUARY, 12, 1, 0); 327 cal.set(1200, 2, 2, 6, 45, 13); 332 cal.set(1999, Calendar.NOVEMBER, 22, 12, 52, 06); 358 assertEquals("Set incorrect date", 23, d.getDate()); 369 assertEquals("Set incorrect hours", 23, d.getHours()); 380 assertEquals("Set incorrect mins", 45, d.getMinutes()); 391 assertEquals("Set incorrect month", 0, d.getMonth()); 402 assertEquals("Set incorrect seconds", 13, d.getSeconds()); 426 assertEquals("Set incorrect year", 8, d.getYear()); 447 cal.set(Calendar.DATE, 1) [all...] |
TreeMapTest.java | 43 import java.util.Set; 190 Set keys = map.keySet(); 204 Set key2 = map2.keySet(); 252 // Test for method java.util.Set java.util.TreeMap.entrySet() 253 Set anEntrySet = tm.entrySet(); 321 Set<Integer> keySet = smap.keySet(); 324 Set<Map.Entry<Integer, Double>> entrySet = smap.entrySet(); 416 // Test for method java.util.Set java.util.TreeMap.keySet() 417 Set ks = tm.keySet(); 418 assertTrue("Returned set of incorrect size" 1292 NavigableSet set = tm.navigableKeySet(); local 1959 Set set = tm.keySet(); local [all...] |
/external/apache-harmony/sql/src/test/java/org/apache/harmony/sql/tests/java/sql/ |
DateTest.java | 102 aCal.set(year, month, date, hour, minute, second); 245 // Set the timezone
|
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/jcajce/provider/asymmetric/x509/ |
X509CRLObject.java | 23 import java.util.Set; 114 Set extns = getCriticalExtensionOIDs(); 127 private Set getExtensionOIDs(boolean critical) 135 Set set = new HashSet(); local 145 set.add(oid.getId()); 149 return set; 156 public Set getCriticalExtensionOIDs() 161 public Set getNonCriticalExtensionOIDs() 276 private Set loadCRLEntries( 498 Set set = getRevokedCertificates(); local [all...] |
/external/chromium/googleurl/src/ |
url_canon.h | 74 inline void set(int offset, int ch) { function in class:url_canon::CanonOutputT 206 // Character set converter ---------------------------------------------------- 209 // implementation of this class to interface with their own character set 226 // character set, the converter should append the HTML entity sequence in 267 // the length of the output will be set to the length of the new host name. 470 // our best for crazy input here since web pages can set it themselves. 473 // character set converter object provides. The converter will only be called 628 // modified, call either Set* or Clear* to modify it. 630 // The string passed to Set* functions DOES NOT GET COPIED AND MUST BE KEPT [all...] |
/external/chromium/sdch/open-vcdiff/src/gtest/internal/ |
gtest-port.h | 413 // A copy of all command line arguments. Set by InitGoogleTest(). 454 void set(const T& value) { value_ = value; } function in class:testing::internal::ThreadLocal
|
/external/chromium_org/base/android/java/src/org/chromium/base/ |
CommandLine.java | 39 * @return switch value, or null if the switch is not set or set to empty. 47 * @param defaultValue The default value to return if the switch isn't set. 48 * @return Switch value, or {@code defaultValue} if the switch is not set or set to empty. 187 sCommandLine.set(new NativeCommandLine());
|
/external/chromium_org/chrome/browser/ |
io_thread.h | 85 void set(T value) { function in class:IOThread::Globals::Optional
|
/external/chromium_org/chrome/common/extensions/docs/server2/ |
appengine_wrappers.py | 166 memcache.set(k, v, namespace=namespace, time=time) 172 def set(self, key, value, namespace='', time=0): member in class:IsDeadlineExceededError.InMemoryMemcache
|
/external/chromium_org/chrome/common/extensions/permissions/ |
permission_set_unittest.cc | 87 std::set<std::string> names; 210 // The explicit host paths should get set to /*. 263 // Union with an empty set. 293 // Now use a real second set. 383 // Intersection with an empty set. 421 // Now use a real second set. 502 // Difference with an empty set. 528 // Now use a real second set. 804 std::set<PermissionMessage::ID> ids; 905 PermissionSet* set = local 949 const PermissionSet* set = extension->GetActivePermissions().get(); local [all...] |
/external/chromium_org/content/public/android/java/src/org/chromium/content/browser/input/ |
InputDialogContainer.java | 89 cal.set(Calendar.MILLISECOND, 0); 374 cal.set(Calendar.YEAR, year); 375 cal.set(Calendar.MONTH, month); 376 cal.set(Calendar.DAY_OF_MONTH, monthDay); 377 cal.set(Calendar.HOUR_OF_DAY, hourOfDay); 378 cal.set(Calendar.MINUTE, minute); 379 cal.set(Calendar.SECOND, second); 380 cal.set(Calendar.MILLISECOND, millis);
|
/external/chromium_org/remoting/webapp/ |
server_log_entry.js | 172 remoting.ServerLogEntry.prototype.set = function(key, value) { 214 entry.set(remoting.ServerLogEntry.KEY_ROLE_, 216 entry.set(remoting.ServerLogEntry.KEY_EVENT_NAME_, 218 entry.set(remoting.ServerLogEntry.KEY_SESSION_STATE_, 221 entry.set(remoting.ServerLogEntry.KEY_CONNECTION_ERROR_, 235 this.set(remoting.ServerLogEntry.KEY_SESSION_DURATION_, 240 * Makes a log entry for a set of connection statistics. 249 entry.set(remoting.ServerLogEntry.KEY_ROLE_, 251 entry.set(remoting.ServerLogEntry.KEY_EVENT_NAME_, 291 this.set(entryKey, val.toFixed(2)) [all...] |
/external/chromium_org/third_party/WebKit/Source/bindings/v8/ |
V8NPObject.cpp | 181 void set(PrivateIdentifier* key, v8::Handle<v8::FunctionTemplate> handle) function in class:WebCore::V8NPTemplateMap 186 m_map.set(key, UnsafePersistent<v8::FunctionTemplate>(wrapper)); 262 V8NPTemplateMap::sharedInstance(isolate).set(id, temp); 374 properties->Set(v8::Integer::New(i, info.GetIsolate()), v8AtomicString(info.GetIsolate(), identifier->string())); 376 properties->Set(v8::Integer::New(i, info.GetIsolate()), v8::Integer::New(identifier->number(), info.GetIsolate())); 442 npObjectDesc.Set(isolate, templ); 461 staticNPObjectMap().set(object, value, configuration);
|
/external/chromium_org/third_party/WebKit/Source/core/css/resolver/ |
FontBuilder.cpp | 49 void set(const FontDescription& fontDescription) { m_fontDescription = fontDescription; } function in class:WebCore::FontDescriptionChangeScope 105 scope.set(fontDescription); 133 scope.set(fontDescription); 234 // If currFamily is non-zero then we set at least one family on this description. 488 scope.set(scope.fontDescription().makeNormalFeatureSettings());
|