HomeSort by relevance Sort by last modified time
    Searched defs:id (Results 201 - 225 of 4561) sorted by null

1 2 3 4 5 6 7 891011>>

  /external/chromium_org/third_party/angle/tests/preprocessor_tests/
extension_test.cpp 72 pp::Diagnostics::ID id; member in struct:ExtensionTestParam
90 EXPECT_CALL(mDiagnostics, print(param.id, pp::SourceLocation(0, 1), _));
  /external/chromium_org/third_party/libjingle/source/talk/media/devices/
mobiledevicemanager.cc 56 char id[256]; local
59 if (info->GetDeviceName(i, name, ARRAY_SIZE(name), id, ARRAY_SIZE(id)))
61 devs->push_back(Device(name, id));
  /external/chromium_org/third_party/skia/src/gpu/
GrStencilBuffer.cpp 42 GrCacheID id; local
43 gen_cache_id(width, height, sampleCnt, &id);
46 return GrResourceKey(id, gStencilBufferResourceType, 0);
  /external/chromium_org/third_party/skia/src/image/
SkImage.cpp 25 uint32_t id; local
27 id = sk_atomic_inc(&gUniqueID) + 1;
28 } while (0 == id);
29 return id;
  /external/chromium_org/webkit/browser/database/
database_util_unittest.cc 32 std::string id = webkit_database::GetIdentifierFromOrigin(origin_url); local
33 return webkit_database::GetOriginFromIdentifier(id);
37 const std::string& id) {
39 DatabaseUtil::IsValidOriginIdentifier(id));
68 TestValidOriginIdentifier(false, "bad..id");
69 TestValidOriginIdentifier(false, "bad/id");
70 TestValidOriginIdentifier(false, "bad\\id");
71 TestValidOriginIdentifier(false, std::string("bad\0id", 6));
  /external/chromium_org/webkit/renderer/compositor_bindings/
web_scrollbar_layer_impl.cc 54 int id = layer ? static_cast<WebLayerImpl*>(layer)->layer()->id() : 0; local
55 static_cast<PaintedScrollbarLayer*>(layer_->layer())->SetScrollLayerId(id);
  /external/clang/test/Analysis/inlining/
InlineObjCInstanceMethod.h 10 } *id; typedef in typeref:struct:objc_object
11 @protocol NSObject - (BOOL)isEqual:(id)object; @end
13 +(id)alloc;
14 +(id)new;
15 -(id)init;
16 -(id)autorelease;
17 -(id)copy;
19 -(id)retain;
  /external/clang/test/SemaCXX/
generic-selection.cpp 6 id = _Generic(T(), // expected-error {{controlling expression type 'char' not compatible with any generic association type}} enumerator in enum:A::__anon17075
13 static_assert(A<int>::id == 1, "fail");
14 static_assert(A<float>::id == 2, "fail");
15 static_assert(A<double, double>::id == 3, "fail");
23 id = _Generic(T(), enumerator in enum:B::__anon17076
  /external/eigen/doc/special_examples/
Tutorial_sparse_example_details.cpp 8 void insertCoefficient(int id, int i, int j, double w, std::vector<T>& coeffs,
14 if(i==-1 || i==n) b(id) -= w * boundary(j); // constrained coeffcieint
15 else if(j==-1 || j==n) b(id) -= w * boundary(i); // constrained coeffcieint
16 else coeffs.push_back(T(id,id1,w)); // unknown coefficient
27 int id = i+j*n; local
28 insertCoefficient(id, i-1,j, -1, coefficients, b, boundary);
29 insertCoefficient(id, i+1,j, -1, coefficients, b, boundary);
30 insertCoefficient(id, i,j-1, -1, coefficients, b, boundary);
31 insertCoefficient(id, i,j+1, -1, coefficients, b, boundary);
32 insertCoefficient(id, i,j, 4, coefficients, b, boundary)
    [all...]
  /external/iproute2/ip/
ip_common.h 59 const char *id; member in struct:link_util
  /external/jmonkeyengine/engine/src/networking/com/jme3/network/message/
ChannelInfoMessage.java 47 private long id; field in class:ChannelInfoMessage
54 public ChannelInfoMessage( long id, List<Integer> ports ) {
56 this.id = id;
64 return id;
72 return "ChannelInfoMessage[" + id + ", " + Arrays.asList(ports) + "]";
  /external/libmtp/examples/
delfile.c 45 uint32_t id = parse_path (path,files,folders); local
47 if (id > 0) {
48 printf("Deleting %s which has item_id:%d\n",path,id);
50 ret = LIBMTP_Delete_Object(device, id);
83 uint32_t id; local
88 // Sanity check song ID
89 id = strtoul(argv[i], &endptr, 10);
92 id = 0;
96 id = parse_path (argv[i],files,folders);
98 id = 0
    [all...]
getplaylist.c 53 uint32_t id; local
58 // We need file ID
60 fprintf(stderr, "Just a playlist ID is required\n");
64 // Sanity check playlist ID
65 id = strtoul(argv[1], &endptr, 10);
69 } else if ( ! id ) {
70 fprintf(stderr, "bad playlist id %u\n", id);
81 playlist = LIBMTP_Get_Playlist(device,id);
  /external/llvm/utils/lit/lit/
LitTestCase.py 17 def id(self): member in class:LitTestCase
  /external/proguard/src/proguard/evaluation/value/
IdentifiedDoubleValue.java 24 * This DoubleValue represents a double value that is identified by a unique ID.
31 private final int id; field in class:IdentifiedDoubleValue
35 * Creates a new double value with the given ID.
37 public IdentifiedDoubleValue(ValueFactory valuefactory, int id)
40 this.id = id;
51 this.id == ((IdentifiedDoubleValue)object).id;
59 id;
65 return "d"+id;
    [all...]
IdentifiedFloatValue.java 24 * This FloatValue represents a float value that is identified by a unique ID.
31 private final int id; field in class:IdentifiedFloatValue
35 * Creates a new float value with the given ID.
37 public IdentifiedFloatValue(ValueFactory valuefactory, int id)
40 this.id = id;
51 this.id == ((IdentifiedFloatValue)object).id;
59 id;
65 return "f"+id;
    [all...]
IdentifiedIntegerValue.java 24 * This IntegerValue represents a integer value that is identified by a unique ID.
31 private final int id; field in class:IdentifiedIntegerValue
35 * Creates a new integer value with the given ID.
37 public IdentifiedIntegerValue(ValueFactory valuefactory, int id)
40 this.id = id;
51 this.id == ((IdentifiedIntegerValue)object).id;
59 id;
65 return "i"+id;
    [all...]
IdentifiedLongValue.java 24 * This LongValue represents a long value that is identified by a unique ID.
31 private final int id; field in class:IdentifiedLongValue
35 * Creates a new long value with the given ID.
37 public IdentifiedLongValue(ValueFactory valuefactory, int id)
40 this.id = id;
51 this.id == ((IdentifiedLongValue)object).id;
59 id;
65 return "l"+id;
    [all...]
  /external/protobuf/examples/
add_person.cc 11 cout << "Enter person ID number: ";
12 int id; local
13 cin >> id; local
14 person->set_id(id);
  /external/qemu/distrib/sdl-1.2.15/src/thread/win32/
SDL_sysmutex.c 33 HANDLE id; member in struct:SDL_mutex
45 mutex->id = CreateMutex(NULL, FALSE, NULL);
46 if ( ! mutex->id ) {
61 if ( mutex->id ) {
62 CloseHandle(mutex->id);
63 mutex->id = 0;
76 if ( WaitForSingleObject(mutex->id, INFINITE) == WAIT_FAILED ) {
90 if ( ReleaseMutex(mutex->id) == FALSE ) {
  /external/robolectric/src/main/java/com/xtremelabs/robolectric/shadows/
SerializedFragmentState.java 9 public final int id; field in class:SerializedFragmentState
15 id = fragment.getId();
  /external/skia/src/gpu/
GrStencilBuffer.cpp 42 GrCacheID id; local
43 gen_cache_id(width, height, sampleCnt, &id);
46 return GrResourceKey(id, gStencilBufferResourceType, 0);
  /external/skia/src/image/
SkImage.cpp 25 uint32_t id; local
27 id = sk_atomic_inc(&gUniqueID) + 1;
28 } while (0 == id);
29 return id;
  /external/smack/src/org/jivesoftware/smackx/pubsub/
RetractItem.java 26 private String id; field in class:RetractItem
29 * Construct a <tt>RetractItem</tt> with the specified id.
31 * @param itemId The id if the item deleted
37 id = itemId;
42 return id;
57 return "<retract id='" + id + "'/>";
  /external/stlport/stlport/stl/
_num_put.h 104 static locale::id id; member in class:num_put

Completed in 92 milliseconds

1 2 3 4 5 6 7 891011>>