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

1 2 3 4 5 6 7

  /bionic/libc/bionic/
isatty.c 36 struct termios term; local
38 return tcgetattr (fd, &term) == 0;
  /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...]
YarrJIT.cpp 100 PatternTerm& term = alternative->m_terms[i]; local
103 if ((term.type == PatternTerm::TypeCharacterClass)
104 && (term.quantityType == QuantifierFixedCount)
107 PatternTerm termCopy = term;
418 ParenthesesTail* addParenthesesTail(PatternTerm& term, JumpList* jumpListToPriorParen)
420 ParenthesesTail* parenthesesTail = new ParenthesesTail(term, m_parenNestingLevel, jumpListToPriorParen);
868 PatternTerm& term() function in struct:JSC::Yarr::YarrGenerator::TermGenerationState
914 return term().inputPosition - checkedTotal;
1172 PatternTerm& term = state.term(); local
1197 PatternTerm& term = state.term(); local
1224 PatternTerm& term = state.term(); local
1236 PatternTerm& term = state.term(); local
1320 PatternTerm& term = state.term(); local
1343 PatternTerm& term = state.term(); local
1385 PatternTerm& term = state.term(); local
1423 PatternTerm& term = state.term(); local
1441 PatternTerm& term = state.term(); local
1466 PatternTerm& term = state.term(); local
1510 PatternTerm& term = state.term(); local
1643 PatternTerm& term = state.term(); local
1789 PatternTerm& term = state.term(); local
1846 PatternTerm& term = state.term(); local
    [all...]
  /external/dropbear/
netbsd_getpass.c 63 struct termios term; local
93 (void)tcgetattr(fileno(fp), &term); local
94 if ((echo = (term.c_lflag & ECHO)) != 0) {
95 term.c_lflag &= ~ECHO;
96 (void)tcsetattr(fileno(fp), TCSAFLUSH /*|TCSASOFT*/, &term); local
107 term.c_lflag |= ECHO;
108 (void)tcsetattr(fileno(fp), TCSAFLUSH/*|TCSASOFT*/, &term); local
chansession.h 49 unsigned char * term; member in struct:ChanSess
  /external/grub/stage2/
terminfo.c 34 struct terminfo term = variable in typeref:struct:terminfo
222 grub_putstr (grub_tparm (term.cursor_address, y, x));
229 grub_putstr (grub_tparm (term.clear_screen));
236 grub_putstr (grub_tparm (term.enter_standout_mode));
243 grub_putstr (grub_tparm (term.exit_standout_mode));
250 grub_memmove (&term, new, sizeof (struct terminfo));
257 grub_memmove (copy, &term, sizeof (struct terminfo));
console.c 22 #include <term.h>
  /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/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/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/srec/seti/sltsEngine/include/
CSWIslts.h 34 SWIsltsResult term();
  /hardware/qcom/bt/libbt-vendor/src/
userial_vendor.c 84 struct termios term; local
123 if (tcgetattr(fd, &term) < 0)
130 cfmakeraw(&term);
135 term.c_cflag |= (CRTSCTS | CLOCAL);
137 if (tcsetattr(fd, TCSANOW, &term) < 0)
  /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...]
bookmark_index.h 92 // Populates |matches| for the specified term. If |first_term| is true, this
93 // is the first term in the query. Returns true if there is at least one node
94 // matching the term.
95 bool GetBookmarksWithTitleMatchingTerm(const string16& term,
124 void RegisterNode(const string16& term, const BookmarkNode* node);
127 void UnregisterNode(const string16& term, const BookmarkNode* node);
  /ndk/sources/host-tools/nawk-20071023/
awkgram.y 65 %type <p> pas pattern ppattern plist pplist patlist prarg term re
214 | ppattern term %prec CAT { $$ = op2(CAT, $1, $2); }
216 | term
247 | pattern term %prec CAT { $$ = op2(CAT, $1, $2); }
249 | term
295 print prarg '|' term {
298 | print prarg APPEND term {
301 | print prarg GT term {
351 term: label
352 term '/' ASGNOP term { $$ = op2(DIVEQ, $1, $4);
    [all...]
  /external/ceres-solver/include/ceres/
gradient_checker.h 76 // term->parameter_block_sizes().size(), and each matrix is the
97 // term: The cost function to test. Not retained after this call returns.
106 CostFunctionToProbe *term,
109 CHECK_NOTNULL(term);
119 // Do a consistency check between the term and the template parameters.
120 CHECK_EQ(M, term->num_residuals());
122 const vector<int16>& block_sizes = term->parameter_block_sizes();
175 CHECK(term->Evaluate(probe_point, results->cost.data(),
178 numeric_term(term, DO_NOT_TAKE_OWNERSHIP);
191 LOG(INFO) << "========== term-computed derivatives =========="
    [all...]
  /external/ceres-solver/internal/ceres/
runtime_numeric_diff_cost_function_test.cc 81 TestCostFunction term; local
84 CreateRuntimeNumericDiffCostFunction(&term, CENTRAL, kRelativeEps));
87 CreateRuntimeNumericDiffCostFunction(&term, FORWARD, kRelativeEps));
154 TranscendentalTestCostFunction term; local
157 CreateRuntimeNumericDiffCostFunction(&term, CENTRAL, kRelativeEps));
160 CreateRuntimeNumericDiffCostFunction(&term, FORWARD, kRelativeEps));
  /external/ganymed-ssh2/src/main/java/ch/ethz/ssh2/
Session.java 59 * <code>requestPTY(term, 0, 0, 0, 0, null)</code>.
63 public void requestPTY(String term) throws IOException
65 requestPTY(term, 0, 0, 0, 0, null);
77 * <li>The TERM environment variable value (e.g., vt100)</li>
87 * @param term The TERM environment variable value (e.g., vt100)
95 public void requestPTY(String term, int term_width_characters, int term_height_characters, int term_width_pixels,
98 if (term == null)
99 throw new IllegalArgumentException("TERM cannot be null.");
125 cm.requestPTY(cn, term, term_width_characters, term_height_characters, term_width_pixels, term_height_pixels
    [all...]
  /external/chromium/chrome/browser/autocomplete/
search_provider_unittest.cc 28 // . The URL created by using the search term term1_ with default_t_url_ is
30 // . The URL created by using the search term keyword_term_ with keyword_t_url_
118 // Add url1, with search term term1_.
138 // Add a page and search term for keyword_t_url_.
224 string16 term = term1_.substr(0, term1_.size() - 1); local
225 QueryForInput(term, false, false);
234 ReplaceSearchTerms(*default_t_url_, term, 0, string16()));
247 // term term1.
254 *default_t_url_, term, 0, string16()));
265 string16 term = term1_.substr(0, term1_.size() - 1) local
276 string16 term = keyword_term_.substr(0, keyword_term_.size() - 1); local
    [all...]
  /external/chromium/chrome/browser/history/
history_notifications.h 94 string16 term; member in struct:history::KeywordSearchTermDetails
  /external/eigen/bench/btl/data/
mk_gnuplot_script.sh 29 #echo set term postscript color >> $WHAT.gnuplot
31 echo set term pbm small color >> $WHAT.gnuplot
46 echo set term jpeg large >> $WHAT.gnuplot
  /external/openssh/
session.h 40 char *term; member in struct:Session
  /external/srec/srec/include/
hmm_desc.h 125 struct terminal_tree_node_info term; member in union:__anon15435

Completed in 581 milliseconds

1 2 3 4 5 6 7