HomeSort by relevance Sort by last modified time
    Searched defs:ex (Results 26 - 50 of 262) sorted by null

12 3 4 5 6 7 8 91011

  /external/chromium_org/third_party/boringssl/src/crypto/x509/
x509_v3.c 86 X509_EXTENSION *ex; local
95 ex=sk_X509_EXTENSION_value(sk,lastpos);
96 if (OBJ_cmp(ex->object,obj) == 0)
106 X509_EXTENSION *ex; local
115 ex=sk_X509_EXTENSION_value(sk,lastpos);
116 if ( ((ex->critical > 0) && crit) ||
117 ((ex->critical <= 0) && !crit))
142 X509_EXTENSION *ex, int loc)
166 if ((new_ex=X509_EXTENSION_dup(ex)) == NULL)
181 X509_EXTENSION *X509_EXTENSION_create_by_NID(X509_EXTENSION **ex, int nid
    [all...]
  /external/chromium_org/third_party/skia/src/effects/gradients/
SkClampRange.cpp 63 // start with ex equal to the last computed value
64 int64_t ex = fx + (count - 1) * dx; local
66 if ((uint64_t)(fx | ex) <= 0xFFFF) {
72 if (fx <= 0 && ex <= 0) {
77 if (fx >= 0xFFFF && ex >= 0xFFFF) {
85 // now make ex be 1 past the last computed value
86 ex += dx;
88 if (overflows_fixed(ex)) {
114 ex = fx + dx * count;
120 ex -= dx
    [all...]
  /external/nist-sip/java/gov/nist/javax/sip/parser/
ContentLanguageParser.java 96 } catch (ParseException ex) {
97 throw createParseException(ex.getMessage());
EventParser.java 87 } catch (ParseException ex) {
88 throw createParseException(ex.getMessage());
ExpiresParser.java 78 } catch (NumberFormatException ex) {
80 } catch (InvalidArgumentException ex) {
81 throw createParseException(ex.getMessage());
AcceptEncodingParser.java 119 } catch (NumberFormatException ex) {
120 throw createParseException(ex.getMessage());
121 } catch (InvalidArgumentException ex) {
122 throw createParseException(ex.getMessage());
AcceptLanguageParser.java 113 } catch (NumberFormatException ex) {
114 throw createParseException(ex.getMessage());
115 } catch (InvalidArgumentException ex) {
116 throw createParseException(ex.getMessage());
CSeqParser.java 74 } catch (NumberFormatException ex) {
75 Debug.printStackTrace(ex);
77 } catch (InvalidArgumentException ex) {
78 Debug.printStackTrace(ex);
79 throw createParseException(ex.getMessage());
ContentDispositionParser.java 88 } catch (ParseException ex) {
89 throw createParseException(ex.getMessage());
ContentEncodingParser.java 103 } catch (ParseException ex) {
104 throw createParseException(ex.getMessage());
ContentLengthParser.java 63 } catch (InvalidArgumentException ex) {
64 throw createParseException(ex.getMessage());
65 } catch (NumberFormatException ex) {
66 throw createParseException(ex.getMessage());
MaxForwardsParser.java 62 } catch (InvalidArgumentException ex) {
63 throw createParseException(ex.getMessage());
64 } catch (NumberFormatException ex) {
65 throw createParseException(ex.getMessage());
MimeVersionParser.java 82 } catch (InvalidArgumentException ex) {
83 throw createParseException(ex.getMessage());
MinExpiresParser.java 79 } catch (InvalidArgumentException ex) {
80 throw createParseException(ex.getMessage());
RAckParser.java 89 } catch (InvalidArgumentException ex) {
90 throw createParseException(ex.getMessage());
RSeqParser.java 78 } catch (InvalidArgumentException ex) {
79 throw createParseException(ex.getMessage());
TimeStampParser.java 93 } catch (NumberFormatException ex) {
94 throw createParseException(ex.getMessage());
95 } catch (InvalidArgumentException ex) {
96 throw createParseException(ex.getMessage());
118 } catch (NumberFormatException ex) {
119 throw createParseException(ex.getMessage());
120 } catch (InvalidArgumentException ex) {
121 throw createParseException(ex.getMessage());
  /external/openssl/crypto/x509/
x509_v3.c 88 X509_EXTENSION *ex; local
97 ex=sk_X509_EXTENSION_value(sk,lastpos);
98 if (OBJ_cmp(ex->object,obj) == 0)
108 X509_EXTENSION *ex; local
117 ex=sk_X509_EXTENSION_value(sk,lastpos);
118 if ( ((ex->critical > 0) && crit) ||
119 ((ex->critical <= 0) && !crit))
144 X509_EXTENSION *ex, int loc)
168 if ((new_ex=X509_EXTENSION_dup(ex)) == NULL)
183 X509_EXTENSION *X509_EXTENSION_create_by_NID(X509_EXTENSION **ex, int nid
    [all...]
  /external/owasp/sanitizer/src/tests/org/owasp/html/
FuzzyTestCase.java 51 } catch (NumberFormatException ex) {
52 ex.printStackTrace();
  /art/test/054-uncaught/src/
Main.java 35 } catch (InterruptedException ex) {
36 ex.printStackTrace();
  /dalvik/dx/src/com/android/dx/command/
Main.java 128 } catch (UsageException ex) {
130 } catch (RuntimeException ex) {
132 ex.printStackTrace();
134 } catch (Throwable ex) {
136 ex.printStackTrace();
137 if ((ex instanceof NoClassDefFoundError)
138 || (ex instanceof NoSuchMethodError)) {
  /external/chromium_org/third_party/boringssl/src/crypto/x509v3/
v3_prn.c 153 X509_EXTENSION *ex; local
154 ex=sk_X509_EXTENSION_value(exts, i);
156 obj=X509_EXTENSION_get_object(ex);
158 j=X509_EXTENSION_get_critical(ex);
161 if(!X509V3_EXT_print(bp, ex, flag, indent + 4))
164 M_ASN1_OCTET_STRING_print(bp,ex->value);
  /external/chromium_org/third_party/mesa/src/src/glsl/
lower_vector.cpp 93 ir_expression *const ex = (ir_expression *) op; local
95 if (ex->operation != ir_unop_neg)
98 op = ex->operands[0];
  /external/chromium_org/third_party/skia/tests/
PathOpsSimplifyTrianglesThreadedTest.cpp 29 int ex = e & 0x03; local
37 if ((ex - dx) * (fy - dy) == (ey - dy) * (fx - dx)) {
47 path.lineTo(SkIntToScalar(ex), SkIntToScalar(ey));
57 str += sprintf(str, " path.lineTo(%d, %d);\n", ex, ey);
  /external/mesa3d/src/glsl/
lower_vector.cpp 93 ir_expression *const ex = (ir_expression *) op; local
95 if (ex->operation != ir_unop_neg)
98 op = ex->operands[0];

Completed in 1639 milliseconds

12 3 4 5 6 7 8 91011