HomeSort by relevance Sort by last modified time
    Searched full:data (Results 426 - 450 of 89596) sorted by null

<<11121314151617181920>>

  /external/chromium_org/v8/src/mips64/
interface-descriptors-mips64.cc 54 void FastNewClosureDescriptor::Initialize(CallInterfaceDescriptorData* data) {
56 data->Initialize(arraysize(registers), registers, NULL);
60 void FastNewContextDescriptor::Initialize(CallInterfaceDescriptorData* data) {
62 data->Initialize(arraysize(registers), registers, NULL);
66 void ToNumberDescriptor::Initialize(CallInterfaceDescriptorData* data) {
68 data->Initialize(arraysize(registers), registers, NULL);
72 void NumberToStringDescriptor::Initialize(CallInterfaceDescriptorData* data) {
74 data->Initialize(arraysize(registers), registers, NULL);
79 CallInterfaceDescriptorData* data) {
84 data->Initialize(arraysize(registers), registers, representations)
    [all...]
  /external/chromium_org/v8/src/x64/
interface-descriptors-x64.cc 56 void FastNewClosureDescriptor::Initialize(CallInterfaceDescriptorData* data) {
58 data->Initialize(arraysize(registers), registers, NULL);
62 void FastNewContextDescriptor::Initialize(CallInterfaceDescriptorData* data) {
64 data->Initialize(arraysize(registers), registers, NULL);
68 void ToNumberDescriptor::Initialize(CallInterfaceDescriptorData* data) {
71 data->Initialize(arraysize(registers), registers, NULL);
75 void NumberToStringDescriptor::Initialize(CallInterfaceDescriptorData* data) {
77 data->Initialize(arraysize(registers), registers, NULL);
82 CallInterfaceDescriptorData* data) {
87 data->Initialize(arraysize(registers), registers, representations)
    [all...]
  /external/chromium_org/v8/src/x87/
interface-descriptors-x87.cc 56 void FastNewClosureDescriptor::Initialize(CallInterfaceDescriptorData* data) {
58 data->Initialize(arraysize(registers), registers, NULL);
62 void FastNewContextDescriptor::Initialize(CallInterfaceDescriptorData* data) {
64 data->Initialize(arraysize(registers), registers, NULL);
68 void ToNumberDescriptor::Initialize(CallInterfaceDescriptorData* data) {
71 data->Initialize(arraysize(registers), registers, NULL);
75 void NumberToStringDescriptor::Initialize(CallInterfaceDescriptorData* data) {
77 data->Initialize(arraysize(registers), registers, NULL);
82 CallInterfaceDescriptorData* data) {
87 data->Initialize(arraysize(registers), registers, representations)
    [all...]
  /packages/screensavers/PhotoTable/src/com/android/dreams/phototable/
LocalSource.java 73 String[] projection = {MediaStore.Images.Media.DATA, MediaStore.Images.Media.BUCKET_ID,
80 int dataIndex = cursor.getColumnIndex(MediaStore.Images.Media.DATA);
90 AlbumData data = foundAlbums.get(id); local
92 data = new AlbumData();
93 data.id = id;
94 data.account = mLocalSourceName;
97 data.thumbnailUrl = cursor.getString(dataIndex);
101 data.title = cursor.getString(nameIndex);
103 data.title = mUnknownAlbumName;
106 log(TAG, data.title + " found")
221 ImageData data = unpackImageData(cursor, null); local
    [all...]
  /frameworks/native/libs/gui/
IGraphicBufferConsumer.cpp 219 Parcel data, reply; local
220 data.writeInterfaceToken(IGraphicBufferConsumer::getInterfaceDescriptor());
221 data.writeInt64(presentWhen);
222 status_t result = remote()->transact(ACQUIRE_BUFFER, data, &reply);
234 Parcel data, reply; local
235 data.writeInterfaceToken(IGraphicBufferConsumer::getInterfaceDescriptor());
236 data.writeInt32(slot);
237 status_t result = remote()->transact(DETACH_BUFFER, data, &reply);
246 Parcel data, reply; local
247 data.writeInterfaceToken(IGraphicBufferConsumer::getInterfaceDescriptor())
261 Parcel data, reply; local
274 Parcel data, reply; local
286 Parcel data, reply; local
296 Parcel data, reply; local
311 Parcel data, reply; local
323 Parcel data, reply; local
334 Parcel data, reply; local
344 Parcel data, reply; local
355 Parcel data, reply; local
362 Parcel data, reply; local
373 Parcel data, reply; local
384 Parcel data, reply; local
395 Parcel data, reply; local
409 Parcel data, reply; local
    [all...]
  /external/wpa_supplicant_8/src/eap_peer/
eap_tls_common.c 36 const u8 **data, size_t *data_len)
51 *data = blob->data;
127 struct eap_ssl_data *data,
132 if (sm->workaround && data->eap_type != EAP_TYPE_FAST) {
153 * Use blob data, if available. Otherwise, leave reference to external
175 struct eap_ssl_data *data,
185 data->conn = tls_connection_init(data->ssl_ctx);
186 if (data->conn == NULL)
    [all...]
  /external/chromium_org/net/server/
http_connection.h 22 // id, underlying socket, and pending read/write data.
25 // IOBuffer for data read. It's a wrapper around GrowableIOBuffer, with more
26 // functions for buffer management. It moves unconsumed data to the start of
43 // Start of read data.
45 // Returns the bytes of read data.
47 // More read data was appended.
49 // Capacity for which more read data can be appended.
52 // Removes consumed data and moves unconsumed data to the start of buffer.
70 // IOBuffer of pending data to write which has a queue of pending data. Eac
    [all...]
  /external/wpa_supplicant_8/src/eap_server/
eap_server_identity.c 23 struct eap_identity_data *data; local
25 data = os_zalloc(sizeof(*data));
26 if (data == NULL)
28 data->state = CONTINUE;
30 return data;
36 struct eap_identity_data *data; local
37 data = eap_identity_init(sm);
38 if (data) {
39 data->pick_up = 1
47 struct eap_identity_data *data = priv; local
55 struct eap_identity_data *data = priv; local
102 struct eap_identity_data *data = priv; local
145 struct eap_identity_data *data = priv; local
152 struct eap_identity_data *data = priv; local
    [all...]
eap_server_md5.c 27 struct eap_md5_data *data; local
29 data = os_zalloc(sizeof(*data));
30 if (data == NULL)
32 data->state = CONTINUE;
34 return data;
40 struct eap_md5_data *data = priv; local
41 os_free(data);
47 struct eap_md5_data *data = priv; local
50 if (random_get_bytes(data->challenge, CHALLENGE_LEN))
101 struct eap_md5_data *data = priv; local
141 struct eap_md5_data *data = priv; local
148 struct eap_md5_data *data = priv; local
    [all...]
  /frameworks/av/camera/
IProCameraCallbacks.cpp 53 Parcel data, reply; local
54 data.writeInterfaceToken(IProCameraCallbacks::getInterfaceDescriptor());
55 data.writeInt32(msgType);
56 data.writeInt32(ext1);
57 data.writeInt32(ext2);
58 remote()->transact(NOTIFY_CALLBACK, data, &reply, IBinder::FLAG_ONEWAY);
63 Parcel data, reply; local
64 data.writeInterfaceToken(IProCameraCallbacks::getInterfaceDescriptor());
65 data.writeInt32(newLockStatus);
66 remote()->transact(LOCK_STATUS_CHANGED, data, &reply
72 Parcel data, reply; local
    [all...]
  /external/chromium_org/ui/base/resource/
data_pack_unittest.cc 37 // Load the file through the data pack API.
41 base::StringPiece data; local
43 ASSERT_TRUE(pack.GetStringPiece(4, &data));
44 EXPECT_EQ("this is id 4", data);
46 ASSERT_TRUE(pack.GetStringPiece(6, &data));
47 EXPECT_EQ("this is id 6", data);
49 // Try reading zero-length data blobs, just in case.
50 ASSERT_TRUE(pack.GetStringPiece(1, &data));
51 EXPECT_EQ(0U, data.length());
52 ASSERT_TRUE(pack.GetStringPiece(10, &data));
76 base::StringPiece data; local
116 base::StringPiece data; local
175 base::StringPiece data; local
205 base::StringPiece data; local
    [all...]
  /external/chromium_org/sdch/open-vcdiff/src/
vcdecoder1_test.cc 26 decoder_.StartDecoding(dictionary_.data(), dictionary_.size());
27 EXPECT_TRUE(decoder_.DecodeChunk(delta_file_header_.data(),
35 decoder_.StartDecoding(dictionary_.data(), dictionary_.size());
36 EXPECT_TRUE(decoder_.DecodeChunk(delta_file_.data(),
50 decoder_.StartDecoding(dictionary_.data(), dictionary_.size());
51 EXPECT_FALSE(decoder_.DecodeChunk(delta_file_.data(),
60 decoder_.StartDecoding(dictionary_.data(), dictionary_.size());
61 EXPECT_TRUE(decoder_.DecodeChunk(delta_file_.data(),
70 decoder_.StartDecoding(dictionary_.data(), dictionary_.size());
71 EXPECT_TRUE(decoder_.DecodeChunk(delta_file_.data(),
    [all...]
  /external/chromium_org/base/
supports_user_data.h 17 // This is a helper for classes that want to allow users to stash random data by
23 // Derive from this class and add your own data members to associate extra
26 class BASE_EXPORT Data {
28 virtual ~Data() {}
31 // The user data allows the clients to associate data with this object.
32 // Multiple user data values can be stored under different keys.
33 // This object will TAKE OWNERSHIP of the given data pointer, and will
35 Data* GetUserData(const void* key) const;
36 void SetUserData(const void* key, Data* data)
65 UserDataAdapter* data = local
    [all...]
  /external/chromium_org/chrome/common/extensions/docs/examples/apps/calculator/app/
calculator.html 26 <button class="clear" title="clear" data-button="clear"></button>
27 <button class="negate" title="negate" data-button="negate"></button>
28 <button class="divide" title="divide" data-button="divide"></button>
29 <button class="multiply" title="multiply" data-button="multiply">
31 <button class="seven" title="seven" data-button="seven"></button>
32 <button class="eight" title="eight" data-button="eight"></button>
33 <button class="nine" title="nine" data-button="nine"></button>
34 <button class="subtract" title="subtract" data-button="subtract">
36 <button class="four" title="four" data-button="four"></button>
37 <button class="five" title="five" data-button="five"></button
    [all...]
  /external/chromium_org/crypto/
hkdf_unittest.cc 59 std::vector<uint8> data; local
60 ASSERT_TRUE(base::HexStringToBytes(test.key_hex, &data));
61 const std::string key(reinterpret_cast<char*>(&data[0]), data.size());
63 data.clear();
67 ASSERT_TRUE(base::HexStringToBytes(salt, &data));
68 salt.assign(reinterpret_cast<char*>(&data[0]), data.size());
71 data.clear();
75 ASSERT_TRUE(base::HexStringToBytes(info, &data));
    [all...]
  /external/chromium_org/third_party/libaddressinput/src/cpp/include/libaddressinput/
callback.h 18 // void Observer::ObserveEvent(bool success, Key key, Data data);
39 // MyDataType data = ...
40 // (*callback)(success, key, data);
45 // const MyDataType& data) {
49 template <typename Key, typename Data>
53 virtual void operator()(bool success, Key key, Data data) const = 0;
58 template <typename Observer, typename Key, typename Data>
59 class CallbackImpl : public Callback<Key, Data> {
    [all...]
  /external/chromium_org/third_party/libxml/src/include/libxml/
list.h 28 * @lk: the data to deallocate
30 * Callback function used to free data from a list.
35 * @data0: the first data
36 * @data1: the second data
38 * Callback function used to compare 2 data.
45 * @data: the data found in the list
46 * @user: extra user provided data to the walker
52 typedef int (*xmlListWalker) (const void *data, const void *user);
64 void *data);
    [all...]
  /external/chromium_org/third_party/yasm/source/patched-yasm/modules/objfmts/bin/tests/multisect/
ldlinux-sects.asm 12 [section .bcopy32 align=4 valign=16 follows=.data vfollows=.earlybss]
20 [section .data align=16]
34 [section .data]
40 [section .data]
43 [section .data]
48 [section .data]
50 [section .data]
55 [section .data]
62 [section .data]
66 [section .data]
    [all...]
  /external/chromium_org/tools/perf/page_sets/page_cycler/
dhtml.py 21 serving_dirs=set(['../../../../data/page_cycler/dhtml']),
25 'file://../../../../data/page_cycler/dhtml/colorfade/',
26 'file://../../../../data/page_cycler/dhtml/diagball/',
27 'file://../../../../data/page_cycler/dhtml/fadespacing/',
28 'file://../../../../data/page_cycler/dhtml/imageslide/',
29 'file://../../../../data/page_cycler/dhtml/layers1/',
30 'file://../../../../data/page_cycler/dhtml/layers2/',
31 'file://../../../../data/page_cycler/dhtml/layers4/',
32 'file://../../../../data/page_cycler/dhtml/layers5/',
33 'file://../../../../data/page_cycler/dhtml/layers6/'
    [all...]
  /external/compiler-rt/lib/profile/
InstrProfilingPlatformOther.c 1 /*===- InstrProfilingPlatformOther.c - Profile data default platform ------===*\
32 const __llvm_profile_data *Data = (__llvm_profile_data*)Data_;
34 DataFirst = Data;
35 DataLast = Data + 1;
36 NamesFirst = Data->Name;
37 NamesLast = Data->Name + Data->NameSize;
38 CountersFirst = Data->Counters;
39 CountersLast = Data->Counters + Data->NumCounters
    [all...]
  /external/doclava/src/com/google/doclava/
TagInfo.java 19 import com.google.clearsilver.jsilver.data.Data;
54 public void makeHDF(Data data, String base) {
55 data.setValue(base + ".name", name());
60 data.setValue(base + ".text", text());
61 data.setValue(base + ".kind", kind());
64 public static void makeHDF(Data data, String base, TagInfo[] tags) {
65 makeHDF(data, base, tags, null, 0, 0)
    [all...]
  /external/libxml2/include/libxml/
list.h 28 * @lk: the data to deallocate
30 * Callback function used to free data from a list.
35 * @data0: the first data
36 * @data1: the second data
38 * Callback function used to compare 2 data.
45 * @data: the data found in the list
46 * @user: extra user provided data to the walker
52 typedef int (*xmlListWalker) (const void *data, const void *user);
64 void *data);
    [all...]
  /hardware/qcom/display/msm8084/libqservice/
IQHDMIClient.cpp 23 * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR
51 Parcel data, reply; local
52 data.writeInterfaceToken(IQHDMIClient::getInterfaceDescriptor());
53 data.writeInt32(connected);
54 remote()->transact(HDMI_CONNECTED, data, &reply, IBinder::FLAG_ONEWAY);
59 Parcel data, reply; local
60 data.writeInterfaceToken(IQHDMIClient::getInterfaceDescriptor());
61 data.writeInt32(len);
62 void *buf = data.writeInplace(len);
64 remote()->transact(CEC_MESSAGE_RECEIVED, data, &reply
    [all...]
  /prebuilts/tools/common/m2/repository/jfree/jfreechart/1.0.9/
jfreechart-1.0.9-sources.jar 
  /external/chromium_org/device/serial/
data_stream.mojom 9 // Initializes this DataSource with a data pipe handle to use for data
13 // Resumes sending data after it has been stopped due to an error.
19 // into the data stream. No further bytes beyond |error_location| will be
26 // Initializes this DataSink with a data pipe handle to use for data
30 // Requests the cancellation of any data that has been written to the pipe,
36 // Reports that the sink has successfully received |bytes_sent| bytes of data.
39 // Reports that the sink has received |bytes_sent| bytes of data (possibly 0)
41 // |bytes_to_flush|, the number of bytes enqueued in the data pipe but not ye
    [all...]

Completed in 1578 milliseconds

<<11121314151617181920>>