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

1 2 3 4

  /external/guava/guava/src/com/google/common/collect/
BoundType.java 22 * ("open"). If a range is unbounded on a side, it is neither open nor closed on that side; the
33 OPEN,
44 return inclusive ? CLOSED : OPEN;
  /hardware/qcom/display/msm8974/liboverlay/pipes/
overlayGenPipe.h 68 /* is open */
91 /* Pipe open or closed */
94 OPEN
  /external/chromium_org/third_party/icu/source/i18n/
funcrepl.cpp 20 static const UChar OPEN[] = {40,32,0}; // "( "
100 rule.append(OPEN);
name2uni.cpp 28 static const UChar OPEN[] = {92,78,126,123,126,0}; // "\N~{~"
29 static const UChar OPEN_DELIM = 92; // '\\' first char of OPEN
126 UnicodeString openPat(TRUE, OPEN, -1);
133 // 0 - looking for open delimiter
134 // 1 - after open delimiter
136 int32_t openPos = -1; // open delim candidate pos
143 case 0: // looking for open delimiter
157 case 1: // after open delimiter
246 // open delimiter candidate.
  /hardware/qcom/display/msm8960/liboverlay/pipes/
overlayGenPipe.h 69 /* is open */
93 /* Pipe open or closed */
96 OPEN
  /hardware/qcom/display/msm8x26/liboverlay/pipes/
overlayGenPipe.h 69 /* is open */
93 /* Pipe open or closed */
96 OPEN
  /external/icu4c/i18n/
funcrepl.cpp 20 static const UChar OPEN[] = {40,32,0}; // "( "
103 rule.append(OPEN, 2);
name2uni.cpp 30 static const UChar OPEN[] = {92,78,126,123,126,0}; // "\N~{~"
31 static const UChar OPEN_DELIM = 92; // '\\' first char of OPEN
128 UnicodeString openPat(TRUE, OPEN, -1);
135 // 0 - looking for open delimiter
136 // 1 - after open delimiter
138 int32_t openPos = -1; // open delim candidate pos
145 case 0: // looking for open delimiter
159 case 1: // after open delimiter
248 // open delimiter candidate.
  /external/chromium/net/websockets/
websocket_job.h 38 OPEN = 1,
websocket.h 64 OPEN = 1,
  /external/chromium_org/chrome/test/chromedriver/net/
websocket.h 45 OPEN,
  /external/chromium_org/third_party/WebKit/Source/core/page/
EventSource.h 66 static const State OPEN = 1;
71 DEFINE_ATTRIBUTE_EVENT_LISTENER(open);
  /external/chromium_org/third_party/WebKit/Source/modules/websockets/
WebSocket.h 63 OPEN = 1,
96 DEFINE_ATTRIBUTE_EVENT_LISTENER(open);
  /external/chromium_org/webkit/browser/appcache/
appcache_disk_cache.h 58 OPEN,
  /external/antlr/antlr-3.4/gunit/src/main/java/org/antlr/gunit/swingui/
ImageFactory.java 29 OPEN = getImage("folder24.png");
72 public ImageIcon OPEN ;
  /external/chromium/net/http/
disk_cache_based_ssl_host_info.h 43 OPEN,
  /external/chromium_org/net/websockets/
websocket_job.h 43 OPEN = 1,
  /external/chromium_org/third_party/libjingle/source/talk/app/webrtc/java/src/org/webrtc/
DataChannel.java 91 public enum State { CONNECTING, OPEN, CLOSING, CLOSED };
  /external/smack/src/org/jivesoftware/smackx/workgroup/agent/
WorkgroupQueue.java 162 * <li>WorkgroupQueue.Status.OPEN -- the queue is active and accepting new chat requests.
174 public static final Status OPEN = new Status("open");
190 * that can be converted to a status are: "open", "active", and "closed".
200 if (OPEN.toString().equals(type)) {
201 return OPEN;
  /external/stlport/src/details/
fstream_unistd.cpp 31 // open/close/read/write
63 # define OPEN open
69 # define OPEN open64
193 file_no = OPEN(name, flags, permission);
225 // open file. Mode is set to be consistent with the way that the file
  /frameworks/base/core/tests/ConnectivityManagerTest/src/com/android/connectivitymanagertest/functional/
WifiAssociationTest.java 2 * Copyright (C) 2013, The Android Open Source Project
41 * -e security-type [OPEN|WEP64|WEP128|WPA_TKIP|WPA2_AES] -e frequency-band [2.4|5.0|auto]
54 OPEN, WEP64, WEP128, WPA_TKIP, WPA2_AES
132 case OPEN:
139 config.allowedAuthAlgorithms.set(AuthAlgorithm.OPEN);
157 config.allowedAuthAlgorithms.set(AuthAlgorithm.OPEN);
173 config.allowedAuthAlgorithms.set(AuthAlgorithm.OPEN);
186 config.allowedAuthAlgorithms.set(AuthAlgorithm.OPEN);
  /ndk/sources/cxx-stl/stlport/src/details/
fstream_unistd.cpp 31 // open/close/read/write
63 # define OPEN open
69 # define OPEN open64
193 file_no = OPEN(name, flags, permission);
225 // open file. Mode is set to be consistent with the way that the file
  /external/mksh/src/
tree.c 960 #define OPEN(x) case x: name = #x; shf_puts(" {" #x ":", shf); /*}*/
962 OPEN(TCOM)
990 OPEN(TEXEC)
997 OPEN(TPAREN)
999 OPEN(TPIPE)
1008 OPEN(TLIST)
1010 OPEN(TOR)
1012 OPEN(TAND)
1014 OPEN(TBANG)
1016 OPEN(TDBRACKET
    [all...]
  /external/replicaisland/src/com/replica/replicaisland/
DoorAnimationComponent.java 2 * Copyright (C) 2010 The Android Open Source Project
26 public static final int OPEN = 1;
64 private void open(float timeSinceTriggered, GameObject parentObject) { method in class:DoorAnimationComponent
71 // snap open.
72 mSprite.playAnimation(Animation.OPEN);
110 // snap open.
146 open(delta, (GameObject)parent); method
158 mSprite.playAnimation(Animation.OPEN);
  /frameworks/base/core/java/android/os/
FileObserver.java 2 * Copyright (C) 2006 The Android Open Source Project
52 /** Event type: Someone had a file or directory open for writing, and closed it */
54 /** Event type: Someone had a file or directory open read-only, and closed it */
57 public static final int OPEN = 0x00000020;
73 | CLOSE_NOWRITE | OPEN | MOVED_FROM | MOVED_TO | DELETE | CREATE

Completed in 1453 milliseconds

1 2 3 4