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

1 2 3 4 5 6 7 8 91011>>

  /cts/libs/vogar-expect/src/vogar/
ResultValue.java 23 OK,
  /external/mesa3d/src/compiler/glsl/glcpp/tests/
124-preprocessing-numbers.c 5 #define OK CRAZY_BUT_TRUE_THIS_NEITHER
13 1OK
16 123e+OK
17 .23E+OK
18 1.3e-OK
19 12.E-OK
20 123p+OK
21 .23P+OK
22 1.3p-OK
23 12.P-OK
    [all...]
  /external/tensorflow/tensorflow/core/lib/core/
status_test.cc 24 TEST(Status, OK) {
25 EXPECT_EQ(Status::OK().code(), error::OK);
26 EXPECT_EQ(Status::OK().error_message(), "");
27 TF_EXPECT_OK(Status::OK());
28 TF_ASSERT_OK(Status::OK());
29 EXPECT_EQ(Status::OK(), Status());
31 EXPECT_TRUE(s.ok());
61 s.Update(Status::OK());
62 ASSERT_TRUE(s.ok());
    [all...]
status.h 50 static Status OK() { return Status(); }
53 bool ok() const { return (state_ == NULL); } function in class:tensorflow::Status
56 return ok() ? tensorflow::error::OK : state_->code;
60 return ok() ? empty_string() : state_->msg;
66 /// \brief If `ok()`, stores `new_status` into `*this`. If `!ok()`,
72 /// `if (overall_status.ok()) overall_status = new_status`
78 /// printing. Returns the string `"OK"` for success.
92 // OK status has a `NULL` state_. Otherwise, `state_` points t
    [all...]
  /external/vogar/src/vogar/
ResultValue.java 23 OK,
  /external/brotli/java/org/brotli/dec/
Dictionary.java 24 static final boolean OK;
27 boolean ok = true;
31 ok = false;
33 OK = ok;
48 if (!DataLoader.OK) {
  /frameworks/av/media/libstagefright/rtsp/
ARTPAssembler.h 35 OK
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Parser/
intrcheck.c 27 #define OK
91 #define OK
96 #ifndef OK
169 #endif /* !OK */
  /external/antlr/antlr-3.4/gunit/src/main/java/org/antlr/gunit/swingui/model/
TestCaseOutputResult.java 37 public static String OK = "OK";
52 return success ? OK : FAIL;
  /external/chromium-libpac/src/
proxy_resolver_v8.h 18 #define OK 0
37 // it is OK to run multiple instances of ProxyResolverV8 on different threads,
  /external/protobuf/src/google/protobuf/stubs/
status.cc 43 case OK:
44 return "OK";
85 const Status Status::OK = Status();
89 Status::Status() : error_code_(error::OK) {
94 if (error_code != error::OK) {
115 if (error_code_ == error::OK) {
116 return "OK";
  /external/python/cpython2/Lib/idlelib/
keybindingDialog.py 58 self.buttonOK = Button(frameButtons,text='OK',
59 width=8,command=self.OK)
217 def OK(self, event=None):
  /external/python/cpython2/Parser/
intrcheck.c 27 #define OK
91 #define OK
96 #ifndef OK
169 #endif /* !OK */
  /external/python/cpython3/Lib/idlelib/
config_key.py 62 self.buttonOK = Button(frameButtons,text='OK',
63 width=8,command=self.OK)
221 def OK(self, event=None):
  /prebuilts/gdb/darwin-x86/lib/python2.7/idlelib/
keybindingDialog.py 53 self.buttonOK = Button(frameButtons,text='OK',
54 width=8,command=self.OK)
213 def OK(self, event=None):
  /prebuilts/gdb/linux-x86/lib/python2.7/idlelib/
keybindingDialog.py 53 self.buttonOK = Button(frameButtons,text='OK',
54 width=8,command=self.OK)
213 def OK(self, event=None):
  /prebuilts/go/darwin-x86/src/html/template/
error.go 44 // OK indicates the lack of an error.
45 OK ErrorCode = iota
  /prebuilts/go/linux-x86/src/html/template/
error.go 44 // OK indicates the lack of an error.
45 OK ErrorCode = iota
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/idlelib/
keybindingDialog.py 53 self.buttonOK = Button(frameButtons,text='OK',
54 width=8,command=self.OK)
213 def OK(self, event=None):
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/idlelib/
keybindingDialog.py 53 self.buttonOK = Button(frameButtons,text='OK',
54 width=8,command=self.OK)
213 def OK(self, event=None):
  /system/tools/aidl/
aidl.h 45 OK = 0,
  /external/webp/src/utils/
thread_utils.h 30 OK, // ready to work
  /frameworks/base/services/core/jni/BroadcastRadio/
types.h 32 OK = 0,
  /libcore/ojluni/src/main/java/jdk/net/
SocketFlow.java 41 * the status is returned as OK.
77 OK,
152 * @return this SocketFlow's bandwidth, or {@code -1} if status is not OK.
  /packages/apps/Email/tests/src/com/android/email/mail/store/imap/
ImapResponseTest.java 38 assertTrue(buildResponse(null, false, new ImapSimpleString("OK")).isOk());
43 final ImapResponse OK = buildResponse("tag", false, new ImapSimpleString("OK"));
69 new ImapSimpleString("OK"),
85 new ImapSimpleString("OK"),
96 new ImapSimpleString("OK"),
106 new ImapSimpleString("OK"),
127 new ImapSimpleString("OK"),
136 new ImapSimpleString("OK"),

Completed in 487 milliseconds

1 2 3 4 5 6 7 8 91011>>