HomeSort by relevance Sort by last modified time
    Searched full:boolean (Results 151 - 175 of 22508) sorted by null

1 2 3 4 5 67 8 91011>>

  /external/chromium_org/android_webview/java/src/org/chromium/android_webview/
AwSettings.java 46 private final boolean mHasInternetPermission;
69 private boolean mLoadsImagesAutomatically = true;
70 private boolean mImagesEnabled = true;
71 private boolean mJavaScriptEnabled = false;
72 private boolean mAllowUniversalAccessFromFileURLs = false;
73 private boolean mAllowFileAccessFromFileURLs = false;
74 private boolean mJavaScriptCanOpenWindowsAutomatically = false;
75 private boolean mSupportMultipleWindows = false;
77 private boolean mAppCacheEnabled = false;
78 private boolean mDomStorageEnabled = false
    [all...]
  /external/chromium_org/chrome/android/java/src/org/chromium/chrome/browser/infobar/
TranslateOptions.java 27 private final boolean[] mOriginalOptions;
31 private final boolean[] mOptions;
36 boolean neverLanguage, boolean neverDomain, boolean alwaysLanguage,
37 boolean[] originalOptions) {
42 mOptions = new boolean[3];
59 boolean alwaysTranslate) {
93 public boolean optionsChanged() {
106 public boolean neverTranslateLanguageState()
    [all...]
  /external/chromium_org/content/public/android/java/src/org/chromium/content/browser/accessibility/
KitKatBrowserAccessibilityManager.java 26 boolean canOpenPopup,
27 boolean contentInvalid,
28 boolean dismissable,
29 boolean multiLine,
42 int rowCount, int columnCount, boolean hierarchical) {
49 int rowIndex, int rowSpan, int columnIndex, int columnSpan, boolean heading) {
63 boolean canOpenPopup,
64 boolean contentInvalid,
65 boolean dismissable,
66 boolean multiLine
    [all...]
  /external/chromium_org/third_party/JSON/JSON-2.59/blib/lib/JSON/backportPP/
Boolean.pm 3 JSON::PP::Boolean - dummy module providing JSON::PP::Boolean
23 This idea is from L<JSON::XS::Boolean> written by
  /external/chromium_org/third_party/JSON/JSON-2.59/lib/JSON/backportPP/
Boolean.pm 3 JSON::PP::Boolean - dummy module providing JSON::PP::Boolean
23 This idea is from L<JSON::XS::Boolean> written by
  /external/chromium_org/third_party/JSON/out/lib/perl5/JSON/backportPP/
Boolean.pm 3 JSON::PP::Boolean - dummy module providing JSON::PP::Boolean
23 This idea is from L<JSON::XS::Boolean> written by
  /external/chromium_org/third_party/WebKit/Source/core/html/canvas/
DataView.idl 36 [StrictTypeChecking, RaisesException] short getInt16(unsigned long byteOffset, optional boolean littleEndian);
37 [StrictTypeChecking, RaisesException] unsigned short getUint16(unsigned long byteOffset, optional boolean littleEndian);
38 [StrictTypeChecking, RaisesException] long getInt32(unsigned long byteOffset, optional boolean littleEndian);
39 [StrictTypeChecking, RaisesException] unsigned long getUint32(unsigned long byteOffset, optional boolean littleEndian);
42 [StrictTypeChecking, RaisesException] float getFloat32(unsigned long byteOffset, optional boolean littleEndian);
43 [StrictTypeChecking, RaisesException] double getFloat64(unsigned long byteOffset, optional boolean littleEndian);
48 [StrictTypeChecking, RaisesException] void setInt16(unsigned long byteOffset, short value, optional boolean littleEndian);
49 [StrictTypeChecking, RaisesException] void setUint16(unsigned long byteOffset, unsigned short value, optional boolean littleEndian);
50 [StrictTypeChecking, RaisesException] void setInt32(unsigned long byteOffset, long value, optional boolean littleEndian);
51 [StrictTypeChecking, RaisesException] void setUint32(unsigned long byteOffset, unsigned long value, optional boolean littleEndian)
    [all...]
  /external/chromium_org/third_party/mesa/src/src/gallium/auxiliary/tgsi/
tgsi_scan.h 66 boolean reads_position; /**< does fragment shader read position? */
67 boolean reads_z; /**< does fragment shader read depth? */
68 boolean writes_z; /**< does fragment shader write Z value? */
69 boolean writes_stencil; /**< does fragment shader write stencil value? */
70 boolean writes_edgeflag; /**< vertex shader outputs edgeflag */
71 boolean uses_kill; /**< KIL or KILP instruction used? */
72 boolean uses_instanceid;
73 boolean uses_vertexid;
74 boolean origin_lower_left;
75 boolean pixel_center_integer
    [all...]
  /external/chromium_org/third_party/mesa/src/src/gallium/state_trackers/xorg/
xorg_composite.h 6 boolean xorg_composite_accelerated(int op,
11 boolean xorg_composite_bind_state(struct exa_context *exa,
25 boolean xorg_solid_bind_state(struct exa_context *exa,
  /external/chromium_org/third_party/mesa/src/src/gallium/winsys/i915/drm/
i915_drm_winsys.h 20 boolean dump_cmd;
22 boolean send_cmd;
57 boolean flinked;
  /external/mesa3d/src/gallium/auxiliary/tgsi/
tgsi_scan.h 66 boolean reads_position; /**< does fragment shader read position? */
67 boolean reads_z; /**< does fragment shader read depth? */
68 boolean writes_z; /**< does fragment shader write Z value? */
69 boolean writes_stencil; /**< does fragment shader write stencil value? */
70 boolean writes_edgeflag; /**< vertex shader outputs edgeflag */
71 boolean uses_kill; /**< KIL or KILP instruction used? */
72 boolean uses_instanceid;
73 boolean uses_vertexid;
74 boolean origin_lower_left;
75 boolean pixel_center_integer
    [all...]
  /external/mesa3d/src/gallium/state_trackers/xorg/
xorg_composite.h 6 boolean xorg_composite_accelerated(int op,
11 boolean xorg_composite_bind_state(struct exa_context *exa,
25 boolean xorg_solid_bind_state(struct exa_context *exa,
  /external/mesa3d/src/gallium/winsys/i915/drm/
i915_drm_winsys.h 20 boolean dump_cmd;
22 boolean send_cmd;
57 boolean flinked;
  /external/proguard/src/proguard/optimize/info/
ClassOptimizationInfo.java 33 private boolean isInstantiated = false;
34 private boolean isInstanceofed = false;
35 private boolean isDotClassed = false;
36 private boolean isCaught = false;
37 private boolean containsPackageVisibleMembers = false;
38 private boolean invokesPackageVisibleMembers = false;
48 public boolean isInstantiated()
60 public boolean isInstanceofed()
72 public boolean isDotClassed()
84 public boolean isCaught(
    [all...]
  /frameworks/base/media/tests/MediaFrameworkTest/src/com/android/mediaframeworktest/functional/mediaplayback/
MediaPlayerApiTest.java 37 private boolean duratoinWithinTolerence = false;
39 private boolean isWMAEnable = false;
40 private boolean isWMVEnable = false;
58 public boolean verifyDuration(int duration, int expectedDuration){
109 boolean currentPosition = CodecTest.getCurrentPosition(MediaNames.MP3CBR);
115 boolean currentPosition = CodecTest.getCurrentPosition(MediaNames.MP3VBR);
121 boolean currentPosition = CodecTest.getCurrentPosition(MediaNames.MIDI);
127 boolean currentPosition = CodecTest.getCurrentPosition(MediaNames.AMR);
133 boolean currentPosition = CodecTest.getCurrentPosition(MediaNames.OGG);
140 boolean isPaused = CodecTest.pause(MediaNames.MP3CBR);
    [all...]
  /packages/apps/Browser/src/com/android/browser/
WebViewController.java 62 boolean shouldOverrideUrlLoading(Tab tab, WebView view, String url);
64 boolean shouldOverrideKeyEvent(KeyEvent event);
66 boolean onUnhandledKeyEvent(KeyEvent event);
68 void doUpdateVisitedHistory(Tab tab, boolean isReload);
92 boolean shouldShowErrorConsole();
104 Tab openTab(String url, boolean incognito, boolean setActive,
105 boolean useCurrent);
107 Tab openTab(String url, Tab parent, boolean setActive,
108 boolean useCurrent)
    [all...]
  /packages/apps/Camera2/src/com/android/camera/crop/
CropExtras.java 40 private boolean mScaleUp = true;
43 private boolean mSetAsWallpaper = false;
44 private boolean mReturnData = false;
47 private boolean mShowWhenLocked = false;
51 public CropExtras(int outputX, int outputY, boolean scaleUp, int aspectX, int aspectY,
52 boolean setAsWallpaper, boolean returnData, Uri extraOutput, String outputFormat,
53 boolean showWhenLocked, float spotlightX, float spotlightY) {
82 public boolean getScaleUp() {
94 public boolean getSetAsWallpaper()
    [all...]
  /packages/apps/Gallery2/src/com/android/gallery3d/filtershow/crop/
CropExtras.java 40 private boolean mScaleUp = true;
43 private boolean mSetAsWallpaper = false;
44 private boolean mReturnData = false;
47 private boolean mShowWhenLocked = false;
51 public CropExtras(int outputX, int outputY, boolean scaleUp, int aspectX, int aspectY,
52 boolean setAsWallpaper, boolean returnData, Uri extraOutput, String outputFormat,
53 boolean showWhenLocked, float spotlightX, float spotlightY) {
82 public boolean getScaleUp() {
94 public boolean getSetAsWallpaper()
    [all...]
  /packages/apps/Nfc/src/com/android/nfc/
DeviceHost.java 78 boolean connect(int technology);
79 boolean reconnect();
80 boolean disconnect();
82 boolean presenceCheck();
83 boolean isPresent();
92 byte[] transceive(byte[] data, boolean raw, int[] returnCode);
94 boolean checkNdef(int[] out);
96 boolean writeNdef(byte[] data);
98 boolean formatNdef(byte[] key);
99 boolean isNdefFormatable()
    [all...]
  /packages/providers/ContactsProvider/tests/src/com/android/providers/contacts/
SynchronousContactsProvider2.java 35 private static Boolean sDataWiped = false;
37 private boolean mDataWipeEnabled = true;
39 private boolean mNetworkNotified;
40 private boolean mIsPhone = true;
41 private boolean mIsVoiceCapable = true;
56 public void setDataWipeEnabled(boolean flag) {
67 protected void notifyChange(boolean syncToNetwork) {
71 public boolean isNetworkNotified() {
75 public void setIsPhone(boolean flag) {
80 public boolean isPhone()
    [all...]
  /external/chromium_org/sync/test/android/javatests/src/org/chromium/sync/test/util/
AccountHolder.java 24 private final Map<String, Boolean> mHasBeenAccepted;
26 private final boolean mAlwaysAccept;
29 Map<String, Boolean> hasBeenAccepted, boolean alwaysAccept) {
38 new HashMap<String, Boolean>() : hasBeenAccepted;
49 public boolean hasAuthTokenRegistered(String authTokenType) {
57 public boolean hasBeenAccepted(String authTokenType) {
68 public boolean removeAuthToken(String authToken) {
90 public boolean equals(Object that) {
111 public AccountHolder withHasBeenAccepted(String authTokenType, boolean hasBeenAccepted)
    [all...]
  /external/robolectric/src/main/java/com/xtremelabs/robolectric/shadows/
ShadowWifiManager.java 23 private boolean accessWifiStatePermission = true;
24 private boolean wifiEnabled = true;
28 public boolean wasSaved;
29 private Pair<Integer, Boolean> lastEnabledNetwork;
32 public boolean setWifiEnabled(boolean wifiEnabled) {
39 public boolean isWifiEnabled() {
92 public boolean saveConfiguration() {
98 public boolean enableNetwork(int netId, boolean disableOthers)
    [all...]
  /external/robolectric/src/main/java/com/xtremelabs/robolectric/tester/android/util/
TestFragmentTransaction.java 13 private boolean replacing;
14 private boolean starting;
15 private boolean removing;
16 private boolean addedToBackStack;
17 private boolean hiding;
18 private boolean showing;
23 private boolean committedAllowingStateLoss;
99 public boolean isEmpty() {
133 public boolean isAddToBackStackAllowed() {
174 public boolean isAddedToBackStack()
    [all...]
  /external/bluetooth/bluedroid/stack/btm/
btm_ble_int.h 92 BOOLEAN scan_rsp;
123 BOOLEAN directed_conn;
137 BOOLEAN scan_rsp;
154 BOOLEAN busy;
178 BOOLEAN is_connected;
179 BOOLEAN in_use;
204 BOOLEAN in_use;
205 BOOLEAN to_add;
238 BOOLEAN enabled;
255 extern BOOLEAN btm_ble_cancel_remote_name(BD_ADDR remote_bda)
    [all...]
  /external/arduino/hardware/arduino/cores/arduino/
WCharacter.h 26 inline boolean isAlphaNumeric(int c) __attribute__((always_inline));
27 inline boolean isAlpha(int c) __attribute__((always_inline));
28 inline boolean isAscii(int c) __attribute__((always_inline));
29 inline boolean isWhitespace(int c) __attribute__((always_inline));
30 inline boolean isControl(int c) __attribute__((always_inline));
31 inline boolean isDigit(int c) __attribute__((always_inline));
32 inline boolean isGraph(int c) __attribute__((always_inline));
33 inline boolean isLowerCase(int c) __attribute__((always_inline));
34 inline boolean isPrintable(int c) __attribute__((always_inline));
35 inline boolean isPunct(int c) __attribute__((always_inline))
    [all...]

Completed in 674 milliseconds

1 2 3 4 5 67 8 91011>>