Searched refs:Placeholder (Results 1 - 25 of 28) sorted by relevance

12

/external/chromium_org/tools/grit/grit/
H A Dtclib_unittest.py39 phs = [tclib.Placeholder(u'USERNAME', u'%s', 'Joi')]
61 tclib.Placeholder('BLA1', '%s', '%s'),
62 tclib.Placeholder('BLA2', '%s', '%s'),
63 tclib.Placeholder('BLA3', '%s', '%s')])
162 ph = tclib.Placeholder('BINGO BONGO', 'bla', 'bla')
170 phs = [tclib.Placeholder(word[:i], str(i), str(i)) for i in range(1, 11)]
H A Dtclib.py84 if isinstance(part, Placeholder):
91 assert isinstance(placeholder, Placeholder)
146 if isinstance(part, Placeholder):
147 ph = grit.extern.tclib.Placeholder(
202 class Placeholder(grit.extern.tclib.Placeholder): class in inherits:grit.extern.tclib.Placeholder
H A Dclique_unittest.py29 tclib.Placeholder('USERNAME', '%s', 'Joi')])
37 tclib.Placeholder('USERNAME', '%s', 'Joi')])
40 tclib.Placeholder('USERNAME', '%s', 'Joi')])
132 placeholders=[tclib.Placeholder('USERNAME', '$1', 'Joi')]),
134 placeholders=[tclib.Placeholder('USERNAME', '%s', 'Joi')]),
141 placeholders=[tclib.Placeholder(
H A Dpseudo.py122 if isinstance(part, tclib.Placeholder):
H A Dpseudo_unittest.py43 tclib.Placeholder('USERNAME', '%s', 'Joi')])
H A Dpseudo_rtl.py98 if isinstance(part, tclib.Placeholder):
H A Dclique.py227 translation.AppendPlaceholder(tclib.Placeholder(
H A Dutil.py611 placeholders.append(tclib.Placeholder(name, f, sub))
/external/chromium_org/tools/grit/grit/extern/
H A Dtclib.py56 # The Placeholder class represents a placeholder in a message.
58 class Placeholder(object): class in inherits:object
86 if type(other) is not Placeholder:
111 # placeholders = [Placeholder("NUM_BUGS", "%d", "33")],
125 if not isinstance(placeholder, Placeholder):
139 if isinstance(item, Placeholder) and placeholder.EqualTo(item):
154 if not isinstance(s0, Placeholder):
160 if not isinstance(s0, Placeholder):
187 if isinstance(item, Placeholder):
204 if isinstance(item, Placeholder)
[all...]
/external/chromium_org/tools/grit/grit/tool/
H A Dtransl2tc.py175 if isinstance(transl_content[ix], tclib.Placeholder):
176 if not isinstance(current_content[ix], tclib.Placeholder):
184 if isinstance(current_content[ix], tclib.Placeholder):
193 if (isinstance(content[ix], tclib.Placeholder) and
195 assert isinstance(current_content[ix], tclib.Placeholder)
H A Dxmb.py62 type(message.parts[0] == tclib.Placeholder)))
78 if isinstance(part, tclib.Placeholder):
H A Drc2grd.py392 msg.AppendPlaceholder(tclib.Placeholder(
H A Dandroid2grd.py313 msg.AppendPlaceholder(tclib.Placeholder(placeholder_id,
/external/chromium_org/tools/grit/grit/node/
H A Dmessage_unittest.py50 placeholders=[tclib.Placeholder('USERNAME', '%s', 'Joi'),
51 tclib.Placeholder('BINGO', '%d', '11')])
H A Dbase_unittest.py139 tclib.Placeholder('BEGIN_BOLD', '<b>', 'bla'),
140 tclib.Placeholder('WHITESPACE', '&nbsp;', 'bla'),
141 tclib.Placeholder('END_BOLD', '</b>', 'bla')]),
H A Dmessage.py139 placeholders.append(tclib.Placeholder(presentation, original, ex))
/external/chromium_org/url/
H A Durl_canon.h657 sources_.username = Placeholder();
668 sources_.password = Placeholder();
679 sources_.host = Placeholder();
690 sources_.port = Placeholder();
701 sources_.path = Placeholder();
712 sources_.query = Placeholder();
723 sources_.ref = Placeholder();
736 const CHAR* Placeholder() { function in class:url::Replacements
/external/llvm/lib/ExecutionEngine/RuntimeDyld/
H A DRuntimeDyldELF.cpp303 uint32_t *Placeholder = local
307 int64_t RealOffset = *Placeholder + Value + Addend - FinalAddress;
316 uint64_t *Placeholder = local
320 *Target = *Placeholder + Value + Addend - FinalAddress;
333 uint32_t *Placeholder = local
336 *Target = *Placeholder + Value + Addend;
342 uint32_t *Placeholder = local
346 uint32_t RealOffset = *Placeholder + Value + Addend - FinalAddress;
503 uint32_t *Placeholder =
526 *TargetPtr = *Placeholder
[all...]
/external/chromium_org/tools/grit/grit/gather/
H A Digoogle_strings.py94 msg.AppendPlaceholder(tclib.Placeholder(part, '[![%s]!]' % part,
H A Dmuppet_strings.py100 msg.AppendPlaceholder(tclib.Placeholder(part, '[![%s]!]' % part,
H A Dskeleton_gatherer.py107 ph = tclib.Placeholder('XX%02dXX' % self.ph_counter_, chunk, chunk)
H A Dpolicy_json.py33 <ph name="PLACEHOLDER_NAME">Placeholder text<ex>Example value</ex></ph>
51 msg.AppendPlaceholder(tclib.Placeholder(
H A Dtr_html.py448 [ Placeholder('START_BOLD', '<b>', ''),
449 Placeholder('USERNAME', '[USERNAME]', ''),
450 Placeholder('END_BOLD', '</b>', ''),
451 Placeholder('START_ITALIC', '<i>', ''),
452 Placeholder('END_ITALIC', '</i>', ''), ])
588 placeholders.append(tclib.Placeholder(final_name, original, '(HTML code)'))
667 if isinstance(content, tclib.Placeholder):
/external/clang/lib/Sema/
H A DCodeCompleteConsumer.cpp169 CodeCompletionString::Chunk::CreatePlaceholder(const char *Placeholder) { argument
170 return Chunk(CK_Placeholder, Placeholder);
357 void CodeCompletionBuilder::AddPlaceholderChunk(const char *Placeholder) { argument
358 Chunks.push_back(Chunk::CreatePlaceholder(Placeholder));
/external/clang/include/clang/Sema/
H A DCodeCompleteConsumer.h411 static Chunk CreatePlaceholder(const char *Placeholder);
608 void AddPlaceholderChunk(const char *Placeholder);

Completed in 388 milliseconds

12