HomeSort by relevance Sort by last modified time
    Searched defs:empty (Results 101 - 125 of 3009) sorted by null

1 2 3 45 6 7 8 91011>>

  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/c++/4.8.3/ext/pb_ds/detail/cc_hash_table_map_/
info_fn_imps.hpp 57 empty() const function in class:PB_DS_CLASS_C_DEC
  /prebuilts/gdb/darwin-x86/lib/python2.7/
sched.py 76 def empty(self): member in class:scheduler
77 """Check whether the queue is empty."""
81 """Execute events until the queue is empty.
  /prebuilts/gdb/linux-x86/lib/python2.7/
sched.py 76 def empty(self): member in class:scheduler
77 """Check whether the queue is empty."""
81 """Execute events until the queue is empty.
  /prebuilts/go/darwin-x86/src/time/
internal_test.go 34 func empty(arg interface{}, seq uintptr) {} func
47 f: empty,
  /prebuilts/go/linux-x86/src/time/
internal_test.go 34 func empty(arg interface{}, seq uintptr) {} func
47 f: empty,
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
sched.py 76 def empty(self): member in class:scheduler
77 """Check whether the queue is empty."""
81 """Execute events until the queue is empty.
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/
sched.py 76 def empty(self): member in class:scheduler
77 """Check whether the queue is empty."""
81 """Execute events until the queue is empty.
  /system/bt/main/
bte_conf.cc 60 std::string empty = ""; local
63 config_get_string(*config, section_name, "clientExecutableURL", &empty)
68 config_get_string(*config, section_name, "serviceDescription", &empty)
72 config_get_string(*config, section_name, "documentationURL", &empty)
  /system/chre/util/include/chre/util/
fixed_size_blocking_queue_impl.h 55 while (mQueue.empty()) {
65 bool FixedSizeBlockingQueue<ElementType, kSize>::empty() { function in class:chre::FixedSizeBlockingQueue
67 return mQueue.empty();
  /art/libartbase/base/
bounded_fifo.h 42 bool empty() const { function in class:art::BoundedFifoPowerOfTwo
  /cts/tools/dasm/src/java_cup/runtime/
virtual_parse_stack.java 67 * on the virtual stack). When this portion of the stack becomes empty we
77 * that the virtual stack is currently empty.
83 /* don't transfer if the real stack is empty */
98 /** Indicate whether the stack is empty. */
99 public boolean empty() method in class:virtual_parse_stack
101 /* if vstack is empty then we were unable to transfer onto it and
102 the whole thing is empty. */
103 return vstack.empty();
111 if (vstack.empty())
113 "Internal parser error: top() called on empty virtual stack")
    [all...]
  /external/clang/include/clang/Basic/
Sanitizers.h 68 bool empty() const { return Mask == 0; } function in struct:clang::SanitizerSet
VersionTuple.h 67 /// \brief Determine whether this version information is empty
69 bool empty() const { function in class:clang::VersionTuple
  /external/clang/include/clang/CodeGen/
SwiftCallingConv.h 75 bool empty() const { function in class:clang::CodeGen::swiftcall::SwiftAggLowering
76 assert(Finished && "didn't finish lowering before calling empty()");
77 return Entries.empty();
  /external/clang/test/CodeGenCXX/
wasm-args-returns.cpp 76 struct empty {}; struct
77 test(empty); variable
  /external/clang/test/SemaCXX/
crash-lambda-12645424.cpp 42 int empty = on(0) >> [] {}; // expected-error {{invalid operands to binary expression}} member in class:Z
  /external/eigen/unsupported/Eigen/CXX11/src/util/
MaxSizeVector.h 113 bool empty() const { return size_ == 0; } function in class:Eigen::MaxSizeVector
  /external/icu/icu4c/source/common/unicode/
stringpiece.h 61 * Default constructor, creates an empty StringPiece.
102 * Returns the string pointer. May be NULL if it is empty.
125 * Returns whether the string is empty.
126 * @return TRUE if the string is empty
129 UBool empty() const { return length_ == 0; } function in class:StringPiece
132 * Sets to an empty string.
  /external/icu/icu4c/source/i18n/
remtrans.cpp 63 UnicodeString empty; local
64 text.handleReplaceBetween(index.start, index.limit, empty);
  /external/jacoco/org.jacoco.ant/src/org/jacoco/ant/
AntResourcesLocator.java 35 private boolean empty; field in class:AntResourcesLocator
41 this.empty = true;
52 empty = false;
74 return empty;
  /external/jacoco/org.jacoco.core.test/src-java7/org/jacoco/core/test/filter/
TryWithResourcesTest.java 45 assertLine("test.close", ICounter.EMPTY);
63 assertLine("test2.close", ICounter.EMPTY);
89 assertLine("returnInBody.close", ICounter.EMPTY);
92 assertLine("returnInBody.close", ICounter.EMPTY);
122 assertLine("nested.close3", ICounter.EMPTY);
123 assertLine("nested.close2", ICounter.EMPTY);
124 assertLine("nested.close1", ICounter.EMPTY);
137 assertLine("returnInCatch.close", ICounter.EMPTY);
139 assertLine("returnInCatch.try2", ICounter.EMPTY);
153 assertLine("handwritten", /* partly when ECJ: */ICounter.EMPTY);
161 public void empty() { method in class:TryWithResourcesTest
    [all...]
  /external/javaparser/javaparser-symbol-solver-core/src/main/java/com/github/javaparser/symbolsolver/resolution/typeinference/
InferenceVariableSubstitution.java 13 private final static InferenceVariableSubstitution EMPTY = new InferenceVariableSubstitution();
18 public static InferenceVariableSubstitution empty() { method in class:InferenceVariableSubstitution
19 return EMPTY;
Substitution.java 17 private final static Substitution EMPTY = new Substitution();
19 public static Substitution empty() { method in class:Substitution
20 return EMPTY;
  /external/javaparser/javaparser-symbol-solver-testing/src/test/test_sourcecode/javaparser_new_src/javaparser-core/com/github/javaparser/ast/nodeTypes/
NodeWithTypeArguments.java 64 final List<Type<?>> empty = new LinkedList<>(); local
65 setTypeArguments(empty);
  /external/javaparser/javaparser-testing/src/test/java/com/github/javaparser/ast/expr/
MethodCallExprTest.java 6 import static java.util.Optional.empty;
19 assertEquals(empty(), lambdaExpr.getParentNode()); method

Completed in 1182 milliseconds

1 2 3 45 6 7 8 91011>>