HomeSort by relevance Sort by last modified time
    Searched defs:contents (Results 201 - 225 of 687) sorted by null

1 2 3 4 5 6 7 891011>>

  /external/chromium_org/gin/
array_buffer.cc 92 v8::ArrayBuffer::Contents contents = array->Externalize(); local
93 buffer_ = contents.Data();
94 length_ = contents.ByteLength();
  /external/chromium_org/third_party/WebKit/Source/core/dom/
StyleSheetCollection.cpp 121 addedSheets.append(newStylesheets[newIndex]->contents());
130 addedSheets.append(newStylesheets[newIndex]->contents());
169 if (sheets[i]->contents()->hasFontFaceRule())
231 StyleSheetContents* contents = m_activeAuthorStyleSheets[i]->contents(); local
232 if (contents->hasMediaQueries())
233 contents->clearRuleSet();
254 if (sheets[i]->contents()->usesRemUnits())
  /external/chromium_org/third_party/WebKit/Source/platform/image-decoders/
ImageDecoder.cpp 49 inline bool matchesGIFSignature(char* contents)
51 return !memcmp(contents, "GIF87a", 6) || !memcmp(contents, "GIF89a", 6);
54 inline bool matchesPNGSignature(char* contents)
56 return !memcmp(contents, "\x89\x50\x4E\x47\x0D\x0A\x1A\x0A", 8);
59 inline bool matchesJPEGSignature(char* contents)
61 return !memcmp(contents, "\xFF\xD8\xFF", 3);
64 inline bool matchesWebPSignature(char* contents)
66 return !memcmp(contents, "RIFF", 4) && !memcmp(contents + 8, "WEBPVP", 6)
91 char contents[longestSignatureLength]; local
    [all...]
  /external/chromium_org/tools/gyp/test/mac/
gyptest-app.py 49 test.built_file_must_exist('Test App Gyp.app/Contents/MacOS/Test App Gyp',
53 info_plist = test.built_file_path('Test App Gyp.app/Contents/Info.plist',
90 os.path.join('Test App Gyp.app/Contents/Resources/English.lproj', f),
94 contents = open(strings, 'rb').read() variable
95 if not contents.startswith('\xff\xfe' + '/* Localized'.encode('utf-16le')):
99 'Test App Gyp.app/Contents/Resources/English.lproj/MainMenu.nib',
103 test.built_file_must_exist('Test App Gyp.app/Contents/PkgInfo',
105 test.built_file_must_match('Test App Gyp.app/Contents/PkgInfo', 'APPLause',
110 set(['Contents/MacOS/Test App Gyp',
111 'Contents/Info.plist'
    [all...]
  /external/chromium_org/tools/telemetry/build/
update_docs.py 85 def contents(self): member in class:AlreadyDocumentedModule
120 if current_html != already_documented_module.contents:
  /external/chromium_org/ui/views/controls/
scroll_view.h 39 // Set the contents. Any previous contents will be deleted. The contents
42 const View* contents() const { return contents_; } function in class:views::ScrollView
43 View* contents() { return contents_; } function in class:views::ScrollView
92 // visible, in the coordinates of the contents view. The specified rectangle
93 // is constrained by the bounds of the contents view. This has no effect if
94 // the contents have not been set.
111 // The current contents and its viewport. |contents_| is contained in
130 // If true, never show the horizontal scrollbar (even if the contents is wide
    [all...]
  /external/chromium_org/ui/views/examples/
widget_example.cc 34 AddChildView(new Label(ASCIIToUTF16("Dialog contents label!")));
95 // If the Widget has no contents by default, add a view with a 'Close' button.
97 View* contents = new View(); local
98 contents->SetLayoutManager(new BoxLayout(BoxLayout::kHorizontal, 0, 0, 0));
99 contents->set_background(Background::CreateSolidBackground(SK_ColorGRAY));
100 BuildButton(contents, "Close", CLOSE_WIDGET);
101 widget->SetContentsView(contents);
  /external/guava/guava-testlib/src/com/google/common/collect/testing/
MinimalCollection.java 33 public static <E> MinimalCollection<E> of(E... contents) {
34 return new MinimalCollection<E>(Object.class, true, contents);
39 Class<? super E> type, E... contents) {
40 return new MinimalCollection<E>(type, true, contents);
43 private final E[] contents; field in class:MinimalCollection
48 MinimalCollection(Class<? super E> type, boolean allowNulls, E... contents) {
49 // TODO: consider making it shuffle the contents to test iteration order.
50 this.contents = Platform.clone(contents);
55 for (Object element : contents) {
    [all...]
  /external/srec/shared/src/
Int8ArrayListImpl.c 48 impl->contents = MALLOC((INITIAL_SIZE + 1) * sizeof(asr_int8_t), MTAG);
49 if (impl->contents == NULL)
69 impl->contents = value;
82 asr_int8_t* temp = REALLOC(impl->contents, (impl->actualSize * 2 + 1) * sizeof(asr_int8_t));
85 impl->contents = temp;
88 impl->contents[impl->virtualSize] = element;
96 asr_int8_t* contents = impl->contents; /* cache pointer */ local
102 if (contents[i] == element)
110 contents[i] = contents[i+1]
136 asr_int8_t* contents = impl->contents; \/* cache value *\/ local
    [all...]
  /frameworks/base/test-runner/src/junit/runner/
ClassPathTestCollector.java 50 String[] contents= thisRoot.list(); local
51 if (contents != null) {
52 for (int i= 0; i < contents.length; i++)
53 gatherFiles(classRoot, classFileName+File.separatorChar+contents[i], result);
  /packages/apps/Launcher2/src/com/android/launcher2/
FolderInfo.java 36 ArrayList<ShortcutInfo> contents = new ArrayList<ShortcutInfo>(); field in class:FolderInfo
50 contents.add(item);
63 contents.remove(item);
  /packages/apps/Launcher3/src/com/android/launcher3/
FolderInfo.java 36 ArrayList<ShortcutInfo> contents = new ArrayList<ShortcutInfo>(); field in class:FolderInfo
50 contents.add(item);
63 contents.remove(item);
  /sdk/eclipse/plugins/com.android.ide.eclipse.tests/unittests/com/android/ide/eclipse/adt/internal/editors/formatting/
AndroidXmlFormattingStrategyTest.java 40 String contents = document.get(); local
44 for (int i = 0, n = contents.length(); i < n; i++) {
45 char c = contents.charAt(i);
51 + ": " + contents.substring(i - 1, Math.min(contents.length(), i + 10))
61 assertEquals(expected, contents);
  /packages/apps/Settings/src/com/android/settings/
MasterClear.java 149 * to change contents.
198 LinearLayout contents = (LinearLayout)mContentView.findViewById(R.id.accounts); local
199 contents.removeAllViews();
208 contents.setVisibility(View.GONE);
243 contents, false);
248 contents.addView(child);
252 contents.setVisibility(View.VISIBLE);
  /art/runtime/arch/x86/
thread_x86.cc 50 const int contents = MODIFY_LDT_CONTENTS_DATA; local
67 entry.type = ((read_exec_only ^ 1) << 1) | (contents << 2);
103 ldt_entry.contents = contents;
  /cts/tests/tests/jni/libjnitest/
android_jni_cts_InstanceNonce.c 85 static jshort contents[] = { 10, 20, 30 }; local
93 (*env)->SetShortArrayRegion(env, result, 0, 3, contents);
101 static const char *contents[] = { "blort", "zorch", "fizmo" }; local
123 jstring s = (*env)->NewStringUTF(env, contents[i]);
  /development/apps/Development/src/com/android/development/
Details.java 88 TextView contents = makeView(cd.value, false, 12); local
89 contents.setPadding(3, 0, 0, i==count-1?0:3);
91 mLinearLayout.addView(contents, lazy());
  /external/apache-harmony/luni/src/test/api/common/org/apache/harmony/luni/tests/java/util/
PropertyResourceBundleTest.java 187 Vector<String> contents = new Vector<String>(); local
189 contents.add(keys.nextElement());
192 assertEquals("did not get the right number of properties", 4, contents
194 assertTrue("did not get the parent property p1", contents
196 assertTrue("did not get the parent property p2", contents
198 assertTrue("did not get the local property p3", contents.contains("p3"));
199 assertTrue("did not get the local property p4", contents.contains("p4"));
  /external/chromium/chrome/browser/autocomplete/
autocomplete_match.h 22 // the 'contents' and the 'description' (the description is optional) in the
161 string16 contents; member in struct:AutocompleteMatch
  /external/chromium/chrome/browser/
background_page_tracker.cc 57 const DictionaryValue* contents = local
59 return contents ? contents->size() : 0;
66 const DictionaryValue* contents = local
68 if (!contents)
71 for (DictionaryValue::key_iterator it = contents->begin_keys();
72 it != contents->end_keys(); ++it) {
74 bool found = contents->GetWithoutPathExpansion(*it, &value);
90 DictionaryValue* contents = update.Get(); local
92 for (DictionaryValue::key_iterator it = contents->begin_keys()
199 DictionaryValue* contents = update.Get(); local
271 DictionaryValue* contents = update.Get(); local
286 DictionaryValue* contents = update.Get(); local
    [all...]
spellcheck_host_impl.cc 189 std::string contents; local
190 file_util::ReadFileToString(custom_dictionary_file_, &contents);
192 base::SplitString(contents, '\n', &list_of_words);
  /external/chromium/chrome/browser/download/
download_file_manager.cc 37 TabContents* contents = tab_util::GetTabContentsByID(render_process_id, local
39 if (contents) {
40 Profile* profile = contents->profile();
191 std::vector<DownloadBuffer::Contents> contents; local
194 contents.swap(buffer->contents);
198 for (size_t i = 0; i < contents.size(); ++i) {
199 net::IOBuffer* data = contents[i].first;
200 const int data_len = contents[i].second
    [all...]
  /external/chromium/chrome/browser/extensions/
extension_crash_recovery_browsertest.cc 284 TabContentsWrapper* contents = local
286 browser()->tabstrip_model()->AppendTabContents(contents, true);
extension_sidebar_api.cc 179 TabContentsWrapper* contents = NULL; local
182 ExtensionTabUtil::GetDefaultTab(browser, &contents,
user_script_master.cc 247 base::StringPiece contents = script.js_scripts()[j].GetContent(); local
248 pickle.WriteData(contents.data(), contents.length());
251 base::StringPiece contents = script.css_scripts()[j].GetContent(); local
252 pickle.WriteData(contents.data(), contents.length());

Completed in 1072 milliseconds

1 2 3 4 5 6 7 891011>>