HomeSort by relevance Sort by last modified time
    Searched refs:bool (Results 51 - 75 of 524) sorted by null

1 23 4 5 6 7 8 91011>>

  /external/chromium_org/third_party/skia/src/views/mac/
SkOSWindow_Mac.mm 37 bool SkOSWindow::onEvent(const SkEvent& evt) {
51 bool SkOSWindow::onDispatchClick(int x, int y, Click::State state, void* owner,
68 bool SkOSWindow::attach(SkBackEndTypes attachType, int sampleCount, AttachmentInfo* info) {
  /external/lzma/CS/7zip/Common/
InBuffer.cs 12 bool m_StreamWasExhausted;
30 public bool ReadBlock()
49 public bool ReadByte(byte b) // check it
  /external/skia/src/views/mac/
SkOSWindow_Mac.mm 37 bool SkOSWindow::onEvent(const SkEvent& evt) {
51 bool SkOSWindow::onDispatchClick(int x, int y, Click::State state, void* owner,
68 bool SkOSWindow::attach(SkBackEndTypes attachType, int sampleCount, AttachmentInfo* info) {
  /cts/tests/src/android/renderscript/cts/
primitives.rs 23 bool boolTest = false;
39 static bool test_primitive_types() {
40 bool failed = false;
70 static bool test_vector_types() {
71 bool failed = false;
126 bool failed = false;
  /external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime.Debug/
BlankDebugEventListener.cs 65 public virtual void EnterDecision(int decisionNumber, bool couldBacktrack) {
85 public virtual void EndBacktrack(int level, bool successful) {
93 public virtual void SemanticPredicate(bool result, string predicate) {
  /external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime.Debug/
BlankDebugEventListener.cs 74 public virtual void EnterDecision(int decisionNumber, bool couldBacktrack)
104 public virtual void EndBacktrack( int level, bool successful )
116 public virtual void SemanticPredicate( bool result, string predicate )
  /packages/services/Telephony/src/com/android/phone/
GsmUmtsOptions.java 65 if (!res.getBoolean(R.bool.config_apn_expand)) {
68 if (!res.getBoolean(R.bool.config_operator_selection_expand)) {
73 if (res.getBoolean(R.bool.csp_enabled)) {
  /external/jmonkeyengine/engine/src/bullet-common/com/jme3/bullet/util/
CollisionShapeFactory.java 84 Boolean bool = spatial.getUserData(UserData.JME_PHYSICSIGNORE); local
85 if (bool != null && bool.booleanValue()) {
96 Boolean bool = spatial.getUserData(UserData.JME_PHYSICSIGNORE); local
97 if (bool != null && bool.booleanValue()) {
106 Boolean bool = spatial.getUserData(UserData.JME_PHYSICSIGNORE); local
107 if (bool != null && bool.booleanValue()) {
  /external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime.Tree/
ITreeNodeStream.cs 100 bool UniqueNavigationNodes {
  /external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime/Tree/
ITreeNodeStream.cs 106 bool UniqueNavigationNodes
TreeIterator.cs 47 protected bool firstTime = true;
48 private bool reachedEof;
96 public bool MoveNext()
166 bool result = Current != eof || !reachedEof;
  /external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime.Test/SlimParsing/Tree/
ITreeNodeStream`1.cs 105 bool UniqueNavigationNodes
  /external/chromium_org/third_party/WebKit/Source/core/platform/mac/
ScrollbarThemeMacOverlayAPI.mm 50 static bool supportsExpandedScrollbars()
53 static bool globalSupportsExpandedScrollbars = [NSClassFromString(@"NSScrollerImp") instancesRespondToSelector:@selector(setExpanded:)];
61 bool isHorizontal = scrollbar->orientation() == HorizontalScrollbar;
132 bool ScrollbarThemeMacOverlayAPI::usesOverlayScrollbars() const
158 bool ScrollbarThemeMacOverlayAPI::hasThumb(ScrollbarThemeClient* scrollbar)
168 IntRect ScrollbarThemeMacOverlayAPI::backButtonRect(ScrollbarThemeClient* scrollbar, ScrollbarPart part, bool painting)
174 IntRect ScrollbarThemeMacOverlayAPI::forwardButtonRect(ScrollbarThemeClient* scrollbar, ScrollbarPart part, bool painting)
180 IntRect ScrollbarThemeMacOverlayAPI::trackRect(ScrollbarThemeClient* scrollbar, bool painting)
KillRingMac.mm 46 static bool initializedKillRing = false;
  /packages/apps/ContactsCommon/src/com/android/contacts/common/preference/
ContactsPreferences.java 50 return mContext.getResources().getBoolean(R.bool.config_sort_order_user_changeable);
54 if (mContext.getResources().getBoolean(R.bool.config_default_sort_order_primary)) {
84 return mContext.getResources().getBoolean(R.bool.config_display_order_user_changeable);
88 if (mContext.getResources().getBoolean(R.bool.config_default_display_order_primary)) {
  /packages/apps/QuickSearchBox/src/com/android/quicksearchbox/
Config.java 268 return mContext.getResources().getBoolean(R.bool.show_zero_query_suggestions);
273 return mContext.getResources().getBoolean(R.bool.show_zero_query_shortcuts);
277 return mContext.getResources().getBoolean(R.bool.show_scrolling_suggestions);
281 return mContext.getResources().getBoolean(R.bool.show_scrolling_results);
  /external/antlr/antlr-3.4/gunit/src/main/java/org/antlr/gunit/swingui/runner/
TestSuiteAdapter.java 84 public static ITestCaseOutput createBoolOutput(boolean bool) {
85 return new TestCaseOutputResult(bool);
  /external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime/
RecognizerSharedState.cs 67 public bool errorRecovery;
84 public bool failed;
  /external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime.JavaExtensions/
StringTokenizer.cs 46 public StringTokenizer( string str, string separator, bool returnDelims )
77 public bool hasMoreTokens()
  /external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime/
RecognizerSharedState.cs 69 public bool errorRecovery;
86 public bool failed;
  /external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime.JavaExtensions/
StringTokenizer.cs 47 public StringTokenizer( string str, string separator, bool returnDelims )
77 public bool hasMoreTokens()
TypeExtensions.cs 83 public static bool isArray( this Type type )
89 public static bool isPrimitive( this Type type )
  /external/llvm/bindings/ocaml/analysis/
llvm_analysis.ml 13 external verify_function : Llvm.llvalue -> bool = "llvm_verify_function"
  /external/robolectric/src/main/java/com/xtremelabs/robolectric/shadows/
ShadowDatabaseUtils.java 21 Boolean bool = (Boolean) value; local
22 if (bool) {
  /libcore/support/src/test/java/libcore/java/io/
NullPrintStream.java 48 public void print(boolean bool) {}
58 public void println(boolean bool) {}

Completed in 3553 milliseconds

1 23 4 5 6 7 8 91011>>