/external/markdown/markdown/ |
preprocessors.py | 55 placeholder string that needs to be inserted into the 63 Returns : a placeholder string 67 placeholder = HTML_PLACEHOLDER % self.html_counter 69 return placeholder
|
inlinepatterns.py | 34 replace all inline HTML strings with a placeholder and add 215 """ Store raw inline html and return a placeholder. """
|
/external/chromium_org/chrome/browser/chromeos/net/ |
onc_utils.cc | 160 virtual bool GetSubstitute(const std::string& placeholder, 162 if (placeholder == ::onc::substitutes::kLoginIDField) 164 else if (placeholder == ::onc::substitutes::kEmailField)
|
/external/clang/test/CXX/temp/temp.decls/temp.variadic/ |
example-bind.cpp | 333 template<int N> struct placeholder { }; struct 335 struct is_placeholder<placeholder<N>> { 346 placeholder<1> _1;
|
/external/chromium_org/chrome/browser/ui/webui/options/ |
password_manager_handler.cc | 157 base::string16 placeholder(ASCIIToUTF16(" ")); 166 // Use a placeholder value with the same length as the password.
|
/external/chromium_org/chrome/common/extensions/docs/examples/extensions/plugin_settings/domui/css/ |
chrome_shared.css | 235 /* WebKit does not honor alignment for text specified via placeholder attrib. 239 html[dir='rtl'] input.weakrtl::-webkit-input-placeholder, 240 html[dir='rtl'] .weakrtl input::-webkit-input-placeholder {
|
/external/chromium_org/third_party/WebKit/Source/core/html/ |
HTMLTextFormControlElement.cpp | 150 return toHTMLElement(userAgentShadowRoot()->getElementById(ShadowElementNames::placeholder())); 159 HTMLElement* placeholder = placeholderElement(); local 160 if (!placeholder) 162 placeholder->setInlineStyleProperty(CSSPropertyVisibility, placeholderShouldBeVisible() ? CSSValueVisible : CSSValueHidden);
|
HTMLInputElement.idl | 51 [Reflect] attribute DOMString placeholder;
|
/external/chromium_org/third_party/WebKit/Source/core/rendering/ |
RenderVideo.cpp | 250 return fullScreen->placeholder();
|
RenderTextControlSingleLine.cpp | 205 // The placeholder gets layout last, after the parent text control and its other children, 206 // so in order to get the correct overflow from the placeholder we need to recompute it now. 255 if (HTMLElement* placeholder = inputElement()->placeholderElement()) 256 placeholder->setInlineStyleProperty(CSSPropertyTextOverflow, textShouldBeTruncated() ? CSSValueEllipsis : CSSValueClip);
|
/external/chromium_org/ui/base/l10n/ |
l10n_util.cc | 693 // $9 is the highest allowed placeholder. 697 std::string placeholder = local 699 size_t pos = utf8_string.find(placeholder.c_str()); 702 " Didn't find a " << placeholder << " placeholder in " << 706 " Unexpectedly found a " << placeholder << " placeholder in " <<
|
/external/chromium_org/components/autofill/content/renderer/ |
form_cache.cc | 290 std::string placeholder = form.fields[i].overall_type; local 298 if (!element->hasAttribute("placeholder")) 299 element->setAttribute("placeholder", WebString(UTF8ToUTF16(placeholder)));
|
/external/chromium_org/third_party/skia/src/views/ |
SkOSMenu.cpp | 196 SkEventSinkID target, const char placeholder[]) { 198 evt->setString(slotName, placeholder);
|
/external/skia/src/views/ |
SkOSMenu.cpp | 196 SkEventSinkID target, const char placeholder[]) { 198 evt->setString(slotName, placeholder);
|
/external/chromium_org/third_party/WebKit/Source/core/accessibility/ |
AXObject.cpp | 381 const AtomicString& placeholder = getAttribute(placeholderAttr); local 382 if (!placeholder.isEmpty()) 383 return placeholder;
|
/packages/apps/UnifiedEmail/src/com/android/mail/browse/ |
ConversationItemViewCoordinates.java | 271 // Attachment previews placeholder 497 final View placeholder = view.findViewById(id.ap_placeholder); local 498 placeholderWidth = placeholder.getWidth(); 499 placeholderHeight = placeholder.getHeight();
|
/external/chromium/chrome/browser/resources/net_internals/ |
testview.js | 71 // placeholder '?') once the test has completed. For now we just
|
/external/chromium_org/third_party/WebKit/Source/devtools/front_end/ |
SearchableView.js | 61 this._searchInputElement.placeholder = WebInspector.UIString("Find"); 82 this._replaceInputElement.placeholder = WebInspector.UIString("Replace");
|
sourcesPanel.css | 214 .tabbed-pane-placeholder {
|
/external/chromium_org/third_party/WebKit/Tools/GardeningServer/styles/ |
results.css | 200 .flakiness-iframe, .flakiness-iframe-placeholder {
|
/ndk/tests/device/issue42891-boost-1_52/jni/boost/boost/ |
array.hpp | 333 static T placeholder; 334 return placeholder;
|
/bionic/libc/upstream-netbsd/libc/isc/ |
eventlib_p.h | 177 struct { const void *placeholder; } null; member in struct:evEvent_p::__anon729::__anon736
|
/external/chromium/chrome/browser/resources/ |
network_menu.js | 204 this.ssidEdit.placeholder = localStrings.getString('ssid_prompt'); 221 this.passwordEdit.placeholder = localStrings.getString('pass_prompt');
|
/external/chromium_org/chrome/browser/resources/chromeos/ |
network_menu.js | 204 this.ssidEdit.placeholder = localStrings.getString('ssid_prompt'); 221 this.passwordEdit.placeholder = localStrings.getString('pass_prompt');
|
/external/chromium_org/third_party/WebKit/Source/core/editing/ |
CompositeEditCommand.cpp | 864 RefPtr<Node> placeholder = createBlockPlaceholderElement(document()); local 865 appendNode(placeholder, container); 866 return placeholder.release(); 877 RefPtr<Node> placeholder = createBlockPlaceholderElement(document()); local [all...] |