HomeSort by relevance Sort by last modified time
    Searched defs:PLAIN (Results 1 - 25 of 92) sorted by null

1 2 3 4

  /external/apache-http/src/org/apache/http/conn/routing/
RouteInfo.java 59 * Plain routes are established by connecting to the target or
65 public enum TunnelType { PLAIN, TUNNELLED }
69 * Plain routes are established by connecting or tunnelling.
80 public enum LayerType { PLAIN, LAYERED }
  /external/mesa3d/src/amd/vulkan/
vk_format_parse.py 37 PLAIN = 'plain'
150 if self.layout != PLAIN:
173 if self.layout != PLAIN:
194 if self.layout != PLAIN:
202 if self.layout != PLAIN:
210 if self.layout != PLAIN:
220 if self.layout != PLAIN or self.colorspace == ZS:
276 if layout == PLAIN:
  /external/mesa3d/src/gallium/auxiliary/util/
u_format_parse.py 37 PLAIN = 'plain'
146 if self.layout != PLAIN:
167 if self.layout != PLAIN:
186 if self.layout != PLAIN:
194 if self.layout != PLAIN:
202 if self.layout != PLAIN:
212 if self.layout != PLAIN or self.colorspace == ZS:
268 if layout == PLAIN:
  /tools/tradefederation/core/src/com/android/tradefed/util/
IEmail.java 49 static final String PLAIN = "text/plain";
58 private String mContentType = PLAIN;
120 setContentType(PLAIN);
  /external/guice/extensions/persist/src/com/google/inject/persist/jpa/
JpaFinderProxy.java 74 if (JpaFinderProxy.ReturnType.PLAIN.equals(finderDescriptor.returnType)) {
238 return JpaFinderProxy.ReturnType.PLAIN;
277 PLAIN, COLLECTION, ARRAY
  /external/icu/android_icu4j/src/main/java/android/icu/math/
MathContext.java 67 * settings were (<code>0, PLAIN, false, ROUND_HALF_UP</code>).
88 * Plain (fixed point) notation, without any exponent.
91 * A zero result in plain form may have a decimal part of one or
97 public static final int PLAIN=0; // [no exponent]
104 * A zero result in plain form may have a decimal part of one or
108 * @see #PLAIN
117 * A zero result in plain form may have a decimal part of one or
120 * @see #PLAIN
246 * @see #PLAIN
436 }else if (setform==PLAIN){
    [all...]
  /external/icu/icu4j/eclipse-build/plugins.template/com.ibm.icu.base/src/com/ibm/icu/math/
MathContext.java 66 * settings were (<code>0, PLAIN, false, ROUND_HALF_UP</code>).
88 * Plain (fixed point) notation, without any exponent.
91 * A zero result in plain form may have a decimal part of one or
98 public static final int PLAIN=0; // [no exponent]
105 * A zero result in plain form may have a decimal part of one or
109 * @see #PLAIN
119 * A zero result in plain form may have a decimal part of one or
122 * @see #PLAIN
257 * @see #PLAIN
452 }else if (setform==PLAIN){
    [all...]
  /external/icu/icu4j/main/classes/core/src/com/ibm/icu/math/
MathContext.java 66 * settings were (<code>0, PLAIN, false, ROUND_HALF_UP</code>).
88 * Plain (fixed point) notation, without any exponent.
91 * A zero result in plain form may have a decimal part of one or
98 public static final int PLAIN=0; // [no exponent]
105 * A zero result in plain form may have a decimal part of one or
109 * @see #PLAIN
119 * A zero result in plain form may have a decimal part of one or
122 * @see #PLAIN
257 * @see #PLAIN
452 }else if (setform==PLAIN){
    [all...]
  /external/okhttp/okhttp-logging-interceptor/src/test/java/com/squareup/okhttp/logging/
HttpLoggingInterceptorTest.java 44 private static final MediaType PLAIN = MediaType.parse("text/plain; charset=utf-8");
128 client.newCall(request().post(RequestBody.create(PLAIN, "Hi?")).build()).execute();
146 .setHeader("Content-Type", PLAIN));
197 Request request = request().post(RequestBody.create(PLAIN, "Hi?")).build();
203 .assertLogEqual("Content-Type: text/plain; charset=utf-8")
215 .assertLogEqual("Content-Type: text/plain; charset=utf-8")
271 return PLAIN;
283 .assertLogEqual("Content-Type: text/plain; charset=utf-8")
294 .assertLogEqual("Content-Type: text/plain; charset=utf-8"
    [all...]
  /external/conscrypt/openjdk/src/test/java/org/conscrypt/
ConscryptSocketTest.java 88 PLAIN {
197 {SocketType.FILE_DESCRIPTOR, UnderlyingSocketType.PLAIN},
200 {SocketType.ENGINE, UnderlyingSocketType.PLAIN},
  /external/snakeyaml/src/main/java/org/yaml/snakeyaml/
DumperOptions.java 30 * plain style and two quoted styles, the single-quoted style and the
40 Character.valueOf('|')), FOLDED(Character.valueOf('>')), PLAIN(null);
58 return PLAIN;
160 private ScalarStyle defaultStyle = ScalarStyle.PLAIN;
  /external/toolchain-utils/cros_utils/
tabulator.py 774 """Class to convert a plain table into a cell-table.
967 PLAIN = 0
1017 elif self._output_type in [self.PLAIN, self.TSV]:
1032 elif self._output_type in [self.PLAIN, self.TSV]:
1059 if self._output_type in [self.PLAIN, self.CONSOLE, self.EMAIL]:
1088 if self._output_type in [self.CONSOLE, self.PLAIN, self.EMAIL]:
1096 if self._output_type in [self.PLAIN, self.CONSOLE, self.TSV, self.EMAIL]:
1102 if self._output_type in [self.PLAIN, self.CONSOLE, self.TSV, self.EMAIL]
    [all...]
  /frameworks/base/core/tests/coretests/src/android/widget/
TextViewActivityTest.java     [all...]
  /external/icu/android_icu4j/src/main/java/android/icu/text/
RelativeDateTimeFormatter.java 61 * fmt.format(Direction.PLAIN, AbsoluteUnit.SUNDAY); // "Sunday"
67 * fmt.format(Direction.PLAIN, AbsoluteUnit.NOW); // "now"
255 * Plain, which means the absence of a qualifier
257 PLAIN,
519 * unit this can occur with NOW which can only take PLAIN.
522 if (unit == AbsoluteUnit.NOW && direction != Direction.PLAIN) {
523 throw new IllegalArgumentException("NOW can only accept direction PLAIN.");
526 // Get plain day of week names from DateFormatSymbols.
527 if ((direction == Direction.PLAIN) && (AbsoluteUnit.SUNDAY.ordinal() <= unit.ordinal() &&
536 // Not PLAIN, or not a weekday
    [all...]
  /external/icu/icu4j/main/classes/core/src/com/ibm/icu/text/
RelativeDateTimeFormatter.java 60 * fmt.format(Direction.PLAIN, AbsoluteUnit.SUNDAY); // "Sunday"
66 * fmt.format(Direction.PLAIN, AbsoluteUnit.NOW); // "now"
287 * Plain, which means the absence of a qualifier
290 PLAIN,
576 * unit this can occur with NOW which can only take PLAIN.
580 if (unit == AbsoluteUnit.NOW && direction != Direction.PLAIN) {
581 throw new IllegalArgumentException("NOW can only accept direction PLAIN.");
584 // Get plain day of week names from DateFormatSymbols.
585 if ((direction == Direction.PLAIN) && (AbsoluteUnit.SUNDAY.ordinal() <= unit.ordinal() &&
594 // Not PLAIN, or not a weekday
    [all...]
  /external/robolectric/v1/lib/main/
httpclient-4.0.3.jar 
  /prebuilts/misc/common/robolectric/3.1.1/lib/
httpclient-4.0.3.jar 
  /prebuilts/misc/common/robolectric/3.4.2/lib/
httpclient-4.0.3.jar 
  /prebuilts/misc/common/robolectric/3.5.1/lib/
httpclient-4.0.3.jar 
  /prebuilts/misc/common/robolectric/3.6.1/lib/
httpclient-4.0.3.jar 
  /prebuilts/tools/common/m2/repository/org/apache/httpcomponents/httpclient/4.0.1/
httpclient-4.0.1.jar 
  /prebuilts/tools/common/m2/repository/org/apache/httpcomponents/httpclient/4.0.3/
httpclient-4.0.3.jar 
  /prebuilts/devtools/tools/lib/
httpclient-4.1.1.jar 
  /prebuilts/sdk/org.apache.http.legacy/
org.apache.http.legacy.jar 
  /prebuilts/tools/common/http-client/
httpclient-4.1.1.jar 

Completed in 1032 milliseconds

1 2 3 4