HomeSort by relevance Sort by last modified time
    Searched full:data (Results 601 - 625 of 74043) sorted by null

<<21222324252627282930>>

  /external/bison/runtime-po/
es.po 43 #: data/glr.c:855 data/yacc.c:776
47 #: data/glr.c:1729
51 #: data/glr.c:2014 data/glr.c:2094 data/glr.c:2134 data/glr.c:2399
52 #: data/lalr1.cc:947 data/lalr1.cc:967 data/yacc.c:1351 data/yacc.c:185
    [all...]
nb.po 35 #: data/glr.c:855 data/yacc.c:776
39 #: data/glr.c:1729
43 #: data/glr.c:2014 data/glr.c:2094 data/glr.c:2134 data/glr.c:2399
44 #: data/lalr1.cc:947 data/lalr1.cc:967 data/yacc.c:1351 data/yacc.c:185
    [all...]
vi.po 24 #: data/glr.c:855 data/yacc.c:776
28 #: data/glr.c:1729
32 #: data/glr.c:2014 data/glr.c:2094 data/glr.c:2134 data/glr.c:2399
33 #: data/lalr1.cc:947 data/lalr1.cc:967 data/yacc.c:1351 data/yacc.c:185
    [all...]
  /external/chromium/chrome/browser/sync/glue/
extension_data.cc 13 Source source, const sync_pb::ExtensionSpecifics& data) {
14 DcheckIsExtensionSpecificsValid(data);
16 extension_data.merged_data_ = extension_data.source_data_[source] = data;
17 DCHECK(AreExtensionSpecificsEqual(extension_data.merged_data(), data));
38 const sync_pb::ExtensionSpecifics& data) {
39 DcheckIsExtensionSpecificsValid(data);
40 source_data_[source] = data;
41 MergeExtensionSpecifics(data, merge_user_properties, &merged_data_);
  /external/chromium_org/chrome/browser/resources/sync_internals/
data.js 7 var dataDump = $('data-dump');
11 var data = '';
12 data += '======\n';
13 data += 'Status\n';
14 data += '======\n';
15 data += JSON.stringify(chrome.sync.aboutInfo, null, 2);
16 data += '\n';
17 data += '\n';
19 data += '=============\n';
20 data += 'Notifications\n'
    [all...]
traffic.html 1 <p><strong>Some personal info may be in the data dump. Be
2 careful about posting data dumps on bug reports.</strong></p>
  /external/chromium_org/chrome/browser/ui/views/extensions/
browser_action_drag_data_unittest.cc 15 ui::OSExchangeData::Provider* CloneProvider(const ui::OSExchangeData& data) {
17 ui::OSExchangeDataProviderWin::GetIDataObject(data));
28 ui::OSExchangeData data; local
29 data.SetURL(GURL("http://www.google.com"), L"Title");
33 EXPECT_FALSE(drag_data.Read(ui::OSExchangeData(CloneProvider(data))));
47 ui::OSExchangeData data; local
48 data.SetPickledData(BrowserActionDragData::GetBrowserActionCustomFormat(),
52 EXPECT_TRUE(drag_data.Read(ui::OSExchangeData(CloneProvider(data))));
  /external/chromium_org/chrome/common/mac/
nscoder_util_unittest.mm 28 NSMutableData *data = [NSMutableData data];
31 [[NSKeyedArchiver alloc] initForWritingWithMutableData:data]);
36 [[NSKeyedUnarchiver alloc] initForReadingWithData:data]);
44 NSMutableData *data = [NSMutableData data];
47 [[NSKeyedArchiver alloc] initForWritingWithMutableData:data]);
51 [[NSKeyedUnarchiver alloc] initForReadingWithData:data]);
  /external/chromium_org/content/test/data/frame_tree/
2-1.html 7 if (event.data === 'msg4') {
8 window.top.document.title = event.data;
  /external/chromium_org/native_client_sdk/src/libraries/error_handling/
string_stream.c 11 stream->data = NULL;
16 free(stream->data);
17 stream->data = 0;
30 if (stream->data) {
31 memcpy(outstr, stream->data, stream->length);
32 free(stream->data);
35 stream->data = outstr;
36 vsprintf(&stream->data[stream->length], format, hold);
  /external/chromium_org/third_party/WebKit/ManualTests/
print-after-window-close.html 3 var w = window.open("data:text/html,Loading a data URL is asynchronous, so this text shouldn't appear. But it's most important to check that there is no crash after dismissing the print sheet.");
  /external/chromium_org/third_party/WebKit/Source/web/tests/data/pageserializer/
page_with_morphing_data.html 4 resources for data URLs for which the content morphed.
7 <iframe src="data:text/html;base64,PGh0bWw+PGJvZHk+PHNjcmlwdD5kb2N1bWVudC53cml0ZShNYXRoLnJhbmRvbSgpKTs8L3NjcmlwdD48L2JvZHk+PC9odG1sPgo="></iframe>
  /external/chromium_org/third_party/WebKit/Tools/TestResultServer/model/
datastorefile.py 24 # DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
48 """Datastore entry that stores one segmant of file data
52 data = db.BlobProperty() variable in class:DataEntry
75 # keys to the data store entries that can be reused for new data.
80 data = None variable in class:DataStoreFile
111 def save_data(self, data):
112 if not data:
113 logging.warning("No data to save.")
116 if len(data) > (MAX_DATA_ENTRY_PER_FILE * MAX_ENTRY_LEN)
    [all...]
  /external/chromium_org/third_party/handlebar/
README.chromium 1 Name: Handlebar, cross-platform data binding templates.
12 A data binding template language for Python inspired by ctemplate.
  /external/chromium_org/third_party/skia/src/core/
SkBuffer.h 17 Light weight class for reading data from a memory block.
20 to attempt to read a value from an empty RBuffer (data == null).
25 /** Initialize RBuffer with a data pointer, but no specified length.
28 SkRBuffer(const void* data) {
29 fData = (const char*)data;
30 fPos = (const char*)data;
33 /** Initialize RBuffer with a data point and length.
35 SkRBuffer(const void* data, size_t size) {
36 SkASSERT(data != 0 || size == 0);
37 fData = (const char*)data;
    [all...]
SkRefDict.h 25 * Return the data associated with name[], or NULL if no matching entry
31 * If data is NULL, remove (if present) the entry matching name and call
32 * prev_data->unref() on the data for the matching entry.
33 * If data is not-NULL, replace the existing entry matching name and
35 * data->ref() is called.
37 void set(const char name[], SkRefCnt* data);
40 * Remove the matching entry (if found) and unref its data.
45 * Remove all entries, and unref() their associated data.
  /external/chromium_org/tools/perf/page_sets/
mobile_memory.json 3 "archive_data_file": "../data/mobile_memory.json",
4 "credentials_path": "../data/credentials.json",
  /external/chromium_org/ui/base/clipboard/
custom_data_helper.h 6 // type of custom data to a native data transfer type. Instead, we serialize
8 // write the binary data in the pickle to the native data transfer object.
37 UI_EXPORT void ReadCustomDataTypes(const void* data,
40 UI_EXPORT void ReadCustomDataForType(const void* data,
44 UI_EXPORT void ReadCustomDataIntoMap(const void* data,
48 UI_EXPORT void WriteCustomDataToPickle(const std::map<string16, string16>& data,
  /external/clang/test/SemaObjCXX/
vla.mm 4 @interface Data
9 void test(Data *d) {
  /external/jsilver/src/com/google/clearsilver/jsilver/examples/basic/
HelloWorld.java 20 import com.google.clearsilver.jsilver.data.Data;
35 // Set up some data.
36 Data data = jSilver.createData(); local
37 data.setValue("name.first", "Mr");
38 data.setValue("name.last", "Man");
41 jSilver.render("hello-world.cs", data, System.out);
  /external/kernel-headers/original/asm-x86/
cache.h 8 #define __read_mostly __attribute__((__section__(".data.read_mostly")))
16 __attribute__((__section__(".data.page_aligned")))
  /external/linux-tools-perf/
common-cmds.h 9 {"annotate", "Read perf.data (created by perf record) and display annotated code"},
10 {"archive", "Create archive with object files with build-ids found in perf.data file"},
13 {"buildid-list", "List the buildids in a perf.data file"},
14 {"diff", "Read two perf.data files and display the differential profile"},
15 {"evlist", "List the event names in a perf.data file"},
22 {"record", "Run a command and record its profile into perf.data"},
23 {"report", "Read perf.data (created by perf record) and display the profile"},
25 {"script", "Read perf.data (created by perf record) and display trace output"},
  /external/llvm/test/Object/Inputs/
archive-test.a-coff-i386 6 L?@?L?.text$d? P`.data ?@??? ?D$?$???D$?? ?Hello World!.text$.data _mainL_.str_puts (…)
  /external/lzma/C/
Delta.h 16 void Delta_Encode(Byte *state, unsigned delta, Byte *data, SizeT size);
17 void Delta_Decode(Byte *state, unsigned delta, Byte *data, SizeT size);
  /external/lzma/CPP/7zip/Archive/Common/
DummyOutStream.cpp 7 STDMETHODIMP CDummyOutStream::Write(const void *data, UInt32 size, UInt32 *processedSize)
17 result = _stream->Write(data, size, &realProcessedSize);

Completed in 1519 milliseconds

<<21222324252627282930>>