HomeSort by relevance Sort by last modified time
    Searched refs:flag (Results 26 - 50 of 1901) sorted by null

12 3 4 5 6 7 8 91011>>

  /hardware/samsung_slsi/exynos5/exynos_omx/openmax/exynos_omx/osal/
Exynos_OSAL_Library.h 37 void *Exynos_OSAL_dlopen(const char *filename, int flag);
Exynos_OSAL_Library.c 36 void *Exynos_OSAL_dlopen(const char *filename, int flag)
38 return dlopen(filename, flag);
  /system/core/sh/
alias.h 43 int flag; member in struct:alias
  /external/webkit/Source/WebKit/mac/WebView/
WebPreferencesPrivate.h 61 - (void)setDNSPrefetchingEnabled:(BOOL)flag;
64 - (void)setDeveloperExtrasEnabled:(BOOL)flag;
67 - (void)setAuthorAndUserStylesEnabled:(BOOL)flag;
70 - (void)setApplicationChromeModeEnabled:(BOOL)flag;
73 - (void)setUsesEncodingDetector:(BOOL)flag;
76 - (void)setRespectStandardStyleKeyEquivalents:(BOOL)flag;
79 - (void)setShowsURLsInToolTips:(BOOL)flag;
82 - (void)setTextAreasAreResizable:(BOOL)flag;
88 - (void)setShrinksStandaloneImagesToFit:(BOOL)flag;
109 - (void)setWebSecurityEnabled:(BOOL)flag;
    [all...]
  /bionic/libc/bionic/
siginterrupt.c 32 int siginterrupt(int sig, int flag)
38 if (flag)
  /external/bison/lib/
fd-safer-flag.c 30 error; in that case, return a duplicate of FD, closing FD. If FLAG
37 descriptors, e.g., fd_safer_flag (open ("file", O_RDONLY | flag), flag). */
40 fd_safer_flag (int fd, int flag)
44 int f = dup_safer_flag (fd, flag);
  /external/clang/test/CodeGenCXX/
conditional-expr-lvalue.cpp 2 void f(bool flag) {
6 (flag ? a : b) = 3;
  /external/llvm/examples/OCaml-Kaleidoscope/Chapter3/
myocamlbuild.ml 6 flag ["link"; "ocaml"; "g++"] (S[A"-cc"; A"g++"]);;
  /external/webkit/Tools/DumpRenderTree/
DumpRenderTreeFileDraggingSource.h 37 - (NSDragOperation)draggingSourceOperationMaskForLocal:(BOOL)flag;
  /frameworks/base/core/java/android/net/
InterfaceConfiguration.java 52 public boolean hasFlag(String flag) {
53 validateFlag(flag);
54 return mFlags.contains(flag);
57 public void clearFlag(String flag) {
58 validateFlag(flag);
59 mFlags.remove(flag);
62 public void setFlag(String flag) {
63 validateFlag(flag);
64 mFlags.add(flag);
134 for (String flag : mFlags)
    [all...]
  /external/openssh/openbsd-compat/
vis.c 45 (flag & VIS_GLOB) == 0) && isgraph((u_char)(c))) || \
46 ((flag & VIS_SP) == 0 && (c) == ' ') || \
47 ((flag & VIS_TAB) == 0 && (c) == '\t') || \
48 ((flag & VIS_NL) == 0 && (c) == '\n') || \
49 ((flag & VIS_SAFE) && ((c) == '\b' || \
57 vis(char *dst, int c, int flag, int nextc)
61 if (c == '\\' && (flag & VIS_NOSLASH) == 0)
67 if (flag & VIS_CSTYLE) {
111 if (((c & 0177) == ' ') || (flag & VIS_OCTAL) ||
112 ((flag & VIS_GLOB) && (c == '*' || c == '?' || c == '[' || c == '#')))
    [all...]
  /external/jmonkeyengine/engine/src/blender/com/jme3/scene/plugins/blender/constraints/
ConstraintLocLike.java 27 protected int flag; field in class:ConstraintLocLike
48 flag = ((Number) data.getFieldValue("flag")).intValue();
51 //swapping Y and X limits flag in the bitwise flag
52 int y = flag & LOCLIKE_Y;
53 int invY = flag & LOCLIKE_Y_INVERT;
54 int z = flag & LOCLIKE_Z;
55 int invZ = flag & LOCLIKE_Z_INVERT;
56 flag &= LOCLIKE_X | LOCLIKE_X_INVERT | LOCLIKE_OFFSET;//clear the other flags to swap them
    [all...]
ConstraintLocLimit.java 26 protected int flag; field in class:ConstraintLocLimit
47 flag = ((Number) data.getFieldValue("flag")).intValue();
56 //swapping Y and X limits flag in the bitwise flag
57 int ymin = flag & LIMIT_YMIN;
58 int ymax = flag & LIMIT_YMAX;
59 int zmin = flag & LIMIT_ZMIN;
60 int zmax = flag & LIMIT_ZMAX;
61 flag &= LIMIT_XMIN | LIMIT_XMAX;//clear the other flags to swap them
    [all...]
ConstraintSizeLimit.java 26 protected int flag; field in class:ConstraintSizeLimit
47 flag = ((Number) data.getFieldValue("flag")).intValue();
56 //swapping Y and X limits flag in the bitwise flag
57 int ymin = flag & LIMIT_YMIN;
58 int ymax = flag & LIMIT_YMAX;
59 int zmin = flag & LIMIT_ZMIN;
60 int zmax = flag & LIMIT_ZMAX;
61 flag &= LIMIT_XMIN | LIMIT_XMAX;//clear the other flags to swap them
    [all...]
  /external/blktrace/btt/
args.c 37 .flag = NULL,
43 .flag = NULL,
49 .flag = NULL,
55 .flag = NULL,
61 .flag = NULL,
67 .flag = NULL,
73 .flag = NULL,
79 .flag = NULL,
85 .flag = NULL,
91 .flag = NULL
    [all...]
  /external/chromium/testing/gmock/src/
gmock.cc 38 // control the flag values, like what Google Test does.
53 // Parses a string as a command line flag. The string should have the
57 // Returns the value of the flag, or NULL if the parsing failed.
59 const char* flag,
61 // str and flag must not be NULL.
62 if (str == NULL || flag == NULL) return NULL;
64 // The flag must start with "--gmock_".
65 const String flag_str = String::Format("--gmock_%s", flag);
69 // Skips the flag name.
78 // flag name, or if def_optional is false, there must be a '=' afte
    [all...]
  /external/chromium/testing/gtest/test/
gtest_env_var_test.py 64 def GetFlag(flag):
68 if flag is not None:
69 args += [flag]
73 def TestFlag(flag, test_val, default_val):
74 """Verifies that the given flag is affected by the corresponding env var."""
76 env_var = 'GTEST_' + flag.upper()
78 AssertEq(test_val, GetFlag(flag))
80 AssertEq(default_val, GetFlag(flag))
85 """Tests that environment variable should affect the corresponding flag."""
  /external/gtest/test/
gtest_env_var_test.py 64 def GetFlag(flag):
68 if flag is not None:
69 args += [flag]
73 def TestFlag(flag, test_val, default_val):
74 """Verifies that the given flag is affected by the corresponding env var."""
76 env_var = 'GTEST_' + flag.upper()
78 AssertEq(test_val, GetFlag(flag))
80 AssertEq(default_val, GetFlag(flag))
85 """Tests that environment variable should affect the corresponding flag."""
  /external/libvpx/libvpx/third_party/googletest/src/test/
gtest_env_var_test.py 64 def GetFlag(flag):
68 if flag is not None:
69 args += [flag]
73 def TestFlag(flag, test_val, default_val):
74 """Verifies that the given flag is affected by the corresponding env var."""
76 env_var = 'GTEST_' + flag.upper()
78 AssertEq(test_val, GetFlag(flag))
80 AssertEq(default_val, GetFlag(flag))
85 """Tests that environment variable should affect the corresponding flag."""
  /external/protobuf/gtest/test/
gtest_env_var_test.py 62 def GetFlag(flag):
66 if flag is not None:
67 args += [flag]
71 def TestFlag(flag, test_val, default_val):
72 """Verifies that the given flag is affected by the corresponding env var."""
74 env_var = 'GTEST_' + flag.upper()
76 AssertEq(test_val, GetFlag(flag))
78 AssertEq(default_val, GetFlag(flag))
83 """Tests that environment variable should affect the corresponding flag."""
  /external/kernel-headers/original/linux/nfsd/
debug.h 42 # define ifdebug(flag) if (nfsd_debug & NFSDDBG_##flag)
44 # define ifdebug(flag) if (0)
  /external/tcpdump/
send-ack.awk 22 # detect and add a flag character for 'anomalies':
36 flag = "*"
39 flag = "-"
41 flag = "#"
43 flag = " "
47 flag, $5, strtSeq
57 flag, $5, id
  /external/chromium/sdch/open-vcdiff/src/
gflags_reporting.cc 48 // called after all flag-values have been assigned, that is, after
74 "show help on the modules named by this flag value");
91 // Routines that pretty-print info about a flag. These use
93 // API exposes static info about a flag.
112 // Create a descriptive string for a flag.
114 string DescribeOneFlag(const CommandLineFlagInfo& flag) {
115 string main_part = (string(" -") + flag.name +
116 " (" + flag.description + ')');
161 AddString(string("type: ") + flag.type, &final_string, &chars_in_line);
162 // Append the effective default value (i.e., the value that the flag
    [all...]
  /external/open-vcdiff/gflags/src/
gflags_reporting.cc 48 // called after all flag-values have been assigned, that is, after
73 "show help on the modules named by this flag value");
91 // Routines that pretty-print info about a flag. These use
93 // API exposes static info about a flag.
112 // Create a descriptive string for a flag.
114 string DescribeOneFlag(const CommandLineFlagInfo& flag) {
115 string main_part = (string(" -") + flag.name +
116 " (" + flag.description + ')');
161 AddString(string("type: ") + flag.type, &final_string, &chars_in_line);
162 // Append the effective default value (i.e., the value that the flag
    [all...]
  /external/webkit/Source/WebKit/win/Interfaces/
IWebFrameView.idl 66 @param flag YES to allow the document to be scrolled, NO to disallow scrolling
67 - (void)setAllowsScrolling:(BOOL)flag;
69 HRESULT setAllowsScrolling([in] BOOL flag);
77 HRESULT allowsScrolling([out, retval] BOOL* flag);

Completed in 2845 milliseconds

12 3 4 5 6 7 8 91011>>