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

12 3 4 5 6 7 8 91011>>

  /external/chromium_org/third_party/mesa/src/src/gallium/tests/graw/
occlusion-query.c 17 static struct graw_info info; variable in typeref:struct:graw_info
91 handle = info.ctx->create_vertex_elements_state(info.ctx, 2, ve);
92 info.ctx->bind_vertex_elements_state(info.ctx, handle);
97 vbuf.buffer = pipe_buffer_create_with_data(info.ctx,
103 info.ctx->set_vertex_buffers(info.ctx, 1, &vbuf);
108 set_vertex_shader(struct graw_info *info)
121 handle = graw_parse_vertex_shader(info->ctx, text)
    [all...]
  /external/mesa3d/src/gallium/tests/graw/
occlusion-query.c 17 static struct graw_info info; variable in typeref:struct:graw_info
91 handle = info.ctx->create_vertex_elements_state(info.ctx, 2, ve);
92 info.ctx->bind_vertex_elements_state(info.ctx, handle);
97 vbuf.buffer = pipe_buffer_create_with_data(info.ctx,
103 info.ctx->set_vertex_buffers(info.ctx, 1, &vbuf);
108 set_vertex_shader(struct graw_info *info)
121 handle = graw_parse_vertex_shader(info->ctx, text)
    [all...]
  /external/chromium_org/third_party/WebKit/Source/bindings/core/v8/custom/
V8HistoryCustom.cpp 44 void V8History::stateAttributeGetterCustom(const v8::PropertyCallbackInfo<v8::Value>& info)
46 History* history = V8History::toImpl(info.Holder());
48 v8::Handle<v8::Value> value = V8HiddenValue::getHiddenValue(info.GetIsolate(), info.Holder(), V8HiddenValue::state(info.GetIsolate()));
51 v8SetReturnValue(info, value);
56 value = serialized ? serialized->deserialize(info.GetIsolate()) : v8::Handle<v8::Value>(v8::Null(info.GetIsolate()));
57 V8HiddenValue::setHiddenValue(info.GetIsolate(), info.Holder(), V8HiddenValue::state(info.GetIsolate()), value)
    [all...]
V8XSLTProcessorCustom.cpp 45 void V8XSLTProcessor::setParameterMethodCustom(const v8::FunctionCallbackInfo<v8::Value>& info)
47 if (isUndefinedOrNull(info[1]) || isUndefinedOrNull(info[2]))
50 TOSTRING_VOID(V8StringResource<>, namespaceURI, info[0]);
51 TOSTRING_VOID(V8StringResource<>, localName, info[1]);
52 TOSTRING_VOID(V8StringResource<>, value, info[2]);
54 XSLTProcessor* impl = V8XSLTProcessor::toImpl(info.Holder());
58 void V8XSLTProcessor::getParameterMethodCustom(const v8::FunctionCallbackInfo<v8::Value>& info)
60 if (isUndefinedOrNull(info[1]))
63 TOSTRING_VOID(V8StringResource<>, namespaceURI, info[0])
    [all...]
V8MessageEventCustom.cpp 45 void V8MessageEvent::dataAttributeGetterCustom(const v8::PropertyCallbackInfo<v8::Value>& info)
47 MessageEvent* event = V8MessageEvent::toImpl(info.Holder());
52 result = V8HiddenValue::getHiddenValue(info.GetIsolate(), info.Holder(), V8HiddenValue::data(info.GetIsolate()));
57 v8::Local<v8::Value> mainWorldData = V8HiddenValue::getHiddenValueFromMainWorldWrapper(info.GetIsolate(), event, V8HiddenValue::data(info.GetIsolate()));
59 event->setSerializedData(SerializedScriptValue::createAndSwallowExceptions(mainWorldData, info.GetIsolate()));
62 result = event->dataAsSerializedScriptValue()->deserialize(info.GetIsolate());
64 result = v8::Null(info.GetIsolate())
    [all...]
V8HTMLDocumentCustom.cpp 54 void V8HTMLDocument::openMethodCustom(const v8::FunctionCallbackInfo<v8::Value>& info)
56 HTMLDocument* htmlDocument = V8HTMLDocument::toImpl(info.Holder());
58 if (info.Length() > 2) {
61 v8::Local<v8::Context> context = toV8Context(frame.get(), DOMWrapperWorld::current(info.GetIsolate()));
67 v8::Local<v8::Value> function = global->Get(v8AtomicString(info.GetIsolate(), "open"));
73 V8ThrowException::throwTypeError("open is not a function", info.GetIsolate());
77 OwnPtr<v8::Local<v8::Value>[]> params = adoptArrayPtr(new v8::Local<v8::Value>[info.Length()]);
78 for (int i = 0; i < info.Length(); i++)
79 params[i] = info[i];
81 v8SetReturnValue(info, frame->script().callFunction(v8::Local<v8::Function>::Cast(function), global, info.Length(), para (…)
    [all...]
  /external/iptables/extensions/
libxt_length.c 25 struct xt_length_info *info = cb->data; local
28 info->min = cb->val.u16_range[0];
29 info->max = cb->val.u16_range[0];
31 info->max = cb->val.u16_range[1];
33 info->invert = 1;
39 const struct xt_length_info *info = (void *)match->data; local
41 printf(" length %s", info->invert ? "!" : "");
42 if (info->min == info->max)
43 printf("%u", info->min)
50 const struct xt_length_info *info = (void *)match->data; local
    [all...]
libxt_HMARK.c 143 hmark_parse(const char *type, size_t len, struct xt_hmark_info *info,
147 info->flags |= XT_HMARK_FLAG(XT_HMARK_CT);
150 memset(&info->src_mask, 0xff, sizeof(info->src_mask));
151 info->flags |= XT_HMARK_FLAG(XT_HMARK_SADDR_MASK);
154 memset(&info->dst_mask, 0xff, sizeof(info->dst_mask));
155 info->flags |= XT_HMARK_FLAG(XT_HMARK_DADDR_MASK);
158 memset(&info->port_mask.p16.src, 0xff,
159 sizeof(info->port_mask.p16.src))
185 struct xt_hmark_info *info = cb->data; local
206 struct xt_hmark_info *info = cb->data; local
313 const struct xt_hmark_info *info = local
334 const struct xt_hmark_info *info = local
386 const struct xt_hmark_info *info = local
403 const struct xt_hmark_info *info = local
    [all...]
libxt_physdev.c 42 struct xt_physdev_info *info = cb->data; local
47 xtables_parse_interface(cb->arg, info->physindev,
48 (unsigned char *)info->in_mask);
50 info->invert |= XT_PHYSDEV_OP_IN;
51 info->bitmask |= XT_PHYSDEV_OP_IN;
54 xtables_parse_interface(cb->arg, info->physoutdev,
55 (unsigned char *)info->out_mask);
57 info->invert |= XT_PHYSDEV_OP_OUT;
58 info->bitmask |= XT_PHYSDEV_OP_OUT;
61 info->bitmask |= XT_PHYSDEV_OP_ISIN
87 const struct xt_physdev_info *info = (const void *)match->data; local
110 const struct xt_physdev_info *info = (const void *)match->data; local
    [all...]
  /external/chromium_org/ppapi/nacl_irt/
irt_start.cc 11 void nacl_irt_start(uint32_t* info) {
12 nacl_irt_init(info);
25 nacl_irt_enter_user_code(info, chrome_irt_query);
  /cts/tests/tests/view/src/android/view/inputmethod/cts/
EditorInfoTest.java 31 EditorInfo info = new EditorInfo(); local
33 info.actionId = 1;
34 info.actionLabel = "actionLabel";
35 info.fieldId = 2;
36 info.fieldName = "fieldName";
37 info.hintText = "hintText";
38 info.imeOptions = EditorInfo.IME_FLAG_NO_ENTER_ACTION;
39 info.initialCapsMode = TextUtils.CAP_MODE_CHARACTERS;
40 info.initialSelEnd = 10;
41 info.initialSelStart = 0
    [all...]
  /external/chromium_org/components/storage_monitor/
removable_storage_observer.h 18 virtual void OnRemovableStorageAttached(const StorageInfo& info) {}
22 virtual void OnRemovableStorageDetached(const StorageInfo& info) {}
mock_removable_storage_observer.cc 17 const StorageInfo& info) {
19 last_attached_ = info;
23 const StorageInfo& info) {
25 last_detached_ = info;
  /external/libcxxabi/src/
private_typeinfo.cpp 238 __dynamic_cast_info info = {thrown_class_type, 0, this, -1, 0};
239 info.number_of_dst_type = 1;
240 thrown_class_type->has_unambiguous_public_base(&info, adjustedPtr, public_path);
241 if (info.path_dst_ptr_to_static_ptr == public_path)
243 adjustedPtr = const_cast<void*>(info.dst_ptr_leading_to_static_ptr);
252 __class_type_info::process_found_base_class(__dynamic_cast_info* info,
256 if (info->dst_ptr_leading_to_static_ptr == 0)
259 info->dst_ptr_leading_to_static_ptr = adjustedPtr;
260 info->path_dst_ptr_to_static_ptr = path_below;
261 info->number_to_static_ptr = 1
505 __dynamic_cast_info info = {dst_type, static_ptr, static_type, src2dst_offset, 0}; local
    [all...]
  /external/chromium_org/third_party/WebKit/Source/bindings/modules/v8/custom/
V8SubtleCryptoCustom.cpp 21 void verify1Method(const v8::FunctionCallbackInfo<v8::Value>& info)
23 SubtleCrypto* impl = V8SubtleCrypto::toImpl(info.Holder());
24 TONATIVE_VOID(Dictionary, algorithm, Dictionary(info[0], info.GetIsolate()));
26 V8ThrowException::throwTypeError(ExceptionMessages::failedToExecute("verify", "SubtleCrypto", "parameter 1 ('algorithm') is not an object."), info.GetIsolate());
29 TONATIVE_VOID(CryptoKey*, key, V8CryptoKey::toImplWithTypeCheck(info.GetIsolate(), info[1]));
30 TONATIVE_VOID(ArrayBuffer*, signature, info[2]->IsArrayBuffer() ? V8ArrayBuffer::toImpl(v8::Handle<v8::ArrayBuffer>::Cast(info[2])) : 0);
31 TONATIVE_VOID(ArrayBuffer*, data, info[3]->IsArrayBuffer() ? V8ArrayBuffer::toImpl(v8::Handle<v8::ArrayBuffer>::Cast(info[3])) : 0)
    [all...]
  /external/chromium_org/third_party/WebKit/Source/platform/plugins/
PluginListBuilder.cpp 40 PluginInfo info; local
41 info.name = name;
42 info.desc = description;
43 info.file = fileName;
44 m_results->append(info);
49 MimeClassInfo info; local
50 info.type = name;
51 info.desc = description;
52 m_results->last().mimes.append(info);
57 MimeClassInfo& info = m_results->last().mimes.last() local
    [all...]
  /external/e2fsprogs/lib/ss/
get_readline.c 23 static void ss_release_readline(ss_data *info)
26 if (!info->readline_handle)
29 info->readline = 0;
30 info->add_history = 0;
31 info->redisplay = 0;
32 info->rl_completion_matches = 0;
33 dlclose(info->readline_handle);
34 info->readline_handle = 0;
45 ss_data *info = ss_info(sci_idx); local
50 if (info->readline_handle
    [all...]
  /external/chromium_org/content/browser/resources/gpu/
info_view.css 5 #info-view {
11 #info-view * {
15 #info-view[selected] {
20 #info-view h3,
21 #info-view ul {
26 #info-view > div {
30 #info-view .row-title {
34 #info-view table {
41 #info-view table,
42 #info-view th
    [all...]
  /external/chromium_org/third_party/WebKit/Source/modules/webdatabase/
SQLTransactionCoordinator.cpp 59 void SQLTransactionCoordinator::processPendingTransactions(CoordinationInfo& info)
61 if (info.activeWriteTransaction || info.pendingTransactions.isEmpty())
64 RefPtrWillBeRawPtr<SQLTransactionBackend> firstPendingTransaction = info.pendingTransactions.first();
67 firstPendingTransaction = info.pendingTransactions.takeFirst();
68 info.activeReadTransactions.add(firstPendingTransaction);
70 } while (!info.pendingTransactions.isEmpty() && info.pendingTransactions.first()->isReadOnly());
71 } else if (info.activeReadTransactions.isEmpty()) {
72 info.pendingTransactions.removeFirst()
87 CoordinationInfo& info = m_coordinationInfoMap.add(dbIdentifier, CoordinationInfo()).storedValue->value; local
91 CoordinationInfo& info = coordinationInfoIterator->value; local
107 CoordinationInfo& info = coordinationInfoIterator->value; local
129 CoordinationInfo& info = coordinationInfoIterator->value; local
    [all...]
  /external/chromium_org/gpu/config/
gpu_control_list_number_info_unittest.cc 37 FloatInfo info(op[i], value1, value2);
38 EXPECT_TRUE(info.IsValid());
50 FloatInfo info("=", value[i], std::string());
51 EXPECT_TRUE(info.IsValid());
64 FloatInfo info(op[i], std::string(), std::string());
65 EXPECT_FALSE(info.IsValid());
68 FloatInfo info("between", "3.14", std::string());
69 EXPECT_FALSE(info.IsValid());
79 FloatInfo info("=", value[i], std::string());
80 EXPECT_FALSE(info.IsValid())
    [all...]
  /external/chromium_org/third_party/harfbuzz-ng/src/
hb-ot-layout-private.hh 188 _hb_glyph_info_set_unicode_props (hb_glyph_info_t *info, hb_unicode_funcs_t *unicode)
191 info->unicode_props0() = ((unsigned int) unicode->general_category (info->codepoint)) |
192 (unicode->is_default_ignorable (info->codepoint) ? MASK0_IGNORABLE : 0) |
193 (info->codepoint == 0x200Cu ? MASK0_ZWNJ : 0) |
194 (info->codepoint == 0x200Du ? MASK0_ZWJ : 0);
195 info->unicode_props1() = unicode->modified_combining_class (info->codepoint);
199 _hb_glyph_info_set_general_category (hb_glyph_info_t *info,
202 info->unicode_props0() = (unsigned int) gen_cat | ((info->unicode_props0()) & ~MASK0_GEN_CAT)
    [all...]
  /external/harfbuzz_ng/src/
hb-ot-layout-private.hh 188 _hb_glyph_info_set_unicode_props (hb_glyph_info_t *info, hb_unicode_funcs_t *unicode)
191 info->unicode_props0() = ((unsigned int) unicode->general_category (info->codepoint)) |
192 (unicode->is_default_ignorable (info->codepoint) ? MASK0_IGNORABLE : 0) |
193 (info->codepoint == 0x200Cu ? MASK0_ZWNJ : 0) |
194 (info->codepoint == 0x200Du ? MASK0_ZWJ : 0);
195 info->unicode_props1() = unicode->modified_combining_class (info->codepoint);
199 _hb_glyph_info_set_general_category (hb_glyph_info_t *info,
202 info->unicode_props0() = (unsigned int) gen_cat | ((info->unicode_props0()) & ~MASK0_GEN_CAT)
    [all...]
  /external/aac/libFDK/include/
FDK_core.h 81 amm-info@iis.fraunhofer.de
103 int FDK_toolsGetLibInfo(LIB_INFO *info);
  /external/chromium_org/third_party/mesa/src/src/gallium/auxiliary/draw/
draw_fs.h 38 struct tgsi_shader_info info; member in struct:draw_fragment_shader
  /external/mesa3d/src/gallium/auxiliary/draw/
draw_fs.h 38 struct tgsi_shader_info info; member in struct:draw_fragment_shader

Completed in 993 milliseconds

12 3 4 5 6 7 8 91011>>