/external/chromium-trace/catapult/third_party/py_vulcanize/third_party/rcssmin/_setup/py2/term/ |
H A D | __init__.py | 19 Package _setup.term 28 from _setup.term._term import terminfo, write, green, red, yellow, announce
|
/external/chromium-trace/catapult/third_party/py_vulcanize/third_party/rcssmin/_setup/py3/term/ |
H A D | __init__.py | 19 Package _setup.term 28 from _setup.term._term import terminfo, write, green, red, yellow, announce
|
/external/autotest/client/site_tests/bluetooth_AdapterSanity/ |
H A D | bluetooth_AdapterSanity.py | 27 for term in ignore_terms: 28 log_cmd += ' | grep -v \'%s\'' % term 30 for term in fail_terms: 31 search_cmd = '%s | grep -i \'%s\'' % (log_cmd, term)
|
/external/llvm/utils/lit/lit/ |
H A D | ProgressBar.py | 22 >>> term = TerminalController() 23 >>> print('This is '+term.GREEN+'green'+term.NORMAL) 28 >>> term = TerminalController() 29 >>> print(term.render('This is ${GREEN}green${NORMAL}')) 39 >>> term = TerminalController() 40 >>> if term.CLEAR_SCREEN: 224 def __init__(self, term, header, useETA=True): 225 self.term = term [all...] |
/external/autotest/client/site_tests/touch_UpdateErrors/ |
H A D | touch_UpdateErrors.py | 80 for term in pass_terms + fail_terms: 81 search_cmd = '%s | grep -i %s' % (log_cmd, term) 83 if term in fail_terms and len(log_entries) > 0: 85 error_msg = error_msg[error_msg.find(term)+len(term):].strip() 87 if term in pass_terms and len(log_entries) == 0: 88 logging.info('Did not find "%s"!', term)
|
/external/opencv3/3rdparty/include/ffmpeg_/libavutil/ |
H A D | avutil.h | 292 * @param term list terminator (usually 0 or -1) 297 const void *list, uint64_t term) av_pure; 302 * @param term list terminator (usually 0 or -1) 306 #define av_int_list_length(list, term) \ 307 av_int_list_length_for_size(sizeof(*(list)), list, term)
|
H A D | avstring.h | 158 * @param term a 0-terminated list of terminating chars 162 char *av_get_token(const char **buf, const char *term);
|
/external/chromium-trace/catapult/third_party/py_vulcanize/third_party/rcssmin/ |
H A D | run_tests.py | 34 from _setup import term namespace 93 term.write( 116 term.yellow("---> %s" % (dirname[strip:],)) 123 term.yellow("<--- %s" % (dirname[strip:],)) 138 term.write = term.green = term.red = term.yellow = \ 139 term.announce = \ 144 for key in term [all...] |
/external/mesa3d/src/gallium/drivers/llvmpipe/ |
H A D | lp_test_blend.c | 244 double *term) 250 term[0] = factor[0]; /* R */ 251 term[1] = factor[1]; /* G */ 252 term[2] = factor[2]; /* B */ 255 term[0] = factor[0] * src[0]; /* R */ 256 term[1] = factor[1] * src[1]; /* G */ 257 term[2] = factor[2] * src[2]; /* B */ 260 term[0] = factor[0] * src[3]; /* R */ 261 term[1] = factor[1] * src[3]; /* G */ 262 term[ 238 compute_blend_ref_term(unsigned rgb_factor, unsigned alpha_factor, const double *factor, const double *src, const double *dst, const double *con, double *term) argument [all...] |
H A D | lp_bld_blend_soa.c | 102 * Indexes are: factor[src,dst][color,term][r,g,b,a] 108 * Indexes are: term[src,dst][r,g,b,a] 110 LLVMValueRef term[2][4]; member in struct:lp_build_blend_soa_context 123 * Compute src/first term RGB 289 if(j < i && bld.term[k][j]) 290 bld.term[k][i] = bld.term[k][j]; 292 bld.term[k][i] = lp_build_mul(&bld.base, bld.factor[k][0][i], bld.factor[k][1][i]); 306 bld.term[k][i] = lp_build_mul(&bld.base, bld.factor[k][0][i], 322 bld.term[ [all...] |
/external/mesa3d/src/mesa/swrast/ |
H A D | s_texcombine.c | 96 GLuint i, term; local 140 for (term = 0; term < numArgsRGB; term++) { 141 const GLenum srcRGB = combine->SourceRGB[term]; 142 const GLenum operandRGB = combine->OperandRGB[term]; 146 argRGB[term] = get_texel_array(swrast, unit); 149 argRGB[term] = primary_rgba; 152 argRGB[term] = rgba; 156 float4_array c = ccolor[term]; [all...] |
/external/ceres-solver/include/ceres/ |
H A D | 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<int32>& block_sizes = term->parameter_block_sizes(); 176 CHECK(term->Evaluate(probe_point, results->cost.data(), 179 numeric_term(term, DO_NOT_TAKE_OWNERSHIP); 192 LOG(INFO) << "========== term 104 Probe(double const* const* probe_point, double error_tolerance, CostFunctionToProbe *term, GradientCheckResults* results) argument [all...] |
/external/jacoco/org.jacoco.examples/build/src/main/java/org/jacoco/examples/parser/ |
H A D | ExpressionParser.java | 44 final IExpression e = term(); 49 private IExpression term() throws IOException { method in class:ExpressionParser 78 e = term();
|
/external/jemalloc/test/include/test/ |
H A D | math.h | 56 double acu, factor, oflo, gin, term, rn, a, b, an, dif; local 74 term = 1.0; 79 term *= x / rn; 80 gin += term; 81 if (term <= acu) { 90 term = 0.0; 100 term += 1.0; 101 an = a * term; 273 /* Calculation of seven-term Taylor series. */
|
/external/opencv3/3rdparty/libjasper/ |
H A D | jpc_t1enc.c | 89 jas_matrix_t *flags, jas_matrix_t *data, int term, long *nmsedec); 92 jas_matrix_t *data, int term, long *nmsedec); 95 int, jas_matrix_t *flags, jas_matrix_t *data, int term, long *nmsedec); 98 jas_matrix_t *flags, jas_matrix_t *data, int term, long *nmsedec); 101 jas_matrix_t *flags, jas_matrix_t *data, int term, long *nmsedec); 231 pass->term = JPC_ISTERMINATED(pass - cblk->passes, 0, cblk->numpasses, (tcmpt->cblksty & JPC_COX_TERMALL) != 0, (tcmpt->cblksty & JPC_COX_LAZY) != 0); 235 assert(pass->term == 1); 236 pass->term = 1; 272 if (pass->term) { 305 if (pass->term) { 429 jpc_encsigpass(jpc_mqenc_t *mqenc, int bitpos, int orient, int vcausalflag, jas_matrix_t *flags, jas_matrix_t *data, int term, long *nmsedec) argument 528 jpc_encrawsigpass(jpc_bitstream_t *out, int bitpos, int vcausalflag, jas_matrix_t *flags, jas_matrix_t *data, int term, long *nmsedec) argument 630 jpc_encrefpass(jpc_mqenc_t *mqenc, int bitpos, int vcausalflag, jas_matrix_t *flags, jas_matrix_t *data, int term, long *nmsedec) argument 723 jpc_encrawrefpass(jpc_bitstream_t *out, int bitpos, int vcausalflag, jas_matrix_t *flags, jas_matrix_t *data, int term, long *nmsedec) argument 829 jpc_encclnpass(jpc_mqenc_t *mqenc, int bitpos, int orient, int vcausalflag, int segsymflag, jas_matrix_t *flags, jas_matrix_t *data, int term, long *nmsedec) argument [all...] |
/external/eigen/bench/btl/data/ |
H A D | 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/google-breakpad/src/testing/gtest/test/ |
H A D | gtest_color_test.py | 56 def UsesColor(term, color_env_var, color_flag): 59 SetEnvVar('TERM', term)
|
/external/gtest/test/ |
H A D | gtest_color_test.py | 56 def UsesColor(term, color_env_var, color_flag): 59 SetEnvVar('TERM', term)
|
/external/opencv3/samples/python2/ |
H A D | calibrate.py | 53 term = ( cv2.TERM_CRITERIA_EPS + cv2.TERM_CRITERIA_COUNT, 30, 0.1 ) variable 54 cv2.cornerSubPix(img, corners, (5, 5), (-1, -1), term)
|
/external/protobuf/gtest/test/ |
H A D | gtest_color_test.py | 56 def UsesColor(term, color_env_var, color_flag): 59 SetEnvVar('TERM', term)
|
/external/vulkan-validation-layers/tests/gtest-1.7.0/test/ |
H A D | gtest_color_test.py | 56 def UsesColor(term, color_env_var, color_flag): 59 SetEnvVar('TERM', term)
|
/external/ceres-solver/internal/ceres/ |
H A D | gradient_checking_cost_function_test.cc | 163 TestTerm<-1, -1> term(arity, dim); 165 CreateGradientCheckingCostFunction(&term, 169 term.Evaluate(¶meters[0], 216 // Should have one term that's bad, causing everything to get dumped. 219 TestTerm<1, 2> term(arity, dim); 221 CreateGradientCheckingCostFunction(&term, 240 TestTerm<-1, -1> term(arity, dim); 242 CreateGradientCheckingCostFunction(&term,
|
/external/toybox/toys/other/ |
H A D | login.c | 142 char *term = getenv("TERM"); local 145 if (term) setenv("TERM", term, 1);
|
/external/markdown/markdown/extensions/ |
H A D | def_list.py | 64 for term in terms: 66 dt.text = term
|
/external/mesa3d/src/mesa/main/ |
H A D | texenv.c | 175 /** Set an RGB or A combiner source term */ 181 GLuint term; local 185 * Translate pname to (term, alpha). 194 term = pname - GL_SOURCE0_RGB; 201 term = pname - GL_SOURCE0_ALPHA; 209 if ((term == 3) && (ctx->API != API_OPENGL 215 assert(term < MAX_COMBINER_TERMS); 218 * Error-check param (the source term) 259 texUnit->Combine.SourceA[term] = param; 261 texUnit->Combine.SourceRGB[term] 271 GLuint term; local [all...] |