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

1 23 4 5 6 7 8 91011>>

  /external/snakeyaml/src/test/java/org/yaml/snakeyaml/types/
BoolTagTest.java 34 assertEquals(Boolean.TRUE, getMapValue("canonical: true", "canonical"));
36 assertEquals(Boolean.TRUE, getMapValue("logical: True", "logical"));
37 assertEquals(Boolean.TRUE, getMapValue("option: on", "option"));
41 assertEquals(Boolean.TRUE, getMapValue("canonical: Yes", "canonical"));
42 assertEquals(Boolean.TRUE, getMapValue("canonical: yes", "canonical"));
43 assertEquals(Boolean.TRUE, getMapValue("canonical: YES", "canonical"));
51 assertEquals(Boolean.TRUE, getMapValue("canonical: ON", "canonical"));
52 assertEquals(Boolean.TRUE, getMapValue("canonical: On", "canonical"))
    [all...]
  /device/linaro/bootloader/edk2/QuarkPlatformPkg/
Quark.fdf 275 MEMORY_MAPPED = TRUE
276 STICKY_WRITE = TRUE
277 LOCK_CAP = TRUE
278 LOCK_STATUS = TRUE
279 WRITE_DISABLED_CAP = TRUE
280 WRITE_ENABLED_CAP = TRUE
281 WRITE_STATUS = TRUE
282 WRITE_LOCK_CAP = TRUE
283 WRITE_LOCK_STATUS = TRUE
284 READ_DISABLED_CAP = TRUE
    [all...]
  /external/swiftshader/src/D3D8/
D3D8.cpp 46 return TRUE;
91 return TRUE;
98 return TRUE;
  /external/icu/icu4c/source/common/
usetiter.cpp 42 * @return true if there was another element in the set.
53 return TRUE;
59 return TRUE;
65 return TRUE;
69 * @return true if there was another element in the set.
85 return TRUE;
92 return TRUE;
98 return TRUE;
  /device/linaro/bootloader/edk2/AppPkg/Applications/Sockets/SetSockOpt/
SetSockOpt.c 44 { "SO_BROADCAST", SO_BROADCAST, SOL_SOCKET, TRUE, DATA_TYPE_UNKNOWN },
45 { "SO_DEBUG", SO_DEBUG, SOL_SOCKET, TRUE, DATA_TYPE_UNKNOWN },
46 { "SO_DONTROUTE", SO_DONTROUTE, SOL_SOCKET, TRUE, DATA_TYPE_UNKNOWN },
48 { "SO_KEEPALIVE", SO_KEEPALIVE, SOL_SOCKET, TRUE, DATA_TYPE_UNKNOWN },
49 { "SO_OOBINLINE", SO_OOBINLINE, SOL_SOCKET, TRUE, DATA_TYPE_UNKNOWN },
50 { "SO_OVERFLOWED", SO_OVERFLOWED, SOL_SOCKET, TRUE, DATA_TYPE_UNKNOWN },
51 { "SO_RCVBUF", SO_RCVBUF, SOL_SOCKET, TRUE, DATA_TYPE_INT32_DECIMAL },
52 { "SO_RCVLOWAT", SO_RCVLOWAT, SOL_SOCKET, TRUE, DATA_TYPE_UNKNOWN },
53 { "SO_RCVTIMEO", SO_RCVTIMEO, SOL_SOCKET, TRUE, DATA_TYPE_TIMEVAL },
54 { "SO_REUSEADDR", SO_REUSEADDR, SOL_SOCKET, TRUE, DATA_TYPE_UNKNOWN },
    [all...]
  /device/linaro/bootloader/edk2/OvmfPkg/Library/QemuFwCfgLib/
QemuFwCfgSec.c 30 @retval TRUE The interface is available
57 return TRUE;
67 @retval TRUE The interface is available internally.
76 // We always return TRUE, because the consumer of this library ought to have
80 return TRUE;
87 @retval TRUE The DMA-like access method is available.
  /device/linaro/bootloader/edk2/ShellPkg/Library/UefiShellLevel2CommandsLib/
UefiShellLevel2CommandsLib.c 87 ShellCommandRegisterCommandName(L"attrib", ShellCommandRunAttrib , ShellCommandGetManFileNameLevel2, 2, L"", TRUE, gShellLevel2HiiHandle, STRING_TOKEN(STR_GET_HELP_ATTRIB) );
88 ShellCommandRegisterCommandName(L"cd", ShellCommandRunCd , ShellCommandGetManFileNameLevel2, 2, L"", TRUE, gShellLevel2HiiHandle, STRING_TOKEN(STR_GET_HELP_CD) );
89 ShellCommandRegisterCommandName(L"cp", ShellCommandRunCp , ShellCommandGetManFileNameLevel2, 2, L"", TRUE, gShellLevel2HiiHandle, STRING_TOKEN(STR_GET_HELP_CP) );
90 ShellCommandRegisterCommandName(L"load", ShellCommandRunLoad , ShellCommandGetManFileNameLevel2, 2, L"", TRUE, gShellLevel2HiiHandle, STRING_TOKEN(STR_GET_HELP_LOAD) );
91 ShellCommandRegisterCommandName(L"map", ShellCommandRunMap , ShellCommandGetManFileNameLevel2, 2, L"", TRUE, gShellLevel2HiiHandle, STRING_TOKEN(STR_GET_HELP_MAP) );
92 ShellCommandRegisterCommandName(L"mkdir", ShellCommandRunMkDir , ShellCommandGetManFileNameLevel2, 2, L"", TRUE, gShellLevel2HiiHandle, STRING_TOKEN(STR_GET_HELP_MKDIR) );
93 ShellCommandRegisterCommandName(L"mv", ShellCommandRunMv , ShellCommandGetManFileNameLevel2, 2, L"", TRUE, gShellLevel2HiiHandle, STRING_TOKEN(STR_GET_HELP_MV) );
94 ShellCommandRegisterCommandName(L"parse", ShellCommandRunParse , ShellCommandGetManFileNameLevel2, 2, L"", TRUE, gShellLevel2HiiHandle, STRING_TOKEN(STR_GET_HELP_PARSE) );
95 ShellCommandRegisterCommandName(L"reset", ShellCommandRunReset , ShellCommandGetManFileNameLevel2, 2, L"", TRUE, gShellLevel2HiiHandle, STRING_TOKEN(STR_GET_HELP_RESET) );
97 ShellCommandRegisterCommandName(L"ls", ShellCommandRunLs , ShellCommandGetManFileNameLevel2, 2, L"", TRUE, gShellLevel2HiiHandle, STRING_TOKEN(STR_GET_HELP_LS) );
    [all...]
  /device/linaro/bootloader/edk2/Vlv2TbltDevicePkg/FspSupport/BootModePei/
BootModePei.inf 45 TRUE
  /external/compiler-rt/test/msan/Linux/
sunrpc.cc 30 assert(res == TRUE);
36 assert(res == TRUE);
  /external/guava/guava-tests/test/com/google/common/cache/
ForwardingLoadingCacheTest.java 57 expect(mock.get("key")).andReturn(Boolean.TRUE);
59 assertSame(Boolean.TRUE, forward.get("key"));
64 expect(mock.getUnchecked("key")).andReturn(Boolean.TRUE);
66 assertSame(Boolean.TRUE, forward.getUnchecked("key"));
71 expect(mock.getAll(ImmutableList.of("key"))).andReturn(ImmutableMap.of("key", Boolean.TRUE));
73 assertEquals(ImmutableMap.of("key", Boolean.TRUE), forward.getAll(ImmutableList.of("key")));
78 expect(mock.apply("key")).andReturn(Boolean.TRUE);
80 assertSame(Boolean.TRUE, forward.apply("key"));
  /external/libpng/contrib/gregbook/
readpng.h 56 #ifndef TRUE
57 # define TRUE 1
  /external/ltp/testcases/network/tcp_cmds/include/
netdefs.h 66 #ifndef TRUE
67 #define TRUE 1
  /frameworks/av/media/libstagefright/codecs/amrwb/src/
pv_amr_wb_type_defs.h 142 #ifndef TRUE
143 #define TRUE 1
  /device/linaro/bootloader/edk2/OvmfPkg/
OvmfPkgIa32.fdf 103 MEMORY_MAPPED = TRUE
104 STICKY_WRITE = TRUE
105 LOCK_CAP = TRUE
106 LOCK_STATUS = TRUE
107 WRITE_DISABLED_CAP = TRUE
108 WRITE_ENABLED_CAP = TRUE
109 WRITE_STATUS = TRUE
110 WRITE_LOCK_CAP = TRUE
111 WRITE_LOCK_STATUS = TRUE
112 READ_DISABLED_CAP = TRUE
    [all...]
OvmfPkgIa32X64.fdf 103 MEMORY_MAPPED = TRUE
104 STICKY_WRITE = TRUE
105 LOCK_CAP = TRUE
106 LOCK_STATUS = TRUE
107 WRITE_DISABLED_CAP = TRUE
108 WRITE_ENABLED_CAP = TRUE
109 WRITE_STATUS = TRUE
110 WRITE_LOCK_CAP = TRUE
111 WRITE_LOCK_STATUS = TRUE
112 READ_DISABLED_CAP = TRUE
    [all...]
OvmfPkgX64.fdf 103 MEMORY_MAPPED = TRUE
104 STICKY_WRITE = TRUE
105 LOCK_CAP = TRUE
106 LOCK_STATUS = TRUE
107 WRITE_DISABLED_CAP = TRUE
108 WRITE_ENABLED_CAP = TRUE
109 WRITE_STATUS = TRUE
110 WRITE_LOCK_CAP = TRUE
111 WRITE_LOCK_STATUS = TRUE
112 READ_DISABLED_CAP = TRUE
    [all...]
  /external/cblas/testing/
c_c2chke.c 7 int link_xerbla=TRUE;
45 cblas_ok = TRUE ;
79 cblas_info = 2; RowMajorStrg = TRUE; RowMajorStrg = TRUE;
83 cblas_info = 3; RowMajorStrg = TRUE;
87 cblas_info = 4; RowMajorStrg = TRUE;
91 cblas_info = 7; RowMajorStrg = TRUE;
95 cblas_info = 9; RowMajorStrg = TRUE;
99 cblas_info = 12; RowMajorStrg = TRUE;
141 cblas_info = 2; RowMajorStrg = TRUE;
    [all...]
c_z2chke.c 7 int link_xerbla=TRUE;
45 cblas_ok = TRUE ;
79 cblas_info = 2; RowMajorStrg = TRUE; RowMajorStrg = TRUE;
83 cblas_info = 3; RowMajorStrg = TRUE;
87 cblas_info = 4; RowMajorStrg = TRUE;
91 cblas_info = 7; RowMajorStrg = TRUE;
95 cblas_info = 9; RowMajorStrg = TRUE;
99 cblas_info = 12; RowMajorStrg = TRUE;
141 cblas_info = 2; RowMajorStrg = TRUE;
    [all...]
c_d2chke.c 7 int link_xerbla=TRUE;
43 cblas_ok = TRUE ;
77 cblas_info = 2; RowMajorStrg = TRUE; RowMajorStrg = TRUE;
81 cblas_info = 3; RowMajorStrg = TRUE;
85 cblas_info = 4; RowMajorStrg = TRUE;
89 cblas_info = 7; RowMajorStrg = TRUE;
93 cblas_info = 9; RowMajorStrg = TRUE;
97 cblas_info = 12; RowMajorStrg = TRUE;
139 cblas_info = 2; RowMajorStrg = TRUE;
    [all...]
c_s2chke.c 7 int link_xerbla=TRUE;
43 cblas_ok = TRUE ;
77 cblas_info = 2; RowMajorStrg = TRUE; RowMajorStrg = TRUE;
81 cblas_info = 3; RowMajorStrg = TRUE;
85 cblas_info = 4; RowMajorStrg = TRUE;
89 cblas_info = 7; RowMajorStrg = TRUE;
93 cblas_info = 9; RowMajorStrg = TRUE;
97 cblas_info = 12; RowMajorStrg = TRUE;
139 cblas_info = 2; RowMajorStrg = TRUE;
    [all...]
  /device/linaro/bootloader/edk2/CryptoPkg/Library/BaseCryptLib/Pk/
CryptRsaExt.c 49 @retval TRUE RSA key component was retrieved successfully.
85 return TRUE;
95 return TRUE;
105 return TRUE;
115 return TRUE;
125 return TRUE;
135 return TRUE;
145 return TRUE;
155 return TRUE;
177 return TRUE;
    [all...]
  /external/curl/src/
tool_cb_wrt.c 34 /* create a local file for writing, return TRUE on success */
63 outs->s_isreg = TRUE;
64 outs->fopened = TRUE;
68 return TRUE;
98 is_tty = TRUE;
123 check_fails = TRUE;
125 check_fails = TRUE;
127 check_fails = TRUE;
129 check_fails = TRUE;
131 check_fails = TRUE;
    [all...]
  /external/mesa3d/src/gallium/drivers/r300/
r300_chipset.c 93 caps->high_second_pipe = TRUE;
95 caps->has_cmask = TRUE; /* guessed because there is also HiZ */
102 caps->high_second_pipe = TRUE;
108 caps->high_second_pipe = TRUE;
110 caps->has_cmask = TRUE; /* guessed because there is also HiZ */
133 caps->has_cmask = TRUE; /* guessed because there is also HiZ */
140 caps->has_cmask = TRUE;
147 caps->has_cmask = TRUE;
154 caps->has_cmask = TRUE;
163 caps->has_cmask = TRUE;
    [all...]
  /external/icu/icu4c/source/i18n/
csdetect.cpp 69 return TRUE;
88 new CSRecognizerInfo(new CharsetRecog_UTF8(), TRUE),
90 new CSRecognizerInfo(new CharsetRecog_UTF_16_BE(), TRUE),
91 new CSRecognizerInfo(new CharsetRecog_UTF_16_LE(), TRUE),
92 new CSRecognizerInfo(new CharsetRecog_UTF_32_BE(), TRUE),
93 new CSRecognizerInfo(new CharsetRecog_UTF_32_LE(), TRUE),
95 new CSRecognizerInfo(new CharsetRecog_8859_1(), TRUE),
96 new CSRecognizerInfo(new CharsetRecog_8859_2(), TRUE),
97 new CSRecognizerInfo(new CharsetRecog_8859_5_ru(), TRUE),
98 new CSRecognizerInfo(new CharsetRecog_8859_6_ar(), TRUE),
    [all...]
  /build/kati/testcase/
or.mk 0 TRUE:=foo
9 $(info $(or ${TRUE}, $(info FAIL_2)))

Completed in 2656 milliseconds

1 23 4 5 6 7 8 91011>>