Home
last modified time | relevance | path

Searched refs:value (Results 15151 - 15175 of 31071) sorted by relevance

1...<<601602603604605606607608609610>>...1243

/third_party/libphonenumber/metadata/src/test/java/com/google/i18n/phonenumbers/metadata/table/
H A DAssignmentTest.java63 assertThat(a.value()).hasValue(v); in assertAssignment()
68 assertThat(a.value()).isEmpty(); in assertUnassignment()
/third_party/rust/crates/log/src/
H A Dmacros.rs33 (target: $target:expr, $lvl:expr, $($key:tt = $value:expr),+; $($arg:tt)+) => ({
40 $crate::__private_api::Option::Some(&[$((__log_key!($key), &$value)),+])
/third_party/rust/crates/codespan/codespan/src/
H A Dindex.rs260 pub fn from_str_len(value: &str) -> ByteOffset { in from_str_len()
261 ByteOffset(value.len() as RawOffset) in from_str_len()
/third_party/python/Tools/c-analyzer/c_parser/preprocessor/
H A D__init__.py111 for pattern, *value in file_values or ():
113 yield value
/third_party/python/Tools/scripts/
H A Dparse_html5_entities.py28 for name, value in entities.items():
29 new_html5[name.lstrip('&')] = value['characters']
/third_party/python/Lib/ctypes/test/
H A Dtest_refcounts.py22 def callback(value):
23 #print "called back with", value
24 return value
H A Dtest_python_api.py71 self.assertEqual(buf.value, b"Hello from ctypes")
74 self.assertEqual(buf.value, b"Hello from ctypes (1, 2, 3)")
/third_party/pulseaudio/src/pulse/
H A Dformat.h70 /**< Valid encoding types must be less than this value */
133 * pa_format_info_snprint(). Please note that this value can change
152 * a parameter value, that parameter must be left unspecified in the
167 /** Represents the type of value type of a property on a \ref pa_format_info. \since 2.0 */
241 void pa_format_info_set_prop_int(pa_format_info *f, const char *key, int value);
244 /** Sets a property which can have any value in a given integer range on the given format info. \since 1.0 */
247 void pa_format_info_set_prop_string(pa_format_info *f, const char *key, const char *value);
/third_party/python/Include/
H A Dmodsupport.h44 // Add an attribute with name 'name' and value 'obj' to the module 'mod.
47 PyAPI_FUNC(int) PyModule_AddObjectRef(PyObject *mod, const char *name, PyObject *value);
51 PyAPI_FUNC(int) PyModule_AddObject(PyObject *mod, const char *, PyObject *value);
82 The symbol PYTHON_API_STRING defines the same value as a string
120 Python 3, it will stay at the value of 3; changes to the limited API
/third_party/python/Lib/
H A D_threading_local.py225 def __setattr__(self, name, value):
231 return object.__setattr__(self, name, value)
H A Drlcompleter.py189 if (value := getattr(thisobject, word, None)) is not None:
190 matches.append(self._callable_postfix(value, match))
/third_party/python/Lib/re/
H A D_constants.py57 def __new__(cls, value, name):
58 self = super(_NamedIntConstant, cls).__new__(cls, value)
/third_party/python/Lib/lib2to3/fixes/
H A Dfix_operator.py79 method.value = name
89 method = getattr(self, "_" + results["method"][0].value)
/third_party/python/Include/internal/
H A Dpycore_dict.h69 /* Consumes references to key and value */
70 extern int _PyDict_SetItem_Take2(PyDictObject *op, PyObject *key, PyObject *value);
71 extern int _PyObjectDict_SetItem(PyTypeObject *tp, PyObject **dictptr, PyObject *name, PyObject *value);
/third_party/openssl/crypto/ocsp/
H A Docsp_local.h105 } value; member
132 } value; member
172 * Note 1: The value for "signature" is specified in the OCSP rfc2560 as
173 * follows: "The value for the signature SHALL be computed on the hash of
/third_party/vk-gl-cts/external/vulkancts/modules/vulkan/image/
H A DvktImageTexture.cpp104 static inline deUint32 minify (deUint32 value, deUint32 mipmapLevel) in minify() argument
106 return deMax32(value >> mipmapLevel, 1); in minify()
/third_party/vk-gl-cts/external/vulkancts/modules_no_buildgn/vulkan/image/
H A DvktImageTexture.cpp104 static inline deUint32 minify (deUint32 value, deUint32 mipmapLevel) in minify() argument
106 return deMax32(value >> mipmapLevel, 1); in minify()
/third_party/skia/third_party/externals/angle2/src/libANGLE/
H A DDevice.cpp104 Error Device::getAttribute(EGLint attribute, EGLAttrib *value) in getAttribute() argument
109 *value = reinterpret_cast<EGLAttrib>(nativeAttribute); in getAttribute()
H A DCLProgram.h43 cl_int getInfo(ProgramInfo name, size_t valueSize, void *value, size_t *valueSizeRet) const;
48 void *value,
/third_party/skia/third_party/externals/angle2/src/libANGLE/renderer/gl/wgl/
H A DWindowSurfaceWGL.cpp121 egl::Error WindowSurfaceWGL::querySurfacePointerANGLE(EGLint attribute, void **value) in querySurfacePointerANGLE() argument
123 *value = nullptr; in querySurfacePointerANGLE()
/third_party/skia/third_party/externals/angle2/src/compiler/translator/TranslatorMetalDirect/
H A DDebugSink.h107 DebugSink &operator<<(const T &value) in operator <<() argument
110 mParent << value; in operator <<() local
/third_party/skia/third_party/externals/angle2/src/common/
H A DFixedVector_unittest.cpp129 for (int value : vec) in TEST()
131 EXPECT_EQ(vistedCount, value); in TEST()
H A Dgen_uniform_type_table.py108 def cpp_bool(value):
109 return "true" if value else "false"
/third_party/skia/third_party/externals/angle2/src/libANGLE/renderer/gl/glx/
H A DFunctionsGLX.h58 int getFBConfigAttrib(glx::FBConfig config, int attribute, int *value) const;
64 void queryDrawable(glx::Drawable drawable, int attribute, unsigned int *value) const;
/third_party/vk-gl-cts/external/openglcts/modules/gl/
H A Dgl4cShaderViewportLayerArrayTests.hpp71 void adaptShaderToPipeline(std::string& shader, const std::string& varKey, int value);
72 void adaptShaderToPipeline(std::string& shader, const std::string& varKey, const std::string& value);
105 /** Test verifies functionality of defining viewport by changing value of gl_ViewportIndex in
164 /** Test verifies functionality of defining rendering layer by changing value of gl_Layer in
180 /** Test verifies that defining rendering layer by changing value of gl_Layer in

Completed in 20 milliseconds

1...<<601602603604605606607608609610>>...1243