/external/chromium/net/spdy/ |
spdy_framer.cc | 636 const SpdySettings& values) { 641 8 * values.size(); 643 frame.WriteUInt32(values.size()); 644 SpdySettings::const_iterator it = values.begin(); 645 while (it != values.end()) { [all...] |
/external/emma/core/java12/com/vladium/emma/instr/ |
InstrVisitor.java | [all...] |
/external/mesa3d/src/glsl/ |
ir_to_llvm.cpp | 426 std::vector<llvm::Constant*> values; local 427 values.push_back(llvm_imm(((llvm::VectorType*)type)->getElementType(), v)); 429 values.push_back(values[0]); 430 return llvm::ConstantVector::get(values); [all...] |
/external/openssl/crypto/bn/asm/ |
pa-risc2.s | 5 ; slightly different given all values must be 32-bit between 6 ; function calls. Thus the 64-bit return values are returned 48 ; return values ; r28,r29 (ret0,ret1) 918 ; Registers to hold 64-bit values to manipulate. The "L" part 926 ; Floating point registers to use to save values that [all...] |
/external/webkit/Source/WebKit/win/ |
WebPreferences.cpp | 469 OwnArrayPtr<CFTypeRef> values = adoptArrayPtr(new CFTypeRef[count]); local 470 CFDictionaryGetKeysAndValues(dict, keys.get(), values.get()); 473 if (!keys[i] || !values[i] || CFGetTypeID(keys[i]) != CFStringGetTypeID()) 478 if (defaultValue && CFEqual(defaultValue, values[i])) 482 setValueForKey(static_cast<CFStringRef>(keys[i]), values[i]); local [all...] |
/prebuilt/sdk/15/ |
android.jar | |
/external/bluetooth/bluez/tools/ |
sdptool.c | 752 * Set attributes with single values in SDP record 1757 void *dtds[sizeof(formats)], *values[sizeof(formats)]; local 2245 void *values[2]; local 2408 void *values[2]; local [all...] |
/libcore/luni/src/main/java/java/util/ |
Collections.java | 155 @Override public Collection values() { method in class:Collections.EmptyMap 748 @Override public Collection<V> values() { 750 return new SynchronizedCollection<V>(m.values(), mutex); [all...] |
/packages/apps/Browser/src/com/android/browser/ |
Controller.java | 1617 final ContentValues values = source.createSnapshotValues(); local 2040 ContentValues values = new ContentValues(); local [all...] |
/packages/apps/Exchange/src/com/android/exchange/adapter/ |
CalendarSyncAdapter.java | 254 long id = ncv.values.getAsLong(RawContacts._ID); [all...] |
/external/webkit/Source/WebKit/mac/Plugins/ |
WebNetscapePluginView.mm | [all...] |
/prebuilt/sdk/11/ |
android.jar | |
/external/v8/src/ |
mirror-debugger.js | 501 * Mirror object for boolean values. 518 * Mirror object for number values. 535 * Mirror object for string values. 976 var values = new Array(to_index - from_index + 1); 985 values[i - from_index] = value; 987 return values; [all...] |
/prebuilt/sdk/6/ |
android.jar | |
/prebuilt/linux-x86/toolchain/i686-linux-glibc2.7-4.4.3/sysroot/usr/include/GL/ |
gl.h | 169 /* Boolean values */ [all...] |
/prebuilt/sdk/4/ |
android.jar | |
/prebuilt/sdk/9/ |
android.jar | |
/external/chromium/chrome/common/extensions/ |
extension_unittest.cc | 37 namespace values = extension_manifest_values; 61 // We persist location values in the preferences, so this is a sanity test that 533 // Now setup some values to use in the action. 547 // Parse and read back the values from the object. 559 input.SetString(keys::kType, values::kPageActionTypeTab); 591 // Now setup some values to use in the page action. 601 // Parse and read back the values from the object. 1071 DictionaryValue values; local [all...] |
/external/clang/tools/c-index-test/ |
c-index-test.c | 914 unsigned values[4], i; local 931 values[num_values - i - 1] = strtol(last_colon + 1, &endptr, 10); 954 *line = values[0]; 955 *column = values[1]; 958 *second_line = values[2]; 959 *second_column = values[3]; [all...] |
/frameworks/base/core/java/android/content/ |
SyncStorageEngine.java | 497 for (AccountInfo accountInfo : mAccounts.values()) { 499 for (AuthorityInfo authorityInfo : accountInfo.authorities.values()) { 531 for (AccountInfo accountInfo : mAccounts.values()) { 532 for (AuthorityInfo authorityInfo : accountInfo.authorities.values()) { 861 Iterator<AccountInfo> accIt = mAccounts.values().iterator(); 869 for (AuthorityInfo auth : acc.authorities.values()) { [all...] |
/frameworks/base/services/java/com/android/server/ |
LocationManagerService.java | 114 // Locations, status values, and extras for mock providers [all...] |
/libcore/luni/src/main/java/java/util/concurrent/ |
ConcurrentSkipListMap.java | 50 * <em>not</em> permit the use of <tt>null</tt> keys or values because some 51 * null return values cannot be reliably distinguished from the absence of 60 * @param <V> the type of mapped values 111 * using otherwise impossible field values). Using plain nodes 289 * Values: v, value 328 /** Lazily initialized values collection */ 329 private transient Values values; field in class:ConcurrentSkipListMap 341 values = null; 358 * Nodes hold keys and values, and are singly linked in sorte 1734 public Collection<V> values() { method in class:ConcurrentSkipListMap 2920 public Collection<V> values() { method in class:ConcurrentSkipListMap.SubMap [all...] |
/packages/apps/Contacts/src/com/android/contacts/model/ |
BaseAccountType.java | 476 public CharSequence inflateUsing(Context context, ContentValues values) { 477 final boolean validColumn = values.containsKey(mColumnName); 481 final CharSequence columnValue = validColumn ? values.getAsString(mColumnName) : null; 538 public CharSequence inflateUsing(Context context, ContentValues values) { 539 final Integer type = values.getAsInteger(getTypeColumn()); 540 final String label = values.getAsString(getLabelColumn()); [all...] |
/external/chromium/chrome/browser/webdata/ |
web_data_service.cc | 953 std::vector<string16> values; local [all...] |
/external/nist-sip/java/gov/nist/javax/sip/message/ |
SIPMessage.java | 818 * request contain the same values in the Call-ID, CSeq, To, and From fields (with the 1603 Collection<SIPHeader> values = this.nameTable.values(); local [all...] |