HomeSort by relevance Sort by last modified time
    Searched full:term (Results 1 - 25 of 1730) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/webkit/Source/WebKit/gtk/docs/
webkitenvironment.xml 35 <term>BackForward</term>
38 <term>Editing</term>
41 <term>Events</term>
44 <term>Frames</term>
47 <term>FTP</term>
    [all...]
  /external/clang/test/Index/Inputs/CommentXML/
invalid-function-03.xml 7 <Term></Term>
invalid-function-04.xml 7 <Term> </Term>
invalid-function-05.xml 7 <Term>x1</Term>
  /external/markdown/tests/extensions-x-def_list/
loose_def_list.txt 3 term 1
9 term 2
10 term 3
loose_def_list.html 3 <dt>term 1</dt>
10 <dt>term 2</dt>
11 <dt>term 3</dt>
simple_def-lists.txt 13 term *3*
  /external/webkit/Source/JavaScriptCore/yarr/
YarrInterpreter.h 197 ByteTerm term(TypeAssertionBOL);
198 term.inputPosition = inputPos;
199 return term;
204 ByteTerm term(TypeCheckInput);
205 term.checkInputCount = count;
206 return term;
211 ByteTerm term(TypeUncheckInput);
212 term.checkInputCount = count;
213 return term;
218 ByteTerm term(TypeAssertionEOL)
    [all...]
YarrInterpreter.cpp 90 : term(0)
99 int term; member in struct:JSC::Yarr::Interpreter::DisjunctionContext
121 ParenthesesDisjunctionContext(int* output, ByteTerm& term)
124 unsigned firstSubpatternId = term.atom.subpatternId;
125 unsigned numNestedSubpatterns = term.atom.parenthesesDisjunction->m_numSubpatterns;
132 new(getDisjunctionContext(term)) DisjunctionContext();
146 DisjunctionContext* getDisjunctionContext(ByteTerm& term)
148 return reinterpret_cast<DisjunctionContext*>(&(subpatternBackup[term.atom.parenthesesDisjunction->m_numSubpatterns << 1]));
155 ParenthesesDisjunctionContext* allocParenthesesDisjunctionContext(ByteDisjunction* disjunction, int* output, ByteTerm& term)
157 size_t size = sizeof(ParenthesesDisjunctionContext) - sizeof(int) + (term.atom.parenthesesDisjunction->m_numSubpatterns << 1) * sizeof(int) + sizeof(DisjunctionContext) - s (…)
1803 PatternTerm& term = alternative->m_terms[i]; local
    [all...]
YarrPattern.cpp 246 // We duplicate the first found character if the quantity of the term is more than one. eg.: /a{3}/
312 PatternTerm hotTerm = hotTerms->at(i).term;
561 PatternTerm& term = currentAlternative->lastTerm(); local
562 ASSERT((term.type == PatternTerm::TypeParenthesesSubpattern) || (term.type == PatternTerm::TypeParentheticalAssertion));
564 if ((term.type == PatternTerm::TypeParenthesesSubpattern) && term.capture() && (subpatternId == term.parentheses.subpatternId)) {
596 PatternTerm copyTerm(PatternTerm& term, bool filterStartsWithBOL = false)
598 if ((term.type != PatternTerm::TypeParenthesesSubpattern) && (term.type != PatternTerm::TypeParentheticalAss (…)
616 PatternTerm& term = m_alternative->lastTerm(); local
656 PatternTerm& term = alternative->m_terms[i]; local
780 PatternTerm& term = terms.last(); local
838 PatternTerm term = alternative->m_terms[termIndex]; local
907 PatternTerm term = beginTerms[i].term; local
    [all...]
  /external/wpa_supplicant_8/wpa_supplicant/doc/docbook/
wpa_cli.sgml 107 <term>-p path</term>
114 <term>-i ifname</term>
122 <term>-h</term>
128 <term>-v</term>
134 <term>-B</term>
    [all...]
wpa_gui.sgml 39 <term>-p path</term>
46 <term>-i ifname</term>
54 <term>-t</term>
wpa_supplicant.sgml 249 <term>wext</term>
256 <term>wired</term>
263 <term>roboswitch</term>
270 <term>bsd</term>
277 <term>ndis</term>
    [all...]
wpa_passphrase.sgml 33 <term>ssid</term>
40 <term>passphrase</term>
  /external/chromium/chrome/common/extensions/docs/examples/api/omnibox/simple-example/
manifest.json 3 "description" : "To use, type 'omnix' plus a search term into the Omnibox.",
  /external/ganymed-ssh2/src/main/java/ch/ethz/ssh2/packets/
PacketSessionPtyRequest.java 19 public String term; field in class:PacketSessionPtyRequest
26 public PacketSessionPtyRequest(int recipientChannelID, boolean wantReply, String term,
32 this.term = term;
49 tw.writeString(term);
  /external/icu4c/common/
rbbirpt.txt 58 escaped term ^break-rule-end doExprStart
64 default term ^break-rule-end doExprStart
98 default term ^break-rule-end doExprStart
102 # term. Eat through a single rule character, or a composite thing, which
105 term:
107 white_space n term
110 '(' n term ^expr-mod doLParen
111 '$' scan-var-name ^term-var-ref
118 # term-var-ref We've just finished scanning a reference to a $variable.
122 term-var-ref
    [all...]
  /external/llvm/lib/Target/R600/
SIAnnotateControlFlow.cpp 76 void openIf(BranchInst *Term);
78 void insertElse(BranchInst *Term);
82 void handleLoop(BranchInst *Term);
189 void SIAnnotateControlFlow::openIf(BranchInst *Term) {
190 Value *Ret = CallInst::Create(If, Term->getCondition(), "", Term);
191 Term->setCondition(ExtractValueInst::Create(Ret, 0, "", Term));
192 push(Term->getSuccessor(1), ExtractValueInst::Create(Ret, 1, "", Term));
    [all...]
  /external/chromium/chrome/browser/bookmarks/
bookmark_index.cc 27 // when we match only one term, and is filled in when we get more than one
28 // term. We can do this as when we have only one matching term we know
158 bool BookmarkIndex::GetBookmarksWithTitleMatchingTerm(const string16& term,
161 Index::const_iterator i = index_.lower_bound(term);
165 if (!QueryParser::IsWordLongEnoughForPrefixSearch(term)) {
166 // Term is too short for prefix match, compare using exact match.
167 if (i->first != term)
168 return false; // No bookmarks with this term.
178 // This is the first term and we're doing a prefix match. Loop throug
    [all...]
  /external/llvm/utils/lit/lit/
ProgressBar.py 18 >>> term = TerminalController()
19 >>> print 'This is '+term.GREEN+'green'+term.NORMAL
24 >>> term = TerminalController()
25 >>> print term.render('This is ${GREEN}green${NORMAL}')
35 >>> term = TerminalController()
36 >>> if term.CLEAR_SCREEN:
212 def __init__(self, term, header, useETA=True):
213 self.term = term
    [all...]
  /external/openssh/openbsd-compat/
readpassphrase.c 60 struct termios term, oterm; local
110 memcpy(&term, &oterm, sizeof(term));
112 term.c_lflag &= ~(ECHO | ECHONL);
114 if (term.c_cc[VSTATUS] != _POSIX_VDISABLE)
115 term.c_cc[VSTATUS] = _POSIX_VDISABLE;
117 (void)tcsetattr(input, _T_FLUSH, &term);
119 memset(&term, 0, sizeof(term));
120 term.c_lflag |= ECHO
    [all...]
  /external/llvm/test/Transforms/ArgumentPromotion/
2008-09-08-CGUpdateSelfEdge.ll 3 define internal fastcc i32 @term_SharingList(i32* %Term, i32* %List) nounwind {
15 define i32 @term_Sharing(i32* %Term) nounwind {
  /device/ti/panda/audio/test/
test-signal 13 kill -TERM $$
  /external/chromium/chrome/common/extensions/docs/examples/api/omnibox/extension-docs/
manifest.json 3 "description" : "Search the Chrome Extensions documentation. To use, type 'crdoc' plus a search term into the Omnibox.",
  /external/valgrind/main/callgrind/docs/
cl-manual.xml 32 <term><command>callgrind_annotate</command></term>
46 <term><command>callgrind_control</command></term>
370 LL/SC, these are the number of SC instructions executed. For both, the term
533 <term>
535 </term>
551 <term>
553 </term>
563 <term>
    [all...]

Completed in 323 milliseconds

1 2 3 4 5 6 7 8 91011>>